/* ========================================================================
   Clear Water Car Wash — Variant 03 / Open Now Utility
   Dashboard-app energy. Transit-map clarity. Function first.
   ======================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy:        #0E2A4F;
  --navy-2:      #163864;
  --navy-3:      #1f4a82;
  --yellow:      #F4C430;
  --yellow-dim:  #d6a91d;
  --bg:          #FAFAFA;
  --ink:         #0E2A4F;
  --ink-dim:     #4d5f7a;
  --line:        #d8dde6;
  --line-2:      #e6eaf1;
  --card:        #ffffff;
  --green:       #1FA84C;
  --green-soft:  #d9f1e2;
  --red:         #C8472E;
  --red-soft:    #f5dcd5;

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   22px;

  --shadow-sm:   0 1px 0 rgba(14,42,79,.06), 0 1px 2px rgba(14,42,79,.06);
  --shadow:      0 4px 16px -8px rgba(14,42,79,.18), 0 1px 0 rgba(14,42,79,.05);
  --shadow-lg:   0 24px 64px -28px rgba(14,42,79,.30);

  --sans:        'Geist', 'Inter Display', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw:        1180px;
  --pad:         clamp(16px, 4vw, 32px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
table { border-collapse: collapse; width: 100%; }

/* Background grid (very subtle dashboard texture) */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(14,42,79,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,42,79,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Type utilities ---------- */
.mono { font-family: var(--mono); font-feature-settings: 'tnum' 1, 'zero' 1; }
.dim  { color: var(--ink-dim); }
.num  { font-variant-numeric: tabular-nums; }

/* Keyboard / system-label tag */
.kbd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  box-shadow: var(--shadow-sm);
}
.kbd::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 2px rgba(244,196,48,.25);
}

/* ---------- Buttons / CTAs ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.cta:hover { transform: translateY(-1px); }
.cta:active { transform: translateY(0); }

.cta--yellow {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  box-shadow: 0 1px 0 var(--yellow-dim), 0 6px 20px -8px rgba(244,196,48,.5);
}
.cta--yellow:hover { background: #ffce3a; }

.cta--navy {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
  box-shadow: 0 6px 20px -10px rgba(14,42,79,.5);
}
.cta--navy:hover { background: var(--navy-2); }

.cta--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.cta--ghost:hover { background: #fff; border-color: var(--navy); }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px var(--pad);
  background: rgba(250,250,250,.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
}
.brand__mark {
  display: inline-flex;
  transform: translateY(4px);
}
.brand__name {
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand__tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-dim);
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav__links {
  display: none;
  justify-self: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.nav__links a { position: relative; padding: 6px 2px; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

@media (min-width: 760px) {
  .nav__links { display: inline-flex; }
}

/* ===================================================================
   THE PILL — the visual signature
   =================================================================== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fff;
  color: var(--ink-dim);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-dim);
  position: relative;
  flex-shrink: 0;
}
.pill__state { font-weight: 700; }
.pill__sep { opacity: .45; padding: 0 2px; }
.pill__where { font-weight: 600; }
.pill__detail { font-weight: 500; opacity: .85; }

/* Open state */
.pill.is-open {
  background: var(--green-soft);
  color: #0c5a26;
  border-color: rgba(31,168,76,.4);
}
.pill.is-open .pill__dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,168,76,.18);
}
.pill.is-open .pill__dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: .6;
  animation: pulse 2.4s ease-out infinite;
}

/* Closed state */
.pill.is-closed {
  background: var(--red-soft);
  color: #7a2614;
  border-color: rgba(200,71,46,.45);
}
.pill.is-closed .pill__dot {
  background: var(--red);
}

/* XL pill in the hero */
.pill--xl {
  font-size: 15px;
  padding: 12px 22px 12px 20px;
  gap: 12px;
  border-width: 2px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  justify-content: center;
}
.pill--xl .pill__dot { width: 14px; height: 14px; }
.pill--xl .pill__state { font-size: 16px; }

@keyframes pulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(2.4); opacity: 0;  }
  100% { transform: scale(2.4); opacity: 0;  }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 9vw, 96px) var(--pad) clamp(48px, 8vw, 80px);
  color: #fff;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(.9) contrast(1.02);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,42,79,.55) 0%, rgba(14,42,79,.78) 55%, rgba(14,42,79,.92) 100%),
    radial-gradient(120% 80% at 50% 20%, rgba(14,42,79,.0) 0%, rgba(14,42,79,.6) 100%);
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__meta .kbd {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.hero__meta .kbd::before { background: var(--green); box-shadow: 0 0 0 2px rgba(31,168,76,.3); }
.hero__meta .dim { color: rgba(255,255,255,.7); }

.hero__title {
  font-size: clamp(34px, 6.4vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 4px 0 0;
  max-width: 22ch;
  text-wrap: balance;
}

.hero__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: baseline;
  margin-top: 2px;
}
.price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 14px 6px 0;
}
.price + .price { border-left: 1px solid rgba(255,255,255,.22); padding-left: 28px; }
.price__num {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price__lbl {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.92);
  margin: 0;
  max-width: 50ch;
}
.hero__sub .dim { color: rgba(255,255,255,.6); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__ctas .cta--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
}
.hero__ctas .cta--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

.hero__refresh {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.5);
  margin: 6px 0 0;
}
.hero__refresh time { color: rgba(255,255,255,.75); }

/* ===================================================================
   SECTION HEAD (shared)
   =================================================================== */
.sec__head {
  max-width: var(--maxw);
  margin: 0 auto clamp(24px, 4vw, 40px);
  padding-inline: var(--pad);
}
.sec__head .kbd { margin-bottom: 14px; }
.sec__title {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
  color: var(--navy);
}
.sec__lede {
  max-width: 56ch;
  margin: 12px 0 0;
  color: var(--ink-dim);
  font-size: 16px;
}

/* ===================================================================
   RIGHT NOW BOARD
   =================================================================== */
.board {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: clamp(-40px, -5vw, -56px) auto 0;
  padding: clamp(20px, 3vw, 28px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-inline: var(--pad);
}
@media (min-width: 1220px) {
  .board { margin-inline: auto; }
}

.board__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
}
.board__head .kbd { margin-bottom: 8px; }
.board__title {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.board__clock {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}
.board__clock #boardDate {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}
.board__time {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.board__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.board__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-2);
}
.board__row:last-child { border-bottom: 0; }
.board__row-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.board__loc {
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
}
.board__addr { font-size: 12.5px; }
.board__dir {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
  padding: 4px 0;
  border-bottom: 1.5px solid var(--yellow);
  width: fit-content;
}
.board__dir:hover { color: var(--navy-2); border-color: var(--navy); }

@media (min-width: 640px) {
  .board__row {
    grid-template-columns: 1.4fr auto auto;
    align-items: center;
    gap: 18px;
  }
  .board__dir { align-self: center; }
}

.board__foot {
  font-size: 11.5px;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  letter-spacing: 0.03em;
}

/* ===================================================================
   LOCATIONS GRID
   =================================================================== */
.locs {
  padding: clamp(64px, 9vw, 110px) 0 clamp(48px, 7vw, 80px);
  position: relative;
  z-index: 1;
}
.loc-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-inline: var(--pad);
}
@media (min-width: 760px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .loc-grid { grid-template-columns: repeat(4, 1fr); }
}

.loc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.loc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(14,42,79,.25);
}

.loc-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
}
.loc-card__index {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow-dim);
  background: var(--navy);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.loc-card__name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.loc-card__addr {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.45;
}

.loc-card__facts {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  font-size: 12.5px;
}
.loc-card__facts > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  align-items: baseline;
}
.loc-card__facts dt {
  color: var(--ink-dim);
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.1em;
}
.loc-card__facts dd {
  margin: 0;
  color: var(--navy);
  font-weight: 500;
}
.loc-card__facts dd a:hover { color: var(--navy-2); text-decoration: underline; }

.loc-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.loc-card__actions .cta { padding: 9px 14px; font-size: 13px; flex: 1; min-width: 0; }

/* ===================================================================
   PRICING
   =================================================================== */
.pricing {
  padding: clamp(48px, 7vw, 90px) 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.pricing .sec__title { color: #fff; }
.pricing .sec__lede  { color: rgba(255,255,255,.7); }
.pricing .kbd {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.pricing .kbd::before { background: var(--yellow); box-shadow: 0 0 0 2px rgba(244,196,48,.25); }

.table-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
  position: relative;
}

.rate-table {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rate-table th, .rate-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
  vertical-align: middle;
  font-size: 15px;
}
.rate-table thead th {
  background: rgba(255,255,255,.05);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  padding-top: 14px;
  padding-bottom: 14px;
}
.rate-table tbody tr:last-child th,
.rate-table tbody tr:last-child td { border-bottom: 0; }

.rate-table tbody th {
  font-weight: 600;
  font-family: var(--sans);
  color: #fff;
}
.rate-table .num {
  font-weight: 700;
  font-size: 20px;
  color: var(--yellow);
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.rate-table__best { background: rgba(244,196,48,.07); }
.rate-table__best th { color: var(--yellow); }
.tag {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 700;
  vertical-align: middle;
}

.pricing__note {
  max-width: var(--maxw);
  margin: 18px auto 0;
  padding-inline: var(--pad);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.55) !important;
}

/* ===================================================================
   HOW IT WORKS
   =================================================================== */
.how { padding: clamp(64px, 9vw, 110px) 0; position: relative; z-index: 1; }

.steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: step;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 70px;
    left: calc(var(--pad) + 50px);
    right: calc(var(--pad) + 50px);
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--navy) 0 6px,
      transparent 6px 12px
    );
    opacity: .25;
    z-index: 0;
  }
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  color: var(--navy);
  z-index: 1;
}
@media (min-width: 1024px) {
  .steps .step + .step { border-left: 0; border-radius: 0; }
  .steps .step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); border-right: 0; }
  .steps .step:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
  .steps .step:not(:first-child):not(:last-child) { border-right: 0; }
}

.step__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow-dim);
  letter-spacing: 0.1em;
}
.step__ico {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 10px;
}
.step__ico svg { width: 26px; height: 26px; }
.step__name {
  font-size: 18px;
  font-weight: 700;
  margin: 4px 0 0;
  letter-spacing: -0.01em;
}
.step__desc {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ===================================================================
   STORY
   =================================================================== */
.story {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 8vw, 96px) var(--pad);
}
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 880px) {
  .story { grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
}

.story__col--text .kbd { margin-bottom: 14px; }
.story__title {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--navy);
}
.story__lede {
  margin: 14px 0 0;
  color: var(--ink-dim);
  font-size: 16px;
  max-width: 56ch;
}
.quote {
  margin: 24px 0 0;
  padding: 20px 22px;
  background: var(--bg);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote blockquote {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  font-style: italic;
}
.quote figcaption { margin-top: 10px; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; }

.proof {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--bg);
}
.proof img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.proof figcaption {
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--card);
  border-top: 1px solid var(--line);
}

/* ===================================================================
   FINAL CTA
   =================================================================== */
.final {
  background: var(--navy);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) var(--pad);
  position: relative;
  overflow: hidden;
}
.final::after {
  content: '';
  position: absolute;
  right: -120px; bottom: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,.18) 0%, transparent 60%);
  pointer-events: none;
}
.final__head {
  max-width: var(--maxw);
  margin: 0 auto clamp(28px, 4vw, 40px);
}
.final__head .kbd {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.2);
  margin-bottom: 14px;
}
.final__head .kbd::before { background: var(--green); box-shadow: 0 0 0 2px rgba(31,168,76,.3); }
.final__title {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
  max-width: 24ch;
  line-height: 1.05;
}

.final__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) { .final__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .final__grid { grid-template-columns: repeat(4, 1fr); } }

.final__btn {
  display: grid;
  gap: 8px;
  padding: 28px 26px;
  background: var(--navy-2);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  color: var(--yellow);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.final__btn:hover {
  background: var(--navy-3);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.final__btn-loc {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.6);
  font-weight: 700;
}
.final__btn-addr {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.final__btn-go {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--yellow);
  font-weight: 700;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,.18);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.foot {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: clamp(40px, 6vw, 72px) var(--pad) 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.foot__brand {
  max-width: var(--maxw);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot__brand .brand__mark { transform: none; }
.foot__name {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.01em;
}
.foot__brand .dim { color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: 0.04em; }

.foot__cols {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
@media (min-width: 760px) { .foot__cols { grid-template-columns: repeat(4, 1fr); } }

.foot__h {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.foot__col p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
}
.foot__col a:hover { color: var(--yellow); }

.foot__legal {
  max-width: var(--maxw);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.4);
}

/* ===================================================================
   Focus + a11y
   =================================================================== */
a:focus-visible,
button:focus-visible,
.cta:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 999px;
}
.loc-card:focus-within { border-color: var(--navy); }

/* "24/7" badges next to a location name */
.board__badge,
.loc-card__badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--green, #1FA84C);
  color: #FAFAFA;
  border-radius: 4px;
  vertical-align: middle;
}

/* Featured MV button on the final CTA */
.final__btn--featured {
  outline: 2px solid var(--yellow, #F4C430);
  outline-offset: -2px;
}
.final__btn-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 6px;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: var(--green, #1FA84C);
  color: #FAFAFA;
  border-radius: 3px;
  vertical-align: middle;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .pill.is-open .pill__dot::after { display: none; }
}
