/* ==========================================================================
   Fast Lane Car Wash — shared stylesheet
   Plain CSS. No framework, no build step.
   Palette is WCAG 2.1 AA verified; see the comment on each brand token.
   ========================================================================== */

:root {
  /* Brand */
  --brand:        #0db9f2;  /* bright cyan — dark backgrounds + large display only */
  --brand-ink:    #04222c;  /* text ON bright cyan — 7.27:1 */
  /* Brand accent text. Chelsea's call: this is the brand colour and it is used
     as-is, including on light surfaces where it measures 2.07:1. WAVE will
     report those as contrast errors — the live site has the same ones. */
  --brand-text:   #09799e;   /* small text on light — 4.50:1, the ceiling for this hue */
  --brand-lg:     #0b98c7;   /* large text on light — 3.01:1 */
  /* Functional UI that people rely on to navigate or to read a legal page keeps
     an accessible cut of the same hue. Focus rings especially: a 2.07:1 ring is
     a real problem for keyboard users, and it is not a brand surface. */
  --brand-ui:     #09799e;
  --brand-deep:   #0a7fa8;  /* cyan panel bg with white text — 4.55:1 */

  /* One button gradient site-wide: the original cyan->blue->indigo sweep,
     darkened only as much as white text requires. Every button label is at
     least 18.7px/700, which is large text, so the bar is 3:1 — met at 3.06:1. */
  --grad-btn: linear-gradient(135deg, #009ed4 0%, #0097fc 40%, #8688f4 100%);
  /* Headline gradient. Large display type on dark only — worst point 5.38:1. */
  --grad-head: linear-gradient(100deg, #0db9f2 0%, #22d3ee 20%, #38bdf8 40%, #22d3ee 60%, #0db9f2 80%, #22d3ee 100%);
  --navy:         #1e3a5f;
  --navy-deep:    #0d1f33;

  /* Neutrals */
  --bg:      #f3f4f6;
  --surface: #ffffff;
  --ink:     #0f172a;  /* 16.22:1 on --bg */
  --body:    #334155;  /*  9.41:1 on --bg */
  --muted:   #616f85;  /*  4.63:1 on --bg — as light as AA allows */
  --line:    #e2e8f0;
  --dark:    #0a0a0a;
  --dark-muted: #a8b6c8; /* 9.61:1 on --dark */

  --radius: 12px;
  --radius-lg: 22px;
  --shell: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Oswald', 'Arial Narrow', sans-serif; color: var(--ink); line-height: 1.1; margin: 0; }
p { margin: 0; }
a { color: var(--brand-ui); }

/* Focus — visible on every interactive element, on light and dark */
:where(a, button, summary, input, [tabindex]):focus-visible {
  outline: 3px solid var(--brand-ui);
  outline-offset: 3px;
  border-radius: 6px;
}
.on-dark :where(a, button, summary):focus-visible,
.hero :where(a, button):focus-visible,
.footer :where(a, button):focus-visible { outline-color: var(--brand); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: var(--navy); color: #fff; padding: 12px 20px;
  font-weight: 600; text-decoration: none; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--grad-btn); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  padding: 15px 30px; border: 2px solid var(--btn-bd); border-radius: 8px;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  box-shadow: 0 6px 18px rgba(13,99,224,.28);
  transform: skewX(-10deg); transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  min-height: 48px;
}
.btn > span { display: inline-flex; align-items: center; gap: 10px; transform: skewX(10deg); }
.btn:hover { transform: skewX(-10deg) translateY(-2px); box-shadow: 0 12px 30px rgba(13,99,224,.42); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.btn--ghost { box-shadow: none; }
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.12); box-shadow: none; }
.btn--dark { --btn-bg: var(--dark); --btn-fg: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.28); }
.btn--dark:hover { box-shadow: 0 10px 26px rgba(0,0,0,.35); }
.btn--full { width: 100%; }

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--shell); margin: 0 auto; padding: 8px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-header__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-header__logo img { height: 84px; width: auto; border-radius: 10px; }
.nav { display: flex; align-items: center; gap: 20px; }
.nav a:not(.btn) {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--body); text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav a:not(.btn):hover { color: var(--brand-text); }
.nav a:not(.btn)[aria-current="page"] { color: var(--brand-text); }
.nav .btn, .nav .btn:hover, .nav .btn:focus { color: #fff; }
.nav .btn {
  font-size: 1.17rem;      /* 18.72px @700 = large text, so 3:1 applies */
  font-weight: 700; letter-spacing: .01em; white-space: nowrap; flex-shrink: 0;
  padding: 8px 18px; min-height: 40px; border-radius: 8px;
  box-shadow: 0 4px 12px rgba(13,99,224,.26);
}
.nav .btn svg { width: 15px; height: 15px; }
.nav .btn > span { gap: 7px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1060px) {
  .nav-toggle { display: inline-flex; }
  .site-header__logo img { height: 64px; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 24px 22px; box-shadow: 0 18px 30px rgba(0,0,0,.10);
  }
  .nav[hidden] { display: none; }
  /* :not(.btn) to match the base rule's specificity — without it the base
     .82rem wins and this never applies */
  .nav a:not(.btn) { padding: 15px 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 18px; width: 100%; }
}

/* ---------- Section furniture -------------------------------------------- */
.section { padding: 88px 0; background: var(--bg); }
.section--tight { padding: 64px 0; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--dark); color: var(--dark-muted); }
.section--dark h2, .section--dark h3 { color: #fff; }
/* cards inside a dark section have their own light surface — keep them dark */
.section--dark .card h3, .section--dark .wash:not(.wash--featured) h3 { color: var(--ink); }

.eyebrow {
  display: block; font-size: .8rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--brand-text);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--brand); }
.script {
  font-family: 'Yellowtail', cursive; font-size: 1.9rem;
  color: var(--brand-lg); transform: rotate(-3deg); display: inline-block;
}
.section--dark .script, .hero .script { color: var(--brand); }
.script-rule { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
/* kicker sits inside the h1/h2 so it is part of the heading, not a stray
   paragraph that WAVE reads as a possible heading of its own */
h1 > .script-rule, h2 > .script-rule { font-size: 1rem; font-weight: 400; text-transform: none; font-style: normal; }
.script-rule::before, .script-rule::after { content: ""; height: 1px; width: 34px; background: currentColor; opacity: .5; }
.script-rule--start::after { display: none; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 700; text-transform: uppercase; }
.section-head h2 em { font-style: normal; color: var(--brand-lg); }
.section--dark .section-head h2 em { color: var(--brand); }
.section-head p { margin-top: 18px; font-size: 1.08rem; color: var(--muted); }
.section--dark .section-head p { color: var(--dark-muted); }
.hl { color: var(--brand-text); font-weight: 700; font-style: italic; }

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; background: #000; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .95; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(0,0,0,.76) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.68) 55%,
      rgba(0,0,0,.42) 63%, rgba(0,0,0,.18) 71%, rgba(0,0,0,.06) 83%,
      rgba(0,0,0,.02) 100%),
    linear-gradient(to top, rgba(0,0,0,.24) 0%, rgba(0,0,0,0) 32%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--shell); margin: 0 auto; padding: 184px 24px 104px;
}
.hero__copy { max-width: 660px; }
.hero h1 {
  font-size: clamp(2.1rem, 6.2vw, 4.9rem); font-weight: 700;
  text-transform: uppercase; font-style: italic; color: #fff;
  line-height: .92; margin: 0 0 22px; text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.hero h1 em, .phero h1 em { font-style: italic; color: var(--brand); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 em, .phero h1 em {
    background: var(--grad-head);
    background-size: 260% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    text-shadow: none;
    padding-right: .18em; margin-right: -.06em;
    animation: head-sweep 9s linear infinite;
  }
}
@keyframes head-sweep {
  from { background-position: 0% 50%; }
  to   { background-position: 260% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 em, .phero h1 em { animation: none; background-position: 0 50%; }
}
.hero__lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: #e8edf3;
  max-width: 610px; margin-bottom: 38px; font-weight: 500;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- Card grids --------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 720px)  { .grid--4, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px); border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(13,185,242,.18);
}
/* Decorative icon tile. The icon is aria-hidden and always paired with a
   heading that carries the meaning, so it is decorative under WCAG 1.4.11 and
   free to use the full-strength brand cyan. Text keeps --brand-text. */
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(13,185,242,.12); color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background .28s var(--ease), color .28s var(--ease), transform .28s var(--ease);
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon,
.card:focus-within .card__icon {
  background: var(--brand); color: #fff; transform: translateY(-2px) scale(1.06);
}
.card h3 { font-size: 1.22rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.card p { color: var(--muted); }

/* ---------- Steps -------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 52px; left: 14%; right: 14%;
  height: 2px; background: var(--line); z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__dial {
  position: relative; width: 104px; height: 104px; margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f5f7f9 0%, #e9edf1 100%);
  box-shadow: 0 12px 26px rgba(15,23,42,.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step__dial svg { width: 42px; height: 42px; }
/* Hover: a cyan ring blooms outward from the dial and it lifts slightly. */
.step__dial::after {
  content: ""; position: absolute; inset: -11px; border-radius: 50%;
  border: 3px solid transparent; transform: scale(.86);
  transition: border-color .32s var(--ease), transform .32s var(--ease), opacity .32s var(--ease);
  opacity: 0; pointer-events: none;
}
.step:hover .step__dial,
.step:focus-within .step__dial {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(13,185,242,.24);
}
.step:hover .step__dial::after,
.step:focus-within .step__dial::after {
  border-color: var(--brand); transform: scale(1); opacity: 1;
}
.step__num {
  position: absolute; top: -2px; right: -6px; width: 38px; height: 38px;
  border-radius: 50%; background: #0ba0d2; color: #fff;   /* white = 3.01:1 at 19.2px/700 */
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(13,185,242,.42);
  z-index: 2;
}
.step h3 { font-size: 1.5rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.step p { color: var(--muted); max-width: 300px; margin: 0 auto; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 40px; } .steps::before { display: none; } }

/* ---------- Wash menu ---------------------------------------------------- */
.washes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 1040px) { .washes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .washes { grid-template-columns: 1fr; } }

.wash {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(170deg, #ffffff 0%, #f5f8fb 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px; padding: 30px 26px 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,.34);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.wash:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(0,0,0,.46); }

.wash__icon {
  width: 56px; height: 56px; border-radius: 15px; margin-bottom: 20px;
  background: #e3f1fd; color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  transition: background .28s var(--ease), color .28s var(--ease), transform .28s var(--ease);
}
.wash__icon svg { width: 28px; height: 28px; }
.wash:hover .wash__icon { background: var(--brand); color: #fff; transform: scale(1.06); }

.wash h3 { font-size: 1.42rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; letter-spacing: .01em; }
.wash__blurb { color: var(--muted); font-size: .95rem; font-style: italic; margin-bottom: 20px; min-height: 46px; }
.wash__price { display: flex; align-items: baseline; gap: 7px; }
.wash__price b { font-family: 'Oswald', sans-serif; font-size: 3.1rem; font-weight: 700; color: var(--ink); line-height: 1; }
.wash__price span { color: var(--muted); font-weight: 600; font-size: 1.05rem; }
.wash__single { color: var(--muted); font-size: .92rem; margin: 8px 0 24px; }

.wash__list { list-style: none; margin: 0 0 26px; padding: 0; flex-grow: 1; }
.wash__list li {
  display: flex; gap: 14px; align-items: center; margin-bottom: 15px;
  font-size: .97rem; color: var(--body);
}
.wash__tick {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: #e3f1fd; color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.wash__tick svg { width: 16px; height: 16px; }

/* Ultimate Experience — the featured card */
.wash--featured {
  background: linear-gradient(165deg, #143a5e 0%, #0c2138 55%, #091a2b 100%);
  border: 2px solid var(--brand);
  box-shadow: 0 0 0 1px rgba(13,185,242,.35), 0 22px 52px rgba(13,185,242,.30);
}
.wash--featured h3 { color: #fff; }
.wash--featured .wash__blurb { color: #cfe3f2; }
.wash--featured .wash__price b { color: #fff; }
.wash--featured .wash__price span,
.wash--featured .wash__single { color: #bcd6ea; }
.wash--featured .wash__list li { color: #eaf4fb; }
.wash--featured .wash__icon { background: rgba(255,255,255,.12); color: var(--brand); }
.wash--featured:hover .wash__icon { background: var(--brand); color: #08243a; }
.wash--featured .wash__tick { background: #ffffff; color: #0b6fa0; }

.wash__flag {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, #ffd257 0%, #f0ad2a 100%); color: #3a2600;
  font-family: 'Oswald', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.34);
}

/* ---------- Split (location) --------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.factlist { display: flex; flex-direction: column; gap: 28px; margin-top: 30px; }
.fact { display: flex; gap: 18px; align-items: flex-start; }
.fact__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(13,185,242,.12); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  transition: background .28s var(--ease), color .28s var(--ease);
}
.fact__icon svg { width: 22px; height: 22px; }
.fact:hover .fact__icon { background: var(--brand); color: #fff; }
.fact h3 { font-size: 1.15rem; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.fact p { color: var(--muted); }
.hours { display: grid; grid-template-columns: auto auto; gap: 3px 26px; justify-content: start; }
.hours dt { font-weight: 600; color: var(--body); }
.hours dd { margin: 0; color: var(--muted); }
.inline-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; color: var(--brand-lg); text-decoration: none;
  font-size: 1.17rem; font-weight: 700;
}
.inline-link:hover { text-decoration: underline; }
.inline-link svg { width: 16px; height: 16px; }

.mapframe {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 22px 48px rgba(15,23,42,.18); border: 1px solid var(--line);
  aspect-ratio: 4 / 3; background: #dfe4ea;
}
.mapframe iframe { width: 100%; height: 100%; border: 0; display: block; }
.mapcard {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 14px 18px; box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.mapcard strong { display: block; font-family: 'Oswald', sans-serif; text-transform: uppercase; color: var(--ink); }
.mapcard span { font-size: .9rem; color: var(--muted); }

/* ---------- Text club CTA ------------------------------------------------ */
/* Bright cyan section with the bubble photo showing through, and a dark
   translucent card holding the copy. The card is 68% opaque, which keeps white
   text at 5.3:1 even if the photo behind it blows out to pure white. */
.textclub { position: relative; overflow: hidden; background: var(--brand); }
.textclub__media { position: absolute; inset: 0; opacity: .45; mix-blend-mode: overlay; }
.textclub__media img { width: 100%; height: 100%; object-fit: cover; }
.textclub__inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 84px 24px; }
.textclub__card {
  background: rgba(8,42,58,.68);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px; padding: 56px 40px 44px; text-align: center;
  box-shadow: 0 28px 60px rgba(0,0,0,.22);
}
.textclub__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff; margin-bottom: 24px;
}
.textclub__badge svg { width: 30px; height: 30px; }
.textclub h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.2rem); font-weight: 700;
  text-transform: uppercase; color: #fff; margin-bottom: 20px;
  text-shadow: 0 3px 14px rgba(0,0,0,.32);
}
.textclub p { color: #fff; font-size: clamp(1.02rem, 2.1vw, 1.26rem); max-width: 640px; margin: 0 auto 32px; }
.textclub__fine {
  font-size: .82rem !important; color: #e9f3f9 !important;
  margin: 26px auto 0 !important; max-width: 680px;
}
@media (max-width: 640px) { .textclub__card { padding: 40px 22px 32px; border-radius: 20px; } }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 14px; overflow: hidden;
}
.faq details[open] { border-color: rgba(13,185,242,.5); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600;
  text-transform: uppercase; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0; width: 11px; height: 11px;
  border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(45deg) translateY(-3px); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq summary:hover { color: var(--brand-text); }
.faq__body { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Footer ------------------------------------------------------- */
.footer { background: var(--dark); color: var(--dark-muted); padding: 66px 0 0; }
.footer__main {
  max-width: var(--shell); margin: 0 auto; padding: 0 24px 44px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__brand img { height: 96px; width: auto; border-radius: 10px; filter: brightness(0) invert(1); }
.footer__desc { font-size: .92rem; max-width: 330px; }
.footer__texas { font-size: .84rem; letter-spacing: .18em; }
.footer h2 { font-size: 1rem; font-weight: 600; letter-spacing: .16em; color: #fff; margin-bottom: 18px; }
.footer__links a { display: block; color: var(--dark-muted); text-decoration: none; font-size: .92rem; margin-bottom: 11px; }
.footer__links a:hover { color: #7cc7f0; }
.footer__row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 15px; font-size: .92rem; }
.footer__row svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; color: var(--brand); }
.footer__row a { color: inherit; text-decoration: none; }
.footer__row a:hover { color: #7cc7f0; }
.footer__hours { margin-top: 18px; color: #fff; font-size: .88rem; }
.footer__bottom {
  max-width: var(--shell); margin: 0 auto; padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: .8rem; color: #94a3b8;
}
.footer__bottom a { color: #94a3b8; text-decoration: none; }
.footer__bottom a:hover { color: #7cc7f0; }
.footer__legal a { margin-left: 20px; }
.footer__legal a[aria-current="page"] { color: #7cc7f0; }
@media (max-width: 900px) {
  .footer__main { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal a { margin: 0 10px; }
}

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

/* ==========================================================================
   Inner pages
   ========================================================================== */

/* ---------- Page hero (shorter than the home hero) ----------------------- */
.phero { position: relative; background: #000; overflow: hidden; }
.phero__media { position: absolute; inset: 0; }
.phero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .95; }
.phero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(0,0,0,.76) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.68) 55%,
      rgba(0,0,0,.42) 63%, rgba(0,0,0,.18) 71%, rgba(0,0,0,.06) 83%,
      rgba(0,0,0,.02) 100%),
    linear-gradient(to top, rgba(0,0,0,.24) 0%, rgba(0,0,0,0) 32%);
}
.phero__inner { position: relative; z-index: 2; max-width: var(--shell); margin: 0 auto; padding: 164px 24px 84px; }
.phero__copy { max-width: 640px; }
.phero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; text-transform: uppercase;
  font-style: italic; color: #fff; line-height: .95; margin: 0 0 20px;
}
.phero__copy p { font-size: clamp(1rem, 2vw, 1.2rem); color: #e8edf3; max-width: 600px; margin-bottom: 30px; }
.phero__copy .script-rule { margin-bottom: 14px; }
.phero .btn { margin-top: 4px; }

/* ---------- Prose / two-up ----------------------------------------------- */
.twoup { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.twoup--narrow { grid-template-columns: 1.1fr .9fr; }
@media (max-width: 960px) { .twoup, .twoup--narrow { grid-template-columns: 1fr; gap: 36px; } }
.twoup h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; text-transform: uppercase; margin-bottom: 18px; }
.twoup h2 em { font-style: normal; color: var(--brand-lg); }
.twoup p { color: var(--muted); font-size: 1.05rem; }
.twoup p + p { margin-top: 16px; }
.shot { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 22px 48px rgba(15,23,42,.18); }
.shot img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.ticks { list-style: none; margin: 24px 0 0; padding: 0; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; color: var(--body); }
.ticks svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; margin-top: 3px; }

/* ---------- Info panel (quick answers) ----------------------------------- */
.panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
}
.panel h2, .panel h3 { font-size: 1.25rem; font-weight: 600; text-transform: uppercase; margin-bottom: 20px; }
.panel .fact { margin-bottom: 22px; }
.panel .fact:last-child { margin-bottom: 0; }
.panel a { color: var(--brand-ui); }

/* ---------- Form card ---------------------------------------------------- */
.formcard {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 12px; max-width: 860px; margin: 0 auto;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.formcard__body { padding: 18px; min-height: 620px; }
.formcard__body [data-paperform-id] { min-height: 600px; }
@media (max-width: 640px) { .formcard__body { padding: 8px; min-height: 760px; } .formcard__body [data-paperform-id] { min-height: 740px; } }
.formnote { text-align: center; color: var(--muted); font-size: .86rem; max-width: 640px; margin: 20px auto 0; }

/* ---------- Chips (service area) ----------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; padding: 0; list-style: none; }
.chips li {
  background: var(--brand); color: var(--brand-ink);
  border: 1px solid var(--brand); border-radius: 50px;
  padding: 9px 20px; font-weight: 700; font-size: .92rem;
  box-shadow: 0 4px 12px rgba(13,185,242,.28);
}
.chips li a { color: inherit; text-decoration: none; }
.chips li a:hover { text-decoration: underline; }

/* ---------- Status badge -------------------------------------------------- */
.badge-open {
  display: inline-flex; align-items: center; gap: 9px;
  background: #e7f7ee; color: #14663c; border: 1px solid #b7e3ca;
  border-radius: 50px; padding: 7px 16px; font-weight: 700; font-size: .84rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.badge-open::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #17915a; }

/* ---------- How it works (fundraising) ------------------------------------ */
.plan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .plan { grid-template-columns: 1fr; } }
.plan article {
  background: #f6f8fa; border: 1px solid transparent;
  border-radius: 30px; padding: 40px 36px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.plan article:hover, .plan article:focus-within {
  transform: translateY(-6px); border-color: rgba(13,185,242,.35);
  box-shadow: 0 26px 54px rgba(15,23,42,.14);
}
.plan__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; border-radius: 22px; margin-bottom: 30px;
  background: var(--brand); color: #fff;
  box-shadow: 0 10px 24px rgba(13,185,242,.34);
  transition: transform .3s var(--ease);
}
.plan__icon svg { width: 34px; height: 34px; }
.plan article:hover .plan__icon,
.plan article:focus-within .plan__icon { transform: scale(1.1) rotate(8deg); }
.plan h3 { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.plan p { color: var(--muted); line-height: 1.7; }
@media (prefers-reduced-motion: reduce) {
  .plan article, .plan__icon { transition: none; }
  .plan article:hover, .plan article:hover .plan__icon { transform: none; }
}

/* Wash menu texture — subtle photo behind the dark section */
.washmenu { position: relative; overflow: hidden; background: #060606; }
.washmenu::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(45deg,  rgba(255,255,255,.022) 0 1px, transparent 1px 9px),
    radial-gradient(80% 60% at 12% 0%, rgba(13,185,242,.16) 0%, transparent 62%),
    radial-gradient(70% 60% at 100% 100%, rgba(95,99,241,.14) 0%, transparent 60%);
}

/* ==========================================================================
   Overlay header — sits on the hero, turns solid on scroll
   Applied only to pages that open with a hero. Legal pages and 404 keep the
   solid header, which is the base .site-header above.
   ========================================================================== */
.site-header--overlay {
  position: absolute; top: 0; left: 0; right: 0;
  background: transparent; backdrop-filter: none; border-bottom-color: transparent;
  transition: background .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
/* Scrim behind the bar so white nav text keeps its contrast over any photo.
   Worst case (a blown-out white hero) still leaves white on ~#666 = 5.7:1. */
.site-header--overlay::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.62) 0%, rgba(0,0,0,.30) 58%, rgba(0,0,0,0) 100%);
  transition: opacity .28s var(--ease);
}
.site-header--overlay .site-header__inner { position: relative; z-index: 1; }
.site-header--overlay .site-header__logo img {
  height: 118px; filter: brightness(0) invert(1);
  transition: height .28s var(--ease), filter .28s var(--ease);
}
.site-header--overlay .nav > a:not(.btn),
.site-header--overlay .nav .nav-drop > a { color: #fff; }
.site-header--overlay .nav > a:not(.btn):hover,
.site-header--overlay .nav .nav-drop > a:hover,
.site-header--overlay .nav > a:not(.btn)[aria-current="page"] { color: var(--brand); }
.site-header--overlay .nav-toggle {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.45); color: #fff;
}

/* Scrolled state */
.site-header--overlay.is-stuck {
  position: fixed;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(15,23,42,.10);
}
.site-header--overlay.is-stuck::before { opacity: 0; }
.site-header--overlay.is-stuck .site-header__logo img { height: 84px; filter: none; }
.site-header--overlay.is-stuck .nav > a:not(.btn),
.site-header--overlay.is-stuck .nav .nav-drop > a { color: var(--body); }
.site-header--overlay.is-stuck .nav > a:not(.btn):hover,
.site-header--overlay.is-stuck .nav > a:not(.btn)[aria-current="page"] { color: var(--brand-text); }
.site-header--overlay.is-stuck .nav-toggle { background: #fff; border-color: var(--line); color: var(--ink); }

@media (max-width: 1060px) {
  .site-header--overlay .site-header__logo img { height: 84px; }
  .site-header--overlay.is-stuck .site-header__logo img { height: 64px; }
  /* the open mobile panel is a white sheet, so its links stay dark in both states */
  .site-header--overlay .nav { background: #fff; }
  .site-header--overlay .nav > a:not(.btn),
  .site-header--overlay .nav .nav-drop > a { color: var(--body); }
  .site-header--overlay .nav > a:not(.btn):hover { color: var(--brand-text); }
}
@media (prefers-reduced-motion: reduce) {
  .site-header--overlay,
  .site-header--overlay::before,
  .site-header--overlay .site-header__logo img { transition: none; }
}


/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; padding: 72px 24px 60px;
}
.legal-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 120% at 8% 0%, rgba(13,185,242,.22) 0%, transparent 60%);
}
.legal-hero-inner { position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; }
.legal-hero .script { color: var(--brand); margin-bottom: 6px; }
.legal-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 700;
  text-transform: uppercase; color: #fff; line-height: 1.05; margin-bottom: 18px;
}
.legal-effective {
  display: inline-block; background: rgba(13,185,242,.18);
  border: 1px solid rgba(13,185,242,.55); color: #fff;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; padding: 8px 18px; border-radius: 50px;
}

/* Two columns on desktop: a sticky contents rail, then the document */
.legal-wrap {
  max-width: none; margin: 0; padding: 52px max(24px, calc((100% - 1140px) / 2)) 84px;
  background: var(--bg);
  display: grid; grid-template-columns: 250px 1fr; gap: 56px; align-items: start;
  justify-content: center;
}
@media (max-width: 900px) { .legal-wrap { grid-template-columns: 1fr; gap: 28px; padding-top: 34px; } }

.legal-toc { position: sticky; top: 116px; }
@media (max-width: 900px) {
  .legal-toc {
    position: static; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 0 18px;
  }
}
.legal-toc h2 {
  font-size: .78rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand-text); margin-bottom: 14px;
}
.legal-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.legal-toc li { counter-increment: toc; margin-bottom: 2px; }
.legal-toc a {
  display: block; padding: 7px 0 7px 14px; font-size: .9rem; line-height: 1.4;
  color: var(--muted); text-decoration: none;
  border-left: 2px solid var(--line); transition: color .2s, border-color .2s;
}
.legal-toc a:hover { color: var(--brand-text); border-left-color: var(--brand); }
.legal-toc details { padding: 14px 0; }
.legal-toc summary {
  cursor: pointer; list-style: none; font-family: 'Oswald', sans-serif;
  font-size: .95rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
}
.legal-toc summary::-webkit-details-marker { display: none; }
.legal-toc summary::after {
  content: ""; width: 10px; height: 10px;
  border-right: 2px solid var(--brand-text); border-bottom: 2px solid var(--brand-text);
  transform: rotate(45deg) translateY(-3px); transition: transform .2s;
}
.legal-toc details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
@media (min-width: 901px) { .legal-toc summary { display: none; } .legal-toc details { padding: 0; } }

.legal-body { max-width: 720px; }
.legal-body h2 {
  font-size: 1.45rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .01em; color: var(--ink);
  margin: 48px 0 16px; padding-top: 26px; border-top: 1px solid var(--line);
  scroll-margin-top: 120px;
}
.legal-body h2::before {
  content: ""; display: block; width: 38px; height: 3px;
  background: var(--brand); border-radius: 2px; margin-bottom: 16px;
}
.legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body p { font-size: 1.04rem; line-height: 1.8; color: var(--body); margin-bottom: 18px; }
.legal-body ul { margin: 0 0 18px 1.15rem; }
.legal-body li { font-size: 1.04rem; line-height: 1.8; color: var(--body); margin-bottom: 10px; }
.legal-body li::marker { color: var(--brand); }
.legal-body strong { color: var(--ink); }
.legal-body a { color: var(--brand-ui); text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.legal-body a:hover { color: var(--navy); }
.legal-intro { font-size: 1.14rem; line-height: 1.75; color: var(--body); margin-bottom: 30px; }
.legal-contact {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--brand); border-radius: var(--radius);
  padding: 26px 28px; margin-top: 8px;
  font-size: 1.04rem; line-height: 1.9; color: var(--body);
}
.legal-contact a { color: var(--brand-ui); }
.legal-top {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 40px;
  font-family: 'Oswald', sans-serif; font-size: .88rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-text); text-decoration: none;
}
.legal-top:hover { text-decoration: underline; }
.legal-top svg { width: 15px; height: 15px; }
@media (max-width: 640px) {
  .legal-hero { padding: 52px 24px 44px; }
  .legal-body h2 { font-size: 1.28rem; margin-top: 38px; }
}
@media (max-width: 600px) {
  .hero__inner  { padding-top: 132px; padding-bottom: 64px; }
  .phero__inner { padding-top: 122px; padding-bottom: 56px; }
  .hero__actions .btn { width: auto; }
}

/* Solid ink button — for use on the bright cyan Text Club panel */
.btn--ink { --btn-bg: var(--brand-ink); --btn-fg: #fff; box-shadow: 0 6px 18px rgba(4,34,44,.3); }
.btn--ink:hover { box-shadow: 0 12px 30px rgba(4,34,44,.42); }

/* On narrow screens the copy spans the full width, so the horizontal scrim
   can't protect it — switch to a vertical one dark enough for the headline
   gradient's lowest-contrast stop (#3b82f6) over a near-white photo pixel. */
@media (max-width: 1060px) {
  .hero__scrim, .phero__scrim {
    background:
      linear-gradient(to bottom, rgba(0,0,0,.80) 0%, rgba(0,0,0,.70) 48%, rgba(0,0,0,.82) 100%);
  }
}

/* ---------- Memberships dropdown ----------------------------------------- */
.nav-drop { position: relative; display: inline-flex; align-items: center; }
/* invisible bridge so the pointer can travel from label to menu */
.nav-drop::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav-drop > a { display: inline-flex !important; align-items: center; gap: 5px; }
.nav-drop > a svg { width: 11px; height: 11px; }
.nav-drop__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 216px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 8px 0; box-shadow: 0 16px 38px rgba(15,23,42,.20);
  opacity: 0; visibility: hidden; translate: 0 6px; z-index: 1000;
  transition: opacity .2s var(--ease), visibility .2s var(--ease), translate .2s var(--ease);
}
.nav-drop:hover .nav-drop__menu,
.nav-drop:focus-within .nav-drop__menu { opacity: 1; visibility: visible; translate: 0 0; }
.nav-drop__menu a {
  display: block !important; padding: 13px 22px !important;
  font-size: .88rem !important; font-weight: 700 !important;
  color: var(--navy) !important; white-space: nowrap; border: 0 !important;
  transition: background .18s, color .18s;
}
.nav-drop__menu a:hover { background: #eaf6fd; color: var(--brand-text) !important; }
.site-header--overlay .nav-drop__menu a,
.site-header--overlay.is-stuck .nav-drop__menu a { color: var(--navy) !important; }
@media (prefers-reduced-motion: reduce) { .nav-drop__menu { transition: none; } }

@media (max-width: 1060px) {
  /* inside the collapsed panel the submenu is just indented links */
  .nav-drop { display: block; }
  .nav-drop::after { display: none; }
  .nav-drop > a { border-bottom: 1px solid var(--line); padding: 15px 0; }
  .nav-drop > a svg { display: none; }
  .nav-drop__menu {
    position: static; transform: none; translate: none;
    opacity: 1; visibility: visible; min-width: 0;
    border: 0; border-radius: 0; box-shadow: none; padding: 0; background: transparent;
  }
  /* submenu items match the top-level nav exactly — same size, weight and
     colour — with only an indent to show they sit under Memberships */
  .nav-drop__menu a {
    padding: 15px 0 15px 20px !important;
    font-size: 1rem !important; font-weight: 600 !important;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--body) !important;
    border-bottom: 1px solid var(--line) !important; background: transparent;
  }
  .nav-drop__menu a:hover { color: var(--brand-text) !important; background: transparent; }
}

/* ==========================================================================
   Hero info card (location page)
   Glass panel on the hero. 74% opaque, so white type holds at 7.4:1 and the
   muted line at 5.1:1 even against a blown-out photo pixel behind it.
   ========================================================================== */
.phero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
@media (max-width: 1000px) { .phero__grid { grid-template-columns: 1fr; gap: 36px; } }

.infocard {
  background: rgba(10,28,42,.74);
  -webkit-backdrop-filter: blur(14px) saturate(120%); backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 22px; padding: 8px 30px;
  box-shadow: 0 26px 60px rgba(0,0,0,.42);
}
.infocard__row { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0 16px; }
.infocard__row + .infocard__row { border-top: 1px solid rgba(255,255,255,.16); }
.infocard__icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(13,185,242,.20); border: 1px solid rgba(13,185,242,.55);
  color: var(--brand); display: flex; align-items: center; justify-content: center;
}
.infocard__icon svg { width: 21px; height: 21px; }
.infocard__body { min-width: 0; }
.infocard h2 {
  font-size: .82rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 6px;
}
.infocard p { color: #fff; font-size: 1.06rem; line-height: 1.4; margin: 0; }
.infocard a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); }
.infocard a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.infocard__note { color: #c7d8e4 !important; font-size: .9rem !important; margin-top: 2px; line-height: 1.35; }
.infocard__hours { display: grid; grid-template-columns: auto auto; gap: 6px 22px; justify-content: start; margin: 0; }
.infocard__hours dt { color: #fff; font-weight: 600; font-size: 1rem; }
.infocard__hours dd { margin: 0; color: #c7d8e4; font-size: 1rem; }
@media (max-width: 480px) {
  .infocard { padding: 4px 20px; }
  .infocard__row { padding: 18px 0 13px; gap: 14px; }
  .infocard__hours { grid-template-columns: 1fr; gap: 2px 0; }
  .infocard__hours dd { margin-bottom: 8px; }
}

/* Full-width map — the whole point of that section, so give it the room */
.mapframe--wide { aspect-ratio: 21 / 9; }
@media (max-width: 900px) { .mapframe--wide { aspect-ratio: 4 / 3; } }
/* Compact card anchored bottom-left, not a full-width bar across the map */
.mapframe--wide .mapcard { right: auto; max-width: min(360px, calc(100% - 36px)); }
.mapcard__go {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 10px;
  font-family: 'Oswald', sans-serif; font-size: .84rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--brand-ui); text-decoration: none;
}
.mapcard__go:hover { text-decoration: underline; }
.mapcard__go svg { width: 14px; height: 14px; }

/* ==========================================================================
   Full brand-cyan section
   Type goes dark on it — white would be 2.27:1. Dark ink is 7.27:1.
   ========================================================================== */
.section--brand { background: #0980a8; }   /* white on it = 4.50:1 */
/* All-white type on the cyan, per Chelsea. White on #0db9f2 is 2.27:1, so WAVE
   will flag these — a text-shadow helps a reader but is not counted by any
   contrast checker. Shadows kept tight so the type stays crisp. */
.section--brand .eyebrow { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.section--brand .section-head h2 {
  color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.5), 0 2px 4px rgba(0,0,0,.28);
}
.section--brand .section-head h2 em {
  color: #fff;
  text-decoration: underline; text-decoration-thickness: 3px;
  text-underline-offset: 6px; text-decoration-color: rgba(0,0,0,.34);
}
.section--brand .section-head p { color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.42); }
.section--brand .chips li {
  background: #fff; color: var(--ink);
  border: 1px solid rgba(4,34,44,.28);
  box-shadow: 0 4px 12px rgba(4,34,44,.16);
}

/* ==========================================================================
   Memberships page
   ========================================================================== */
.perk { position: relative; text-align: center; }
.perk .card__icon { margin: 0 auto 20px; width: 62px; height: 62px; border-radius: 18px; }
.perk .card__icon svg { width: 30px; height: 30px; }
.perk h3 { font-size: 1.5rem; font-style: italic; }
.card .perk__flag, .perk__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: var(--brand-ink);
  font-family: 'Oswald', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 15px; border-radius: 50px; white-space: nowrap;
}
.card--featured { border: 2px solid var(--brand); box-shadow: 0 0 0 6px rgba(13,185,242,.12); }

/* Do the math — two columns, one obviously better than the other */
.math { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 940px; margin: 0 auto; }
@media (max-width: 780px) { .math { grid-template-columns: 1fr; } }
.math__card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px; text-align: center;
}
.math__card h3 {
  font-size: 1.05rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.math__price { font-family: 'Oswald', sans-serif; font-size: 3.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.math__unit { display: block; color: var(--muted); font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; margin: 10px 0 24px; }
.math__list { list-style: none; margin: 0; padding: 0; text-align: left; }
.math__list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--body); }
.math__list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.math__card--lose .math__list svg { color: #b4212e; }
.math__card--win {
  background: linear-gradient(165deg, #143a5e 0%, #0c2138 60%, #091a2b 100%);
  border: 2px solid var(--brand); box-shadow: 0 0 0 1px rgba(13,185,242,.35), 0 22px 52px rgba(13,185,242,.28);
}
.math__card--win h3 { color: #bcd6ea; }
.math__card--win .math__price { color: #fff; }
.math__card--win .math__unit { color: #bcd6ea; }
.math__card--win .math__list li { color: #eaf4fb; }
.math__card--win .math__list svg { color: var(--brand); }
.math__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd257 0%, #f0ad2a 100%); color: #3a2600;
  font-family: 'Oswald', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 8px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.24);
}

/* Existing-member strip */
.manage {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
  max-width: 940px; margin: 0 auto; padding: 32px 34px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.manage h2 { font-size: 1.4rem; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.manage p { color: var(--muted); }

/* wash-menu texture as a pure CSS layer (no photo) */
.washmenu__media { position: absolute; inset: 0; pointer-events: none; }

/* Fundraising photo sits at a slight tilt and wiggles straight on hover */
.shot--tilt { position: relative; margin: 0; transform: rotate(2deg); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.shot--tilt:hover { transform: rotate(0deg); box-shadow: 0 28px 60px rgba(15,23,42,.26); animation: shot-wiggle .62s var(--ease); }
@keyframes shot-wiggle {
  0%   { transform: rotate(2deg); }
  22%  { transform: rotate(-1.6deg); }
  45%  { transform: rotate(1.1deg); }
  68%  { transform: rotate(-.6deg); }
  85%  { transform: rotate(.25deg); }
  100% { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .shot--tilt, .shot--tilt:hover { transition: none; animation: none; transform: rotate(2deg); }
}

/* "No more…" list — these are things you stop doing, so they get a red cross */
.ticks--no svg { color: #c62828; width: 22px; height: 22px; }

/* ==========================================================================
   Free wash claim page — one job, so the layout is centred and stripped back
   ========================================================================== */
.claim { position: relative; overflow: hidden; background: #05141d; }
.claim__media { position: absolute; inset: 0; }
.claim__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.claim__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(5,20,29,.55) 0%, rgba(5,20,29,.88) 62%, rgba(5,20,29,.96) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55));
}
.claim__inner {
  position: relative; z-index: 1; max-width: 780px; margin: 0 auto;
  padding: 96px 24px 84px; text-align: center;
}
@media (max-width: 640px) { .claim__inner { padding-top: 68px; padding-bottom: 64px; } }

.claim__value {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: rgba(13,185,242,.16); border: 1px solid rgba(13,185,242,.5);
  border-radius: 50px; padding: 10px 24px; margin-bottom: 22px;
  text-align: center;
}
.claim__value b {
  font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700;
  color: var(--brand); line-height: 1;
}
.claim__value span {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: #cfe6f4; line-height: 1;
}
@media (max-width: 520px) {
  .claim__value { flex-direction: column; gap: 4px; border-radius: 20px; padding: 12px 22px; }
}

.claim h1 {
  font-size: clamp(2.3rem, 7vw, 4.4rem); font-weight: 700;
  text-transform: uppercase; font-style: italic; color: #fff;
  line-height: .95; margin-bottom: 20px;
}
.claim h1 em { font-style: italic; color: var(--brand); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .claim h1 em {
    background: var(--grad-head); background-size: 260% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    padding-right: .18em; margin-right: -.06em;
    animation: head-sweep 9s linear infinite;
  }
}
@media (prefers-reduced-motion: reduce) { .claim h1 em { animation: none; } }
.claim__lede { font-size: clamp(1.02rem, 2.1vw, 1.22rem); color: #dbe8f2; max-width: 560px; margin: 0 auto 26px; }

.claim__trust {
  display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: center;
  list-style: none; margin: 0 0 36px; padding: 0;
}
.claim__trust li {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .95rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
}
.claim__trust span.tick {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
}
.claim__trust span.tick svg { width: 20px; height: 20px; color: var(--brand); }
@media (max-width: 560px) { .claim__trust { gap: 14px 24px; } .claim__trust li { font-size: .86rem; } }

.claim__form {
  background: #fff; border-radius: 22px; padding: 0;
  box-shadow: 0 30px 70px rgba(0,0,0,.42); text-align: left;
}
/* Even padding all round. min-height only guards the initial load — the
   Paperform iframe auto-sizes, and anything taller than the form itself shows
   up as dead space under the submit button. */
.claim__form-body { padding: 46px 26px 34px; min-height: 460px; }
.claim__form-body [data-paperform-id] { min-height: 400px; }
@media (max-width: 640px) {
  .claim__form-body { padding: 34px 14px 24px; min-height: 520px; }
  .claim__form-body [data-paperform-id] { min-height: 470px; }
}
.claim__fine { font-size: .82rem; color: #b9cdda; max-width: 620px; margin: 22px auto 0; }
.claim__fine a { color: #cfe6f4; }
.claim__back {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-family: 'Oswald', sans-serif; font-size: .92rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.claim__back:hover { color: var(--brand); border-bottom-color: var(--brand); }
.claim__back svg { width: 15px; height: 15px; }

/* Minimal footer — landing pages only, nothing to click away to */
.minifooter { background: #05141d; padding: 30px 24px 34px; border-top: 1px solid rgba(255,255,255,.10); }
.minifooter__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.minifooter p { color: #b9cdda; font-size: .88rem; }
.minifooter a { color: #dbe8f2; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.minifooter a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.minifooter__legal { margin-top: 12px !important; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }
.minifooter__legal a { border-bottom: 0; text-decoration: underline; text-underline-offset: 3px; }


/* ==========================================================================
   404 — black canvas, white copy, clear of the overlay header
   ========================================================================== */
.err { background: var(--dark); }
.err__inner {
  max-width: 780px; margin: 0 auto;
  padding: 220px 24px 150px; text-align: center;
}
.err .eyebrow { color: var(--brand); }
.err h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem); font-weight: 700;
  text-transform: uppercase; color: #fff; line-height: 1.06; margin-bottom: 20px;
}
.err h1 em { font-style: normal; color: var(--brand); }
.err p { color: #c8d4de; font-size: 1.08rem; max-width: 620px; margin: 0 auto 38px; }
.err__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
@media (max-width: 1060px) { .err__inner { padding: 180px 24px 110px; } }
@media (max-width: 600px)  { .err__inner { padding: 150px 24px 90px; } .err__actions { justify-content: center; } }

/* ==========================================================================
   Brand guide (hidden internal page)
   ========================================================================== */
.bg-note {
  background: rgba(13,185,242,.10); border: 1px solid rgba(13,185,242,.4);
  border-radius: var(--radius); padding: 20px 24px; color: var(--body); line-height: 1.7;
}
.bg-note code, .bg-table code, .bg-grid code, .bg-p code {
  background: #e8eef4; border-radius: 4px; padding: 1px 6px; font-size: .9em; color: var(--ink);
}
.bg-h {
  font-size: 1.5rem; font-weight: 600; text-transform: uppercase;
  margin: 48px 0 18px; padding-top: 24px; border-top: 1px solid var(--line);
}
.bg-p { color: var(--body); line-height: 1.8; margin-bottom: 16px; max-width: 760px; }
.bg-scroll { overflow-x: auto; }
.bg-table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 720px; }
.bg-table caption { text-align: left; color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.bg-table th, .bg-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.bg-table thead th { background: var(--surface); color: var(--ink); font-family: 'Oswald',sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.bg-table tbody th { font-weight: 600; color: var(--ink); white-space: nowrap; }
.bg-table td { color: var(--body); }
.sw { display: inline-block; width: 18px; height: 18px; border-radius: 5px; border: 1px solid rgba(0,0,0,.18); vertical-align: -3px; margin-right: 8px; }
.bg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.bg-grid p { color: var(--muted); font-size: .92rem; line-height: 1.6; margin-top: 10px; }
.bg-grid--dark { background: var(--dark); border-radius: var(--radius-lg); padding: 30px; }
.bg-grid--dark p { color: var(--dark-muted); }
.bg-grid--dark code { background: rgba(255,255,255,.14); color: #fff; }
.bg-swatch { height: 68px; border-radius: 12px; border: 1px solid var(--line); }

/* ==========================================================================
   Thank-you / confirmation — continues the free-wash landing flow
   ========================================================================== */
.done__mark {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 28px;
  background: var(--brand); color: var(--brand-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(13,185,242,.16), 0 18px 40px rgba(13,185,242,.34);
}
.done__mark svg { width: 44px; height: 44px; }
.done__panel {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px; padding: 30px 32px; margin: 8px auto 34px; max-width: 620px;
  text-align: left;
}
.done__panel h2 {
  font-size: 1.15rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brand); margin-bottom: 12px;
}
.done__panel p { color: #dbe8f2; font-size: 1rem; line-height: 1.7; }
.done__facts {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  list-style: none; margin: 0 0 38px; padding: 0;
}
.done__facts li {
  flex: 1 1 170px; max-width: 220px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 20px 18px;
}
.done__facts dt {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #a9c3d4; margin-bottom: 8px;
}
.done__facts dd {
  margin: 0; font-family: 'Oswald', sans-serif; font-size: 1.1rem;
  font-weight: 600; color: #fff; line-height: 1.3;
}

/* ==========================================================================
   Accessibility widget
   Filters are applied to body's children rather than to body or html, so the
   widget itself is never inverted or greyed along with the page.
   ========================================================================== */
body > :not(.a11y) { filter: var(--a11y-filter, none); }
html { font-size: calc(100% * var(--a11y-scale, 1)); }

body.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; }
body.a11y-still *,
body.a11y-still *::before,
body.a11y-still *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.a11y { position: fixed; inset: auto auto 0 0; z-index: 2147483647; }
.a11y__toggle {
  position: fixed; bottom: 20px; left: 20px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand); color: var(--brand-ink);
  border: 2px solid var(--brand-ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.34);
}
.a11y__toggle svg { width: 30px; height: 30px; }
.a11y__toggle:hover { transform: scale(1.06); }
.a11y__toggle:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }

.a11y__panel {
  position: fixed; bottom: 88px; left: 20px; width: 296px;
  max-height: min(70vh, 560px); overflow-y: auto;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 18px 48px rgba(15,23,42,.28);
  padding: 20px;
}
.a11y__panel[hidden] { display: none; }
.a11y__panel h2 {
  font-size: 1.05rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 4px;
}
.a11y__hint { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.a11y__group { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 16px 0 8px; }
.a11y__opt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; text-align: left; margin-bottom: 8px;
  padding: 11px 14px; border-radius: 10px;
  background: var(--bg); border: 2px solid transparent;
  font: inherit; font-size: .92rem; font-weight: 600; color: var(--ink); cursor: pointer;
}
.a11y__opt:hover { border-color: var(--brand); }
.a11y__opt:focus-visible { outline: 3px solid var(--brand-ui); outline-offset: 2px; }
.a11y__opt[aria-pressed="true"] { background: var(--brand); color: var(--brand-ink); border-color: var(--brand-ink); }
.a11y__opt .state { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .72; }
.a11y__sizes { display: flex; gap: 8px; }
.a11y__sizes button {
  flex: 1; padding: 11px 0; border-radius: 10px;
  background: var(--bg); border: 2px solid transparent;
  font: inherit; font-weight: 700; color: var(--ink); cursor: pointer;
}
.a11y__sizes button:hover { border-color: var(--brand); }
.a11y__sizes button:focus-visible { outline: 3px solid var(--brand-ui); outline-offset: 2px; }
.a11y__reset {
  width: 100%; margin-top: 14px; padding: 12px;
  border-radius: 10px; border: 2px solid var(--ink);
  background: var(--ink); color: #fff; font: inherit; font-weight: 700; cursor: pointer;
}
.a11y__reset:focus-visible { outline: 3px solid var(--brand-ui); outline-offset: 2px; }
@media (max-width: 420px) {
  .a11y__panel { left: 12px; right: 12px; width: auto; }
  .a11y__toggle { bottom: 14px; left: 14px; }
}

/* ==========================================================================
   Mobile hero sizing
   The base clamps pin to their minimum below ~540px, so every phone rendered
   the headline at the same ~34px. These scale with the viewport instead, and
   stop at 640px so desktop is untouched.
   ========================================================================== */
@media (max-width: 640px) {
  .hero h1  { font-size: clamp(2.15rem, 11.6vw, 3.9rem); line-height: .96; }
  .phero h1 { font-size: clamp(2.15rem, 10.8vw, 3.6rem); line-height: .98; }
  .claim h1 { font-size: clamp(2.2rem, 11.2vw, 3.7rem); line-height: .98; }
  .hero__lede, .phero__copy p, .claim__lede { font-size: 1.06rem; }
}

/* the scrollable table needs a visible focus ring now that it is tabbable */
.bg-scroll:focus-visible { outline: 3px solid var(--brand-ui); outline-offset: 3px; border-radius: 8px; }

/* ==========================================================================
   Mobile hero corrections
   ========================================================================== */
@media (max-width: 640px) {
  /* The driver sits at roughly 62-78% across the source frame. object-fit:cover
     centres, so a phone viewport cropped him out entirely — pull the crop right. */
  .hero__media img { object-position: 74% center; }
}
@media (max-width: 600px) {
  /* Keep the CTA on one line rather than wrapping with the arrow stranded.
     The label stays 19.2px/700 so it still counts as large text at 3:1 — a
     smaller label would need 4.5:1, which the gradient cannot meet. */
  .hide-sm {
    position: absolute !important; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
  }
  .hero__actions .btn > span,
  .textclub .btn > span { justify-content: center; }
  /* a button label must never wrap into a grid — if anything else goes wrong
     it shrinks or clips rather than rearranging itself */
  .btn > span { flex-wrap: nowrap; white-space: nowrap; }
}
/* The accessibility button is fixed bottom-left and was sitting on top of the
   secondary hero CTA. Nudge it clear and shrink it slightly on small screens. */
@media (max-width: 600px) {
  /* measured: full-width CTAs plus a bottom-left button overlapped the primary
     CTA at every phone size. Auto-width CTAs on the left and the button on the
     right clears it at first paint and at every scroll position. */
  .a11y__toggle { width: 48px; height: 48px; bottom: 12px; left: auto; right: 12px; }
  .a11y__panel  { left: 12px; right: 12px; bottom: 72px; }
  .a11y__toggle svg { width: 26px; height: 26px; }
  .hero__actions { padding-bottom: 56px; }
}

/* The mobile menu is a full-width sheet; the fixed accessibility button was
   sitting on top of whatever sat underneath it. Hide it while the menu is open. */
@media (max-width: 1060px) {
  body:has(.nav-toggle[aria-expanded="true"]) .a11y__toggle,
  body:has(.nav-toggle[aria-expanded="true"]) .a11y__panel { display: none; }
}
