/* ==========================================================================
   Armada Moving Company — shared design system + homepage styles
   Mobile-first. Breakpoints: min-width 768px / 1024px / 1440px.
   Subpages (about.html, reviews.html) must reuse:
   .container, .section, .section--linen, .band--navy, .eyebrow, .section-head,
   .btn family, .card, .icon-tile, .stats, .numbered-list, .t-card / .t-grid,
   .pill-row, .cta-band, .page-hero, .site-header, .site-footer, .reveal
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Color */
  --navy-950: #071F33;
  --navy-900: #0B304F;
  --navy-800: #11436C;
  --navy-700: #0C4F83;
  --steel-300: #9FB6CC;
  --brass-400: #C9A227;
  --brass-700: #8A6B1D;
  --red-error: #B3261E;
  --ink-text: #2E3D49;
  --muted-text: #5B6B78;
  --paper: #FBFAF7;
  --linen: #F4F1EA;
  --white: #FFFFFF;
  --hairline: #E3DDD0;
  --hairline-dark: rgba(255, 255, 255, 0.16);
  --text-on-dark-muted: rgba(255, 255, 255, 0.78);

  /* Type */
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Archivo", -apple-system, "Segoe UI", Arial, sans-serif;
  --fs-display: clamp(2.25rem, 1.67rem + 2.6vw, 4rem);
  --fs-h2: clamp(1.75rem, 1.5rem + 1.11vw, 2.5rem);
  --fs-h3: clamp(1.375rem, 1.25rem + 0.56vw, 1.75rem);
  --fs-h4: clamp(1.125rem, 1.08rem + 0.19vw, 1.25rem);
  --fs-body-lg: clamp(1.0625rem, 1.02rem + 0.19vw, 1.1875rem);
  --fs-body: clamp(1rem, 0.98rem + 0.09vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8125rem;
  --fs-stat: clamp(2.5rem, 2.08rem + 1.85vw, 3.75rem);

  /* Spacing (4px base) */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;     --s-7: 3rem;     --s-8: 4rem;
  --s-9: 6rem;     --s-10: 8rem;

  /* Layout */
  --container: 1160px;
  --container-narrow: 760px;
  --section-pad: clamp(4rem, 2.8rem + 4.5vw, 7rem);
}

/* ---------- 2. Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote, fieldset {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-text);
  background-color: var(--paper);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy-900);
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3, h4 {
  line-height: 1.25;
}

a { color: var(--navy-700); }

svg { flex-shrink: 0; }

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

/* Brass focus ring on dark surfaces */
.site-header :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible,
.band--navy :focus-visible,
.cta-band :focus-visible {
  outline-color: var(--brass-400);
}

.nowrap { white-space: nowrap; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  padding: 12px;
  background: var(--navy-700);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

/* ---------- 3. Layout primitives ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-pad); }

.section--paper { background: var(--paper); }
.section--linen { background: var(--linen); }

.band--navy {
  background: var(--navy-900);
  color: var(--white);
}

.band--navy h2 { color: var(--white); }
.band--navy p { color: var(--text-on-dark-muted); }

.section p,
.hero p { max-width: 65ch; }

/* ---------- 4. Eyebrow + section header pattern ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-700);
  margin-bottom: var(--s-3);
}

.eyebrow--dark { color: var(--brass-400); }

.section-head { margin-bottom: var(--s-7); }

.section-head h2 {
  max-width: 22ch;
  margin-bottom: var(--s-4);
}

.section-head__intro {
  font-size: var(--fs-body-lg);
  color: var(--muted-text);
}

.section-head--center {
  text-align: center;
}

.section-head--center h2 { max-width: 30ch; }

.section-head--center h2,
.section-head--center .section-head__intro {
  margin-inline: auto;
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease,
              color 160ms ease, box-shadow 160ms ease;
}

.btn--small { padding: 12px 22px; }

.btn--block { width: 100%; }

.btn--primary {
  background: var(--navy-800);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-950);
  box-shadow: 0 4px 14px rgba(7, 31, 51, 0.25);
}

.btn--primary:active { box-shadow: none; }

.btn--primary-dark {
  background: var(--brass-400);
  color: var(--navy-950);
}

.btn--primary-dark:hover { background: #D9B23A; }

.btn--secondary {
  background: transparent;
  border-color: #B8C4CE;
  color: var(--navy-700);
}

.btn--secondary:hover {
  border-color: var(--navy-700);
  background: rgba(12, 79, 131, 0.06);
}

.btn--secondary-dark {
  background: transparent;
  border-color: var(--hairline-dark);
  color: var(--white);
}

.btn--secondary-dark:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.btn--tel { font-variant-numeric: tabular-nums; }

.text-link {
  font-weight: 500;
  color: var(--navy-700);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.text-link:hover { color: var(--navy-800); }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid var(--hairline-dark);
  transition: box-shadow 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(7, 31, 51, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 60px;
}

/* Brand lockup — official horizontal logo (white version for dark header) */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__img {
  display: block;
  height: 30px;
  width: auto;
}

@media (min-width: 768px) {
  .brand__img { height: 34px; }
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile slide-down panel */
.site-nav__panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy-950);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 240ms ease-out, visibility 0s linear 240ms;
}

.site-nav__panel.is-open {
  max-height: 480px;
  visibility: visible;
  border-bottom: 1px solid var(--hairline-dark);
  transition: max-height 240ms ease-out;
}

.site-nav__list {
  list-style: none;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.site-nav__list li + li { border-top: 1px solid var(--hairline-dark); }

.site-nav__list a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: transparent;
  text-underline-offset: 8px;
  transition: text-decoration-color 160ms ease, color 160ms ease;
}

.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  color: var(--white);
  text-decoration-color: var(--brass-400);
}

.btn--tel-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 2px;
  background: var(--brass-400);
  color: var(--navy-950);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  transition: background-color 160ms ease;
}

.btn--tel-header:hover { background: #D9B23A; }

/* In the mobile panel the tel button is full-width */
.site-nav__panel .btn--tel-header {
  margin: 16px clamp(1.25rem, 4vw, 3rem) 20px;
  width: calc(100% - 2 * clamp(1.25rem, 4vw, 3rem));
}

.btn--tel-header__number { display: none; }
.btn--tel-header__short { display: inline; }

@media (min-width: 480px) {
  .btn--tel-header__number { display: inline; }
  .btn--tel-header__short { display: none; }
}

@media (min-width: 768px) {
  .site-header__inner { min-height: 72px; }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .site-nav__panel {
    position: static;
    display: flex;
    align-items: center;
    max-height: none;
    overflow: visible;
    visibility: visible;
    background: transparent;
    transition: none;
  }

  .site-nav__panel.is-open { border-bottom: 0; }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0;
  }

  .site-nav__list li + li { border-top: 0; }

  .site-nav__list a {
    padding: 6px 0;
    font-size: 0.9375rem;
  }

  .site-nav__panel .btn--tel-header {
    margin: 0 0 0 28px;
    width: auto;
  }
}

/* ---------- 7. Hero (real branded-truck photo, left-aligned copy) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  padding-top: clamp(5rem, 4rem + 5vw, 8rem);
  padding-bottom: clamp(4.5rem, 3.5rem + 4.5vw, 7.5rem);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 42%;
}

/* Navy scrim: dense over the copy, lifting toward the truck on the right */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg,
    rgba(7, 31, 51, 0.94) 0%,
    rgba(7, 31, 51, 0.85) 36%,
    rgba(7, 31, 51, 0.52) 68%,
    rgba(7, 31, 51, 0.34) 100%);
}

@media (max-width: 767px) {
  .hero__scrim { background: rgba(7, 31, 51, 0.87); }
}

.hero__inner {
  position: relative;
  max-width: 40rem;
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 18ch;
  margin-bottom: var(--s-4);
}

.hero__lede {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-6);
}

.hero__trustline {
  display: inline-block;
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline-dark);
  font-size: var(--fs-small);
  color: var(--steel-300);
}

/* Kept for the hero-options gallery (variants/) */
.hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__texture svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- 8. Trust bar ---------- */
.trust-bar {
  background: var(--linen);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding-block: 40px;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  list-style: none;
  padding: 0;
}

.trust-item { text-align: center; }

.trust-item__icon {
  width: 36px;
  height: 36px;
  color: var(--navy-700);
}

.trust-item__title {
  margin-top: var(--s-3);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-900);
}

.trust-item__sub {
  margin-top: var(--s-1);
  font-size: var(--fs-small);
  color: var(--muted-text);
}

.stars { color: var(--brass-400); }

@media (min-width: 768px) {
  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .trust-item {
    padding-inline: var(--s-5);
    border-left: 1px solid var(--hairline);
  }

  .trust-item:first-child {
    border-left: 0;
    padding-left: 0;
  }
}

/* ---------- 9. Cards (services + generic) ---------- */
.card-grid {
  display: grid;
  gap: var(--s-5);
}

.card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: var(--s-5);
}

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: var(--linen);
  color: var(--navy-700);
}

.card h3 {
  font-size: var(--fs-h4);
  color: var(--navy-900);
  margin-top: 20px;
}

.card h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--brass-400);
  margin-top: 8px;
}

.card p {
  margin-top: var(--s-3);
  color: var(--ink-text);
}

/* Cards that are links (service cards) */
.card--link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.card__more {
  margin-top: auto;
  padding-top: var(--s-4);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-700);
}

.card__more .arrow {
  display: inline-block;
  transition: transform 160ms ease;
}

@media (hover: hover) {
  .card--link {
    transition: transform 180ms ease-out, box-shadow 180ms ease-out,
                border-color 180ms ease-out;
  }

  .card--link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(11, 48, 79, 0.10);
    border-color: #CFC7B6;
  }

  .card--link:hover .card__more .arrow { transform: translateX(3px); }
}

@media (min-width: 768px) {
  .card { padding: var(--s-6); }

  .card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
  }
}

@media (min-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 10. Why choose Armada (numbered hairline list) ---------- */
.why__grid {
  display: grid;
  gap: var(--s-7);
}

.why__intro h2 {
  max-width: 22ch;
  margin-bottom: var(--s-4);
}

.why__intro p { margin-bottom: var(--s-5); }

.numbered-list {
  list-style: none;
  padding: 0;
}

.numbered-list__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--s-5);
  padding-block: var(--s-5);
}

.numbered-list__item + .numbered-list__item {
  border-top: 1px solid var(--hairline);
}

.numbered-list__num {
  font-family: var(--font-sans);
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--brass-700);
  font-variant-numeric: lining-nums tabular-nums;
}

.numbered-list__item h3 {
  font-size: 1.25rem;
  color: var(--navy-900);
}

.numbered-list__item p {
  margin-top: var(--s-1);
  color: var(--ink-text);
}

@media (min-width: 1024px) {
  .why__grid {
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
  }

  .numbered-list__item:first-child { padding-top: var(--s-2); }
}

/* ---------- 11. CSU story band ---------- */
.csu__grid {
  display: grid;
  gap: var(--s-7);
}

.csu__copy h2 {
  max-width: 22ch;
  margin-bottom: var(--s-4);
}

.csu__copy p + p { margin-top: var(--s-4); }

/* ---------- 12. Stats ---------- */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  margin-block: var(--s-6);
}

.stat {
  display: flex;
  flex-direction: column-reverse;
  /* column-reverse packs from the bottom; flex-end pins content to the top
     so all stat values share one baseline regardless of label length */
  justify-content: flex-end;
}

.stat__value {
  font-family: var(--font-serif);
  font-size: var(--fs-stat);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums tabular-nums;
}

.stats--dark .stat__value { color: var(--brass-400); }
.stats--light .stat__value { color: var(--navy-900); }

.stat__label {
  margin-top: var(--s-2);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats--dark .stat__label { color: var(--text-on-dark-muted); }
.stats--light .stat__label { color: var(--muted-text); }

@media (min-width: 768px) {
  .stats { gap: 0; }

  .stat { padding-inline: 40px; }

  .stat:first-child { padding-left: 0; }
  .stat:last-child { padding-right: 0; }

  .stats--dark .stat + .stat { border-left: 1px solid var(--hairline-dark); }
  .stats--light .stat + .stat { border-left: 1px solid var(--hairline); }
}

/* ---------- 13. CSU benefits card ---------- */
.benefits-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: var(--s-6);
  color: var(--ink-text);
}

.benefits-card__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.benefits-card__caption {
  margin-top: var(--s-3);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-text);
}

.benefits-card h3 {
  font-size: 1.25rem;
  color: var(--navy-900);
  margin-top: var(--s-4);
}

.benefits-card__list {
  list-style: none;
  padding: 0;
  margin-top: var(--s-3);
}

.benefits-card__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--s-3);
  align-items: center;
  padding-block: 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-text);
}

.benefits-card__list li + li { border-top: 1px solid var(--hairline); }

.benefits-card__list svg { color: var(--navy-700); }

/* CSU band uses a slightly smaller stat scale so three stats share one row */
.csu .stat__value { font-size: clamp(2rem, 1.7rem + 1.4vw, 2.75rem); }

.csu .stat__label { max-width: 14ch; }

@media (min-width: 768px) {
  .csu__card-wrap { max-width: 480px; }

  .csu .stat { padding-inline: 24px; }
  .csu .stat:first-child { padding-left: 0; }
  .csu .stat:last-child { padding-right: 0; }
}

@media (min-width: 1024px) {
  .csu__grid {
    grid-template-columns: 7fr 5fr;
    gap: var(--s-8);
    align-items: center;
  }

  .csu__card-wrap {
    max-width: none;
    justify-self: stretch;
  }
}

/* ---------- 14. Three-step process ---------- */
.process__steps {
  position: relative;
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--s-7);
}

/* Mobile: vertical dashed route connector down the left */
.process__steps::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 8px;
  bottom: 8px;
  width: 0;
  border-left: 2px dashed var(--hairline);
}

.process__step {
  position: relative;
  padding-left: 88px;
}

.process__num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--navy-700);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy-900);
  font-variant-numeric: lining-nums tabular-nums;
}

/* Destination node = arrival */
.process__step:last-child .process__num {
  border-color: var(--brass-400);
  color: var(--brass-700);
}

.process__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-text);
}

.process__step h3 {
  font-size: var(--fs-h4);
  color: var(--navy-900);
  margin-top: var(--s-2);
}

.process__step p:last-child {
  margin-top: var(--s-3);
  color: var(--ink-text);
}

@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
  }

  /* Horizontal connector: a segment from each previous numeral to the next */
  .process__steps::before { display: none; }

  .process__step + .process__step::before {
    content: "";
    position: absolute;
    top: 31px;
    height: 0;
    left: calc(-1 * (100% + var(--s-6)) + 64px);
    width: calc(100% + var(--s-6) - 64px);
    border-top: 2px dashed var(--hairline);
  }

  .process__step { padding-left: 0; }

  .process__num {
    position: relative;
    margin-bottom: var(--s-5);
  }
}

/* ---------- 15. Testimonials ---------- */
.t-grid {
  display: grid;
  gap: var(--s-5);
}

.t-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: var(--s-5);
}

.t-card__stars { line-height: 1; }

.t-card__headline {
  font-size: 1.1875rem;
  color: var(--navy-900);
  margin-top: var(--s-3);
}

.t-card__quote {
  margin-top: var(--s-3);
  margin-bottom: var(--s-5);
}

.t-card__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-text);
}

.t-card__source {
  margin-top: auto;
  padding-top: var(--s-4);
}

.t-card__source::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--hairline);
  margin-bottom: var(--s-4);
}

.t-card__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-900);
}

.t-card__role {
  display: block;
  font-size: var(--fs-small);
  color: var(--muted-text);
}

.testimonials__more {
  text-align: center;
  margin-top: var(--s-7);
}

@media (min-width: 768px) {
  .t-card { padding: var(--s-6); }

  .t-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
  }

  /* Homepage: third card spans the full second row */
  .t-card--wide { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .t-grid { grid-template-columns: repeat(3, 1fr); }

  .t-card--wide { grid-column: auto; }
}

/* ---------- 16. Quote section + form ---------- */
.quote { border-top: 1px solid var(--hairline); }

.quote__grid {
  display: grid;
  gap: var(--s-7);
}

.quote__copy h2 {
  max-width: 22ch;
  margin-bottom: var(--s-4);
}

.quote__next-label {
  margin-top: var(--s-6);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-text);
}

.quote__next-list {
  list-style: none;
  padding: 0;
  margin-top: var(--s-4);
  display: grid;
  gap: var(--s-4);
}

.quote__next-list li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.9375rem;
  color: var(--ink-text);
}

.quote__next-num {
  display: inline-flex;
  flex-shrink: 0; /* circles must never compress when the line wraps */
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--navy-700);
  border-radius: 50%;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-700);
  font-variant-numeric: lining-nums tabular-nums;
}

/* Call card — phone-first conversion (no online forms by design) */
.call-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-top: 2px solid var(--brass-400);
  border-radius: 2px;
  padding: var(--s-6);
}

.call-card__kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: var(--s-3);
}

.call-card__number {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.625rem, 1.35rem + 1.3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  text-decoration: none;
  font-variant-numeric: lining-nums tabular-nums;
}

.call-card__number svg { color: var(--brass-700); }

.call-card__number:hover { color: var(--navy-700); }

.call-card__note {
  margin-top: var(--s-2);
  font-size: var(--fs-small);
  color: var(--muted-text);
}

.call-card__rows {
  list-style: none;
  padding: 0;
  margin-top: var(--s-5);
  border-top: 1px solid var(--hairline);
}

.call-card__rows li {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: 12px;
  font-size: 0.9375rem;
  color: var(--ink-text);
}

.call-card__rows li + li { border-top: 1px solid var(--hairline); }

.call-card__rows .k {
  font-weight: 600;
  color: var(--navy-900);
}

.call-card__address {
  margin-top: var(--s-4);
  font-size: 0.9375rem;
  color: var(--ink-text);
}

.call-card__cred {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
  font-size: var(--fs-small);
  color: var(--muted-text);
}

@media (min-width: 1024px) {
  .quote__grid {
    grid-template-columns: 7fr 5fr;
    gap: var(--s-8);
    align-items: start;
  }
}

/* ---------- 17. Service area ---------- */
.area__grid {
  display: grid;
  gap: var(--s-7);
  align-items: center;
}

.area__copy h2 {
  max-width: 26ch;
  margin-bottom: var(--s-4);
}

.pill-row {
  list-style: none;
  padding: 0;
  margin-block: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 2px;
  background: var(--white);
  border: 1px solid var(--hairline);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-900);
}

.pill--home {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.pill__star { color: var(--brass-400); }

.area__map {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}

.area__map svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .area__grid {
    grid-template-columns: 6fr 6fr;
    gap: var(--s-7);
  }

  .area__map { margin-inline: 0 auto; }
}

@media (min-width: 1024px) {
  .area__grid { gap: var(--s-8); }
}

/* ---------- 17b. FAQ (native details/summary accordion) ---------- */
.faq__list {
  max-width: var(--container-narrow);
  margin-inline: auto;
  border-top: 1px solid var(--hairline);
}

.faq__list details { border-bottom: 1px solid var(--hairline); }

.faq__list summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--navy-900);
}

.faq__list summary::-webkit-details-marker { display: none; }

.faq__list summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  color: var(--brass-700);
  transition: transform 180ms ease;
}

.faq__list details[open] summary::after {
  content: "\2212"; /* minus sign */
}

.faq__list details > p {
  padding: 0 4px 22px;
  color: var(--ink-text);
}

/* ---------- 18. Final CTA band ---------- */
.cta-band {
  background: var(--navy-950);
  color: var(--white);
  padding-block: 88px;
  text-align: center;
}

.cta-band__inner {
  max-width: 640px;
  margin-inline: auto;
}

.cta-band h2 { color: var(--white); }

.cta-band p {
  margin-top: var(--s-4);
  color: var(--text-on-dark-muted);
  margin-inline: auto;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4);
  margin-top: var(--s-6);
}

/* ---------- 19. Page hero (subpages: about.html, reviews.html) ---------- */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding-block: 96px;
}

.page-hero h1 {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 22ch;
  margin-bottom: var(--s-4);
}

.page-hero p { color: var(--text-on-dark-muted); }

/* ---------- 20. Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--text-on-dark-muted);
  border-top: 2px solid var(--brass-400);
  padding-top: 80px;
}

.site-footer__grid {
  display: grid;
  gap: var(--s-7);
}

.site-footer__brand { max-width: 21rem; }

.site-footer__logo {
  display: block;
  width: 168px;
  height: auto;
  margin-inline: auto;
}

.site-footer__mission {
  margin-top: var(--s-4);
  font-size: 0.9375rem;
  max-width: 40ch;
}

.site-footer__address {
  font-style: normal;
  margin-top: var(--s-4);
  font-size: 0.9375rem;
}

.site-footer__address a,
.site-footer__links a {
  color: var(--text-on-dark-muted);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-footer__address a:hover,
.site-footer__links a:hover {
  color: var(--white);
  text-decoration-color: var(--brass-400);
}

.site-footer__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-4);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}

.site-footer__tel:hover { color: var(--brass-400); }

.site-footer__heading {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-300);
  margin-bottom: var(--s-4);
}

.site-footer__links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.9375rem;
}

.site-footer__hours {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: var(--fs-small);
  max-width: 220px;
}

.site-footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
}

.site-footer__credentials {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline-dark);
  font-size: var(--fs-small);
  line-height: 1.7;
  max-width: 320px;
}

.site-footer__legal {
  margin-top: 64px;
  border-top: 1px solid var(--hairline-dark);
  padding-block: 40px;
}

.site-footer__legal-inner {
  display: grid;
  gap: var(--s-2);
  justify-items: center;
  text-align: center;
  font-size: var(--fs-small);
}

@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }

  .site-footer__legal-inner {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: var(--s-6);
  }
}

/* ---------- 21. Scroll reveal & motion ---------- */
/* Hidden state only exists when JS runs (html.js); no-JS users see everything. */
html.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
  transition-delay: calc(var(--reveal-i, 0) * 60ms);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  html { scroll-behavior: auto; }
}
