/* =====================================================================
   Speedie Clean Express Car Wash — design system
   Every color, font, spacing, radius, and shadow lives here as a custom
   property. Pages consume these tokens. /brand-guide displays them.
   Change a value here, never page by page.
   ===================================================================== */

:root {
  /* Colors — sampled from the client logo SVGs. One job each. */
  --color-red:   #E11D2E; /* Primary CTA buttons ONLY */
  --color-blue:  #1E6CF0; /* Secondary buttons, icons, UI accents, large text */
  --color-navy:  #0D2B6B; /* Headings, body text, dark sections */
  --color-sky:   #7CC6FF; /* Decorative: bubbles, tints, accents on navy */
  --color-cloud: #F4F8FF; /* Page background */
  --color-white: #FFFFFF; /* Cards and surfaces */

  /* Derived tints — alpha versions of the tokens above, not new colors */
  --tint-sky-20: rgba(124, 198, 255, 0.20);
  --tint-sky-40: rgba(124, 198, 255, 0.40);
  --tint-navy-08: rgba(13, 43, 107, 0.08);
  --tint-navy-16: rgba(13, 43, 107, 0.16);
  --tint-navy-70: rgba(13, 43, 107, 0.70);

  /* Typography */
  --font-heading: "Baloo 2", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --font-body: "Nunito", "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-body: 1rem;        /* 16px mobile floor */
  --fs-small: 0.875rem;   /* 14px — captions and fine print only */
  --fs-lead: 1.125rem;
  --fs-h1: clamp(2.5rem, 6vw, 3.5rem);     /* 40 → 56 */
  --fs-h2: clamp(2rem, 4.5vw, 2.5rem);     /* 32 → 40 */
  --fs-h3: clamp(1.5rem, 3vw, 1.75rem);    /* 24 → 28 */
  --fs-h4: 1.25rem;
  --lh-body: 1.6;
  --lh-heading: 1.1;

  /* Spacing scale — the only spacing values used anywhere */
  --space-1: 0.25rem;  /* 4 */
  --space-2: 0.5rem;   /* 8 */
  --space-3: 0.75rem;  /* 12 */
  --space-4: 1rem;     /* 16 */
  --space-5: 1.5rem;   /* 24 */
  --space-6: 2rem;     /* 32 */
  --space-7: 3rem;     /* 48 */
  --space-8: 4rem;     /* 64 */
  --space-9: 6rem;     /* 96 */
  --space-10: 8rem;    /* 128 */

  --section-y: var(--space-8);    /* 64 mobile; bumped on desktop */
  --gutter: var(--space-4);       /* 16 mobile; 24 desktop */
  --container: 75rem;             /* 1200px */
  --container-narrow: 46rem;      /* 736px reading width */

  /* Shape */
  --radius-pill: 999px;
  --radius-card: 1.5rem;   /* 24 */
  --radius-img: 1rem;      /* 16 */
  --radius-sm: 0.5rem;     /* 8 */

  /* Elevation — navy tinted, never gray */
  --shadow-sm: 0 2px 8px var(--tint-navy-08);
  --shadow-md: 0 8px 24px var(--tint-navy-16);
  --shadow-lg: 0 20px 48px var(--tint-navy-16);

  /* Motion */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 700ms;

  /* Derived tints (sky mixed toward white) and the high-contrast palette — documented on /brand-guide */
  --tint-sky-70: #A9D7FF; --tint-sky-45: #CFE7FF; --tint-sky-30: #D9ECFF; --tint-sky-25: #DCEDFF; --tint-sky-15: #E4F1FF; --tint-sky-10: #EAF4FF;
  --switch-off: #C9D6EA;
  --hc-blue: #0B3FA8; --hc-red: #B3121F; --hc-text: #0A1E4D; --hc-sky: #9ED2FF;

  /* Focus ring */
  --focus-ring: 0 0 0 3px var(--color-cloud), 0 0 0 6px var(--color-blue);
  --focus-ring-dark: 0 0 0 3px var(--color-navy), 0 0 0 6px var(--color-sky);
}

@media (min-width: 48em) {
  :root {
    --fs-body: 1.125rem;   /* 18px desktop */
    --fs-lead: 1.25rem;
    --section-y: var(--space-9);  /* 96 */
    --gutter: var(--space-5);     /* 24 */
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-navy);
  background: var(--color-cloud);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--color-navy); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 0.15em; text-decoration-color: var(--color-blue); }
a:hover { text-decoration-color: var(--color-navy); }
ul, ol { padding-left: 1.25em; }
p, ul, ol { margin: 0 0 var(--space-4); }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }
.on-dark :focus-visible, .site-footer :focus-visible { box-shadow: var(--focus-ring-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
  margin: 0 0 var(--space-4);
  color: var(--color-navy);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 800; }
h3 { font-size: var(--fs-h3); font-weight: 700; }
h4 { font-size: var(--fs-h4); font-weight: 700; }

.lead { font-size: var(--fs-lead); }
.small, small { font-size: var(--fs-small); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--color-white); }
.on-dark a { color: var(--color-white); text-decoration-color: var(--color-sky); }

.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;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section > .container { position: relative; z-index: 2; }
.section-tint { background: var(--tint-sky-20); }
.section-navy { background: var(--color-navy); }
.section-white { background: var(--color-white); }
.section-head { max-width: var(--container-narrow); margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.grid { display: grid; gap: var(--space-5); }
@media (min-width: 40em) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.split { display: grid; gap: var(--space-6); align-items: center; }
.split > *, .grid > * { min-width: 0; }
@media (min-width: 56em) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-8); } .split.reverse > :first-child { order: 2; } }
.text-center { text-align: center; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: var(--space-4); top: -100%;
  background: var(--color-navy); color: var(--color-white);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-pill);
  font-weight: 800; z-index: 1000; text-decoration: none;
}
.skip-link:focus { top: var(--space-4); }

/* ---------- Buttons — exactly two styles ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 800; font-size: var(--fs-body);
  line-height: 1.2; text-transform: uppercase; letter-spacing: 0.02em;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-pill); border: 2px solid transparent;
  text-decoration: none; cursor: pointer; min-height: 3rem;
  transition: transform var(--dur-fast) var(--ease-bounce), box-shadow var(--dur-fast) var(--ease-out), background-color var(--dur-fast), color var(--dur-fast);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.5; pointer-events: none; transform: none; }

.btn-primary { background: var(--color-red); color: var(--color-white); border-color: var(--color-red); box-shadow: var(--shadow-sm); }
.btn-primary:hover, .btn-primary:focus-visible { box-shadow: var(--shadow-md); }
.on-dark .btn-primary, .section-navy .btn-primary, .site-footer .btn-primary { border-color: var(--color-white); }

.btn-secondary { background: transparent; color: var(--color-blue); border-color: var(--color-blue); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--color-blue); color: var(--color-white); }
.on-dark .btn-secondary, .section-navy .btn-secondary { color: var(--color-white); border-color: var(--color-white); }
.on-dark .btn-secondary:hover, .on-dark .btn-secondary:focus-visible, .section-navy .btn-secondary:hover, .section-navy .btn-secondary:focus-visible { background: var(--color-white); color: var(--color-navy); }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: 4.5rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 3.25rem; width: auto; }
@media (min-width: 64em) { .brand img { height: 4rem; } }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: var(--radius-pill);
  border: 2px solid var(--color-blue); background: var(--color-white); color: var(--color-blue);
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.nav-toggle:hover, .nav-toggle:focus-visible { background: var(--color-blue); color: var(--color-white); }
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-2); }
.site-nav a {
  display: block; padding: var(--space-2) var(--space-3);
  font-weight: 800; text-decoration: none; color: var(--color-navy);
  border-radius: var(--radius-pill);
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.site-nav a:hover, .site-nav a:focus-visible { background: var(--tint-sky-40); }
.site-nav a[aria-current="page"] { background: var(--color-navy); color: var(--color-white); }

@media (max-width: 63.99em) {
  .site-header .container { flex-wrap: wrap; }
  .site-header .btn-primary { padding: var(--space-3) var(--space-4); font-size: var(--fs-small); min-height: 2.75rem; }
  .site-nav { display: none; width: 100%; padding-block: var(--space-3) var(--space-5); }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: var(--space-1); }
  .site-nav a { padding: var(--space-3) var(--space-4); font-size: var(--fs-lead); }
}
@media (min-width: 64em) { .nav-toggle { display: none; } .site-nav { display: block; } }

/* Utility bar — not used (no membership e-commerce on this site) */

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: var(--space-8) var(--space-8);
  background: linear-gradient(160deg, var(--color-white) 0%, var(--color-cloud) 45%, var(--tint-sky-40) 100%);
}
@media (min-width: 56em) { .hero { padding-block: var(--space-9) var(--space-9); min-height: min(80vh, 46rem); display: flex; align-items: center; } }
.hero .container { position: relative; z-index: 2; }
.hero-copy h1 { margin-bottom: var(--space-4); }
.hero-copy .lead { max-width: 34rem; margin-bottom: var(--space-5); }
.motion-toggle {
  position: absolute; left: var(--space-4); bottom: var(--space-4); z-index: 4;
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-white); color: var(--color-navy);
  border: 2px solid var(--color-white); border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4); font-weight: 800; font-size: var(--fs-small);
  min-height: 2.75rem;
}
.motion-toggle:hover, .motion-toggle:focus-visible { background: var(--color-sky); border-color: var(--color-sky); }
.motion-toggle svg { width: 1rem; height: 1rem; }
.motion-toggle .icon-play { display: none; }
.motion-toggle[aria-pressed="true"] .icon-pause { display: none; }
.motion-toggle[aria-pressed="true"] .icon-play { display: block; }

/* ---------- Bubbles (decorative) ---------- */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.bubble {
  position: absolute; bottom: -12rem; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--color-white) 0%, var(--tint-sky-40) 40%, var(--tint-sky-20) 100%);
  border: 2px solid var(--tint-sky-40);
  animation: rise linear infinite;
  opacity: 0.9;
}
.section-navy .bubble, .site-footer .bubble { background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), var(--tint-sky-20) 70%); border-color: var(--tint-sky-20); }
.bubble:nth-child(1) { left: 6%;  width: 5rem;  height: 5rem;  animation-duration: 18s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 22%; width: 2.5rem; height: 2.5rem; animation-duration: 14s; animation-delay: 3s; }
.bubble:nth-child(3) { left: 41%; width: 8rem;  height: 8rem;  animation-duration: 24s; animation-delay: 6s; }
.bubble:nth-child(4) { left: 63%; width: 3.5rem; height: 3.5rem; animation-duration: 16s; animation-delay: 1s; }
.bubble:nth-child(5) { left: 78%; width: 6rem;  height: 6rem;  animation-duration: 21s; animation-delay: 9s; }
.bubble:nth-child(6) { left: 91%; width: 2rem;  height: 2rem;  animation-duration: 13s; animation-delay: 5s; }

@keyframes rise { 0% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-60vh) translateX(1.5rem); } 100% { transform: translateY(-130vh) translateX(-1rem); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-0.75rem) rotate(3deg); } }

.motion-paused .bubble, .motion-paused .hero-mascot, .motion-paused .reveal { animation-play-state: paused !important; }

/* ---------- Cards ---------- */
.card {
  background: var(--color-white); border-radius: var(--radius-card);
  padding: var(--space-5); box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-bounce), box-shadow var(--dur-base) var(--ease-out);
}
.card:hover, .card:focus-within { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3, .card h4 { margin-bottom: var(--space-2); }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--tint-sky-40); color: var(--color-blue); margin-bottom: var(--space-4);
}
.card-icon svg { width: 1.75rem; height: 1.75rem; }

/* Placeholder media */
.ph { position: relative; border-radius: var(--radius-img); overflow: hidden; background: var(--color-navy); box-shadow: var(--shadow-md); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph-4x3 { aspect-ratio: 4 / 3; }

/* Embed placeholder — form code not yet supplied */
.embed-slot {
  border: 3px dashed var(--color-blue); border-radius: var(--radius-card);
  background: var(--color-white); padding: var(--space-6); text-align: center;
}
.embed-slot p:last-child { margin-bottom: 0; }
.form-legal { font-size: var(--fs-small); margin-top: var(--space-3); }

/* Info list (contact / location) */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-4); }
.info-list li { display: flex; gap: var(--space-3); align-items: flex-start; }
.info-list svg { flex: 0 0 1.5rem; width: 1.5rem; height: 1.5rem; color: var(--color-blue); margin-top: 0.15em; }
.info-list strong { display: block; font-family: var(--font-heading); }

/* FAQ */
.faq { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.faq details { background: var(--color-white); border-radius: var(--radius-img); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5); font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-h4);
  border-radius: var(--radius-img);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 1.5rem; width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: var(--color-blue);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>") center / contain no-repeat;
  transition: transform var(--dur-base) var(--ease-bounce);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: var(--tint-sky-20); }
.faq .faq-body { padding: 0 var(--space-5) var(--space-5); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* Final CTA band */
.cta-band { text-align: center; overflow: hidden; }
.cta-band h2 { max-width: 40rem; margin-inline: auto; }
.cta-band .lead { max-width: 34rem; margin-inline: auto; margin-bottom: var(--space-6); }
.cta-band .btn-group { justify-content: center; }
.cta-band .mascot { width: 6rem; margin: 0 auto var(--space-4); animation: float 5s ease-in-out infinite; }

/* Legal / prose pages */
.prose { max-width: var(--container-narrow); margin-inline: auto; }
.prose h2 { font-size: var(--fs-h3); margin-top: var(--space-7); }
.prose h3 { font-size: var(--fs-h4); margin-top: var(--space-5); }
.prose ul li { margin-bottom: var(--space-2); }
.prose address { font-style: normal; }

/* Page hero (interior pages) */
.page-hero { position: relative; overflow: hidden; padding-block: var(--space-8); background: linear-gradient(160deg, var(--color-white) 0%, var(--color-cloud) 45%, var(--tint-sky-40) 100%); }
@media (min-width: 56em) { .page-hero { padding-block: var(--space-9); } }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 44rem; }
.page-hero .lead { max-width: 36rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-navy); color: var(--color-white); position: relative; overflow: hidden; padding-block: var(--space-8) var(--space-6); }
.site-footer a { color: var(--color-white); text-decoration-color: var(--color-sky); }
.site-footer .container { position: relative; z-index: 2; }
.footer-grid { display: grid; gap: var(--space-6); }
@media (min-width: 48em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-logo img { width: 14rem; height: auto; }
.footer-grid h2 { font-size: var(--fs-h4); color: var(--color-sky); margin-bottom: var(--space-3); }
.footer-nav ul, .footer-legal ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: var(--space-2); }
.footer-nav a { text-decoration: none; font-weight: 800; }
.footer-nav a:hover, .footer-nav a:focus-visible { text-decoration: underline; }
.site-footer address { font-style: normal; margin-bottom: var(--space-3); }
.footer-bottom { border-top: 2px solid var(--tint-sky-20); margin-top: var(--space-6); padding-top: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); justify-content: space-between; align-items: center; font-size: var(--fs-small); }
.footer-legal ul { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.footer-bottom p { margin: 0; }

/* ---------- Scroll reveal (JS-enhanced, safe without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(1.25rem); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal:nth-child(2) { transition-delay: 90ms; }
.js .reveal:nth-child(3) { transition-delay: 180ms; }
.js .reveal:nth-child(4) { transition-delay: 270ms; }

/* ---------- Reduced motion: final state, immediately ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* ---------- Brand guide page ---------- */
.swatches { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); }
.swatch { border-radius: var(--radius-card); overflow: hidden; background: var(--color-white); box-shadow: var(--shadow-sm); }
.swatch-chip { height: 6rem; border-bottom: 2px solid var(--color-cloud); }
.swatch dl { margin: 0; padding: var(--space-4); }
.swatch dt { font-weight: 800; font-family: var(--font-heading); }
.swatch dd { margin: 0 0 var(--space-2); }
.swatch code { font-size: var(--fs-small); }
.type-sample { padding: var(--space-4); background: var(--color-white); border-radius: var(--radius-img); margin-bottom: var(--space-3); }
.type-sample small { display: block; color: var(--color-navy); margin-bottom: var(--space-2); }
.state-row { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr)); align-items: center; }
.state-row > div { text-align: center; }
.state-row small { display: block; margin-top: var(--space-2); }
.btn.is-hover.btn-primary { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn.is-hover.btn-secondary { background: var(--color-blue); color: var(--color-white); }
.btn.is-focus { box-shadow: var(--focus-ring); }
.btn.is-active { transform: scale(0.98); }
.logo-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); }
.logo-tile { border-radius: var(--radius-card); padding: var(--space-6); display: grid; place-items: center; gap: var(--space-3); box-shadow: var(--shadow-sm); }
.logo-tile img { width: 100%; max-width: 16rem; }
.logo-tile small { text-align: center; }
.logo-tile.light { background: var(--color-white); }
.logo-tile.dark { background: var(--color-navy); color: var(--color-white); }
.space-scale { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.space-scale li { display: flex; align-items: center; gap: var(--space-3); }
.space-scale span { display: block; height: 1rem; background: var(--color-blue); border-radius: var(--radius-sm); }
table.guide { width: 100%; border-collapse: collapse; background: var(--color-white); border-radius: var(--radius-img); overflow: hidden; box-shadow: var(--shadow-sm); }
table.guide th, table.guide td { text-align: left; padding: var(--space-3) var(--space-4); border-bottom: 2px solid var(--color-cloud); }
table.guide th { font-family: var(--font-heading); }
.table-wrap { overflow-x: auto; }

/* =====================================================================
   FUN LAYER — playful components added in the refinement pass
   ===================================================================== */

/* Bigger, bolder type */
:root {
  --fs-h1: clamp(2.75rem, 7vw, 4.75rem);   /* 44 → 76 */
  --fs-h2: clamp(2.25rem, 5vw, 3.25rem);   /* 36 → 52 */
  --fs-display: clamp(3rem, 9vw, 6.5rem);  /* marquee-sized words */
}
h1, h2 { letter-spacing: -0.02em; }
.accent { color: var(--color-red); }             /* headline accent word — large text only */
.on-dark .accent { color: var(--color-sky); }

/* Sticker labels — replace the flat eyebrow */
.sticker {
  display: inline-block; font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-body);
  color: var(--color-navy); background: var(--color-white);
  border: 3px solid var(--color-navy); border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-5); margin-bottom: var(--space-5);
  box-shadow: 4px 4px 0 var(--color-navy); transform: rotate(-3deg);
  transition: transform var(--dur-fast) var(--ease-bounce);
}
.sticker:hover { transform: rotate(2deg) scale(1.04); }
.sticker.sky { background: var(--color-sky); }
.on-dark .sticker { box-shadow: 4px 4px 0 var(--color-sky); }

/* Full-bleed hero */
.hero-full {
  background: var(--color-navy); color: var(--color-white);
  min-height: min(92vh, 56rem); display: flex; align-items: center;
  padding-block: var(--space-9) var(--space-10);
}
.hero-full .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-full .hero-bg video, .hero-full .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-full .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,43,107,0.92) 0%, rgba(13,43,107,0.72) 55%, rgba(13,43,107,0.35) 100%);
}
.hero-full .hero-inner { display: grid; gap: var(--space-6); align-items: center; position: relative; z-index: 2; }
@media (min-width: 56em) { .hero-full .hero-inner { grid-template-columns: 1.25fr 1fr; } }
.hero-full h1 { color: var(--color-white); font-size: var(--fs-h1); max-width: 14ch; }
.hero-full .lead { color: var(--color-white); max-width: 32rem; font-size: var(--fs-lead); }
.hero-full .btn-group { margin-top: var(--space-5); }
.hero-full .motion-toggle { position: absolute; left: auto; right: var(--space-4); bottom: clamp(3rem, 7vw, 6rem); }
@keyframes dash { 0%,100% { transform: translateX(0); opacity: 0.9; } 50% { transform: translateX(-14%); opacity: 0.4; } }
@keyframes squish { 0% { transform: scale(1,1); } 30% { transform: scale(1.18,0.82); } 60% { transform: scale(0.9,1.1); } 100% { transform: scale(1,1); } }
.hero-full .bubble { background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), var(--tint-sky-40) 45%, var(--tint-sky-20) 100%); border-color: var(--tint-sky-40); }

/* Poppable bubbles */
.bubbles.poppable { pointer-events: none; }
.bubbles.poppable .bubble { pointer-events: auto; cursor: pointer; }
.bubble.pop { animation: pop 380ms var(--ease-out) forwards !important; }
@keyframes pop { 0% { transform: scale(1); opacity: 1; } 60% { transform: scale(1.5); opacity: 0.6; border-width: 4px; } 100% { transform: scale(1.9); opacity: 0; } }

/* Ticker / marquee band — red brand strip */
.ticker {
  background: var(--color-red); color: var(--color-white); overflow: hidden; position: relative; z-index: 4;
  padding-block: var(--space-3); border-block: 3px solid var(--color-navy);
}
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker:hover .ticker-track, .motion-paused .ticker-track { animation-play-state: paused; }
.ticker ul { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-6); padding-inline-end: var(--space-6); }
.ticker li { display: flex; align-items: center; gap: var(--space-6); white-space: nowrap; font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-h4); text-transform: uppercase; letter-spacing: 0.04em; }
.ticker li img { width: 1.75rem; height: 1.75rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Plan track — steps with a mascot that rides along as you scroll */
.plan-track { position: relative; --progress: 0; }
.plan-rider { position: absolute; top: -0.9rem; left: calc(var(--progress) * 100%); width: 4rem; height: 4rem; transform: translateX(-50%); transition: left 120ms linear; filter: drop-shadow(0 6px 10px var(--tint-navy-16)); }

/* Full-bleed band with image behind */
.band {
  position: relative; overflow: hidden; color: var(--color-white); background: var(--color-navy);
  padding-block: var(--space-10);
}
.band .container { position: relative; z-index: 2; }
.band .display { font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-display); line-height: 0.95; color: var(--color-white); letter-spacing: -0.03em; margin-bottom: var(--space-4); }
.band .display .accent { color: var(--color-sky); }
.chips { list-style: none; padding: 0; margin: var(--space-5) 0; display: flex; flex-wrap: wrap; gap: var(--space-3); }
.chips li { background: var(--color-white); color: var(--color-navy); font-weight: 800; border-radius: var(--radius-pill); padding: var(--space-2) var(--space-4); border: 3px solid var(--color-navy); box-shadow: 3px 3px 0 var(--color-sky); transition: transform var(--dur-fast) var(--ease-bounce); }
.chips li:nth-child(odd) { transform: rotate(-2deg); }
.chips li:nth-child(even) { transform: rotate(1.5deg); }
.chips li:hover { transform: rotate(0) translateY(-3px); }

/* Bento mosaic — images with the words on top */
.bento { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 40em) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 16rem; } }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius-card); min-height: 16rem;
  background: var(--color-navy); color: var(--color-white); box-shadow: var(--shadow-md);
  display: flex; align-items: flex-end; text-decoration: none;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,43,107,0) 30%, rgba(13,43,107,0.92) 100%); }
.tile:hover img, .tile:focus-within img { transform: scale(1.08) rotate(-1deg); }
.tile-body { position: relative; z-index: 2; padding: var(--space-5); }
.tile h3 { color: var(--color-white); margin-bottom: var(--space-1); font-size: var(--fs-h3); }
.tile p { color: var(--color-white); margin: 0; }
.tile .card-icon { background: var(--color-white); color: var(--color-blue); width: 3rem; height: 3rem; margin-bottom: var(--space-3); border: 3px solid var(--color-navy); }
.tile.sky { background: var(--color-sky); color: var(--color-navy); align-items: center; }
.tile.sky::after { display: none; }
.tile.sky h3, .tile.sky p { color: var(--color-navy); }
.tile.sky img { position: static; width: 60%; height: auto; margin: 0 auto; object-fit: contain; }

/* Interior page heroes — full-bleed image */
.page-hero.on-dark { background: var(--color-navy); padding-block: var(--space-9) var(--space-10); min-height: min(60vh, 34rem); display: flex; align-items: center; }
.page-hero.on-dark .hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero.on-dark .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.on-dark .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,43,107,0.94) 0%, rgba(13,43,107,0.75) 55%, rgba(13,43,107,0.4) 100%); }
.page-hero.on-dark h1 { color: var(--color-white); }
.page-hero.on-dark .lead { color: var(--color-white); }
.page-hero.on-dark .btn-secondary { color: var(--color-white); border-color: var(--color-white); }
.page-hero.on-dark .btn-secondary:hover, .page-hero.on-dark .btn-secondary:focus-visible { background: var(--color-white); color: var(--color-navy); }

/* CTA band — big */
.cta-band .mascot { width: clamp(7rem, 16vw, 12rem); }
.cta-band h2 { font-size: var(--fs-display); line-height: 0.95; letter-spacing: -0.03em; max-width: 16ch; }

/* Global motion pause applies everywhere */
.motion-paused *, .motion-paused *::before, .motion-paused *::after { animation-play-state: paused !important; }

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .photo-marquee .strip { animation: none; }
  .plan-track { --progress: 1; }
}

/* Fixes from the render check */
.on-dark .sticker, .on-dark .sticker, .band .sticker, .hero-full .sticker, .page-hero.on-dark .sticker { color: var(--color-navy); }
.tile.sky { display: flex; flex-direction: row; align-items: center; gap: var(--space-3); padding: var(--space-4); }
.tile.sky img { flex: 0 0 34%; width: 34%; margin: 0; }
.tile.sky .tile-body { flex: 1 1 auto; min-width: 0; padding: var(--space-2); }
.tile.sky h3 { font-size: var(--fs-h4); }

/* Straighten up — no rotated elements anywhere (feedback 2026-09-14) */
.sticker, .sticker:hover { transform: none; }
.sticker:hover { transform: translateY(-2px); }
.chips li, .chips li:nth-child(odd), .chips li:nth-child(even) { transform: none; }
.chips li:hover { transform: translateY(-3px); }
.tile:hover img, .tile:focus-within img { transform: scale(1.08); }
@keyframes float-straight { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-0.75rem); } }
.hero-mascot-corner, .cta-band .mascot, .hero-mascot { animation-name: float-straight; }

/* Rider sits above the rail, clear of the step numbers */
.plan-rider { top: -3.4rem; width: 3rem; height: 3rem; }
.plan-track { padding-top: var(--space-6); }
.values { list-style: none; padding: 0; margin: 0 auto var(--space-7); display: grid; gap: var(--space-4); grid-template-columns: repeat(2, 1fr); max-width: 64rem; }
@media (min-width: 48em) { .values { grid-template-columns: repeat(4, 1fr); } }
.values li { display: grid; justify-items: center; text-align: center; gap: var(--space-1); background: var(--color-white); border-radius: var(--radius-card); padding: var(--space-5) var(--space-4); box-shadow: var(--shadow-sm); border: 3px solid var(--color-navy); transition: transform var(--dur-fast) var(--ease-bounce); }
.values li:hover { transform: translateY(-4px); }
.values .value-icon { width: 3.25rem; height: 3.25rem; border-radius: 50%; display: grid; place-items: center; background: var(--color-sky); color: var(--color-navy); margin-bottom: var(--space-2); }
.values .value-icon svg { width: 1.6rem; height: 1.6rem; }
.values li:first-child .value-icon { color: var(--color-red); }
.values strong { font-family: var(--font-heading); font-size: var(--fs-h4); }
.values span:last-child { font-size: var(--fs-small); font-weight: 600; }

.section-head .btn-group { margin-top: var(--space-5); }
.section-head.center .btn-group { justify-content: center; }
.section-head p:last-of-type { margin-bottom: 0; }
.section-head .lead { margin-bottom: var(--space-4); }

/* Header refinement (client feedback 2026-09-15: "feels overwhelming") */
.site-header { box-shadow: none; border-bottom: 2px solid var(--tint-sky-40); }
.site-header .container { min-height: 4.25rem; gap: var(--space-5); }
.brand img { height: 3rem; }
@media (min-width: 64em) {
  .brand img { height: 3.25rem; }
  .site-header .container { display: flex; }
  .brand { order: 1; flex: 0 0 auto; }
  .site-nav { order: 2; flex: 1 1 auto; display: flex; justify-content: center; }
  .header-actions { order: 3; flex: 0 0 auto; }
  .site-nav ul { gap: var(--space-1); }
  .site-nav a { font-weight: 700; font-size: 1rem; padding: var(--space-2) var(--space-3); border-radius: var(--radius-pill); }
  .site-nav a:hover, .site-nav a:focus-visible { background: var(--tint-sky-20); }
  .site-nav a[aria-current="page"] { background: transparent; color: var(--color-blue); box-shadow: inset 0 -3px 0 var(--color-blue); border-radius: 0; }
  .site-header .btn-primary { padding: var(--space-3) var(--space-5); font-size: 0.9375rem; min-height: 2.75rem; box-shadow: none; }
}

/* Eyebrows are labels, not buttons (client feedback 2026-09-15) */
.sticker, .sticker.sky, .on-dark .sticker, .band .sticker, .hero-full .sticker, .page-hero.on-dark .sticker {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: none; border: 0; box-shadow: none; border-radius: 0; padding: 0;
  font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-small);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-blue);
  margin-bottom: var(--space-4); transform: none;
}
.sticker::before { content: ""; width: 1.5rem; height: 3px; border-radius: var(--radius-pill); background: var(--color-red); }
.sticker:hover { transform: none; }
.on-dark .sticker, .band .sticker, .hero-full .sticker, .page-hero.on-dark .sticker { color: var(--color-sky); }
.on-dark .sticker::before, .band .sticker::before, .hero-full .sticker::before, .page-hero.on-dark .sticker::before { background: var(--color-sky); }
.section-head.center .sticker { justify-content: center; }
.section-head.center .sticker::before { display: none; }

/* Chips are tags, not buttons: soft fill, no border, no hard shadow */
.chips li, .chips.promise li { border: 0; box-shadow: none; background: var(--tint-sky-40); color: var(--color-navy); font-weight: 700; }
.on-dark .chips li, .band .chips li { background: var(--color-white); }
.chips li:hover { transform: none; }

/* Eyebrow text on dark backgrounds — beats the earlier .sticker override */
.on-dark .sticker, .band .sticker, .hero-full .sticker, .page-hero.on-dark .sticker { color: var(--color-sky); }

/* =====================================================================
   Above-the-fold pass (2026-09-15): every section fits one laptop screen
   ===================================================================== */
@media (min-width: 48em) { :root { --section-y: var(--space-8); } }   /* 64px desktop */
:root { --fs-h1: clamp(2.5rem, 5.5vw, 4rem); --fs-display: clamp(2.75rem, 6vw, 4.5rem); }
.section-head { max-width: 56rem; margin-bottom: var(--space-6); }
.section-head .btn-group { margin-top: var(--space-4); }

/* Hero: content-sized, no forced viewport height */
.hero-full { min-height: 0; padding-block: var(--space-8); }
.hero-full .motion-toggle { bottom: var(--space-4); }

/* Ticker: slower, no wave above it */
.ticker-track { animation-duration: 75s; }
.ticker { border-top: 0; }

/* Bands */
.band { padding-block: var(--space-8) var(--space-9); }
.band .display { margin-bottom: var(--space-3); }
.band-copy { max-width: 44rem; }
.band .chips { margin: var(--space-4) 0 var(--space-3); }
.cta-band h2 { font-size: var(--fs-h1); }
.cta-band .mascot { width: clamp(5rem, 10vw, 7rem); margin-bottom: var(--space-3); }
.cta-band .lead { margin-bottom: var(--space-5); }

/* Steps */
.plan-track { padding-top: var(--space-5); }

/* Bento: shorter rows */
@media (min-width: 64em) { .bento { grid-auto-rows: 13rem; } }
.tile { min-height: 13rem; }
.tile-body { padding: var(--space-4); }

/* FAQ: two columns on desktop where marked, tighter rows */
.faq summary { padding: var(--space-3) var(--space-4); font-size: var(--fs-body); }
@media (min-width: 56em) { .faq.two-col { grid-template-columns: 1fr 1fr; align-items: start; } }

/* Values strip: tighter */
.values li { padding: var(--space-4) var(--space-3); }
.values .value-icon { width: 2.75rem; height: 2.75rem; margin-bottom: var(--space-1); }

/* Uniform bento — six equal image tiles, no odd sizes (client: "feels messy") */
.bento.uniform { gap: var(--space-4); }

/* =====================================================================
   Fewer boxes (client 2026-09-15: "too many boxes… outside the box")
   Only the bento tiles and pricing tiers keep a container.
   ===================================================================== */

/* Brand values: icon + word, no card */
.values { max-width: 70rem; gap: var(--space-4) var(--space-6); }
.values li { background: none; border: 0; box-shadow: none; padding: var(--space-2) 0; transition: none; }
.values li:hover { transform: none; }
.values .value-icon { width: 4rem; height: 4rem; background: var(--color-sky); margin-bottom: var(--space-2); transition: transform var(--dur-base) var(--ease-bounce); }
.values .value-icon svg { width: 2rem; height: 2rem; }
.values li:hover .value-icon { transform: translateY(-6px) scale(1.08); }
.values strong { font-size: var(--fs-h3); line-height: 1; }
.values span:last-child { font-size: var(--fs-body); font-weight: 600; }

/* Chips → plain inline checklists */
.chips, .chips.promise { gap: var(--space-3) var(--space-6); }
.chips li, .chips.promise li, .on-dark .chips li, .band .chips li {
  background: none; border: 0; box-shadow: none; border-radius: 0; padding: 0;
  display: inline-flex; align-items: center; gap: var(--space-2); font-weight: 700; color: inherit;
}
.chips li svg { width: 1.25rem; height: 1.25rem; color: var(--color-blue); flex: 0 0 auto; }
.on-dark .chips li svg, .band .chips li svg { color: var(--color-sky); }
.on-dark .chips li, .band .chips li { color: var(--color-white); }

/* FAQ → divider list, no cards */
.faq { gap: 0; }
.faq details { background: none; box-shadow: none; border-radius: 0; border-bottom: 2px solid var(--tint-sky-40); }
.faq.two-col { column-gap: var(--space-8); }
.faq summary { padding: var(--space-4) 0; border-radius: 0; font-size: var(--fs-h4); }
.faq summary:hover { background: none; color: var(--color-blue); }
.faq summary::after { background: var(--color-blue); }
.faq .faq-body { padding: 0 0 var(--space-4); }

/* Blob-shaped photos — the "outside the box" move */
.ph.blob { border-radius: 58% 42% 55% 45% / 48% 58% 42% 52%; box-shadow: none; }
.ph.blob img { transition: transform var(--dur-slow) var(--ease-out); }
.ph.blob:hover img { transform: scale(1.06); }
@media (prefers-reduced-motion: no-preference) {
  .ph.blob { animation: morph 12s ease-in-out infinite alternate; }
}
@keyframes morph {
  0%   { border-radius: 58% 42% 55% 45% / 48% 58% 42% 52%; }
  50%  { border-radius: 45% 55% 48% 52% / 58% 42% 58% 42%; }
  100% { border-radius: 52% 48% 42% 58% / 44% 56% 46% 54%; }
}

/* Pricing tiers: keep the container, lose the heaviness */
.tier { box-shadow: none; border: 2px solid var(--tint-sky-40); }

/* Contact / form sections: embed slot stays a dashed placeholder (temporary) */

/* Fewer pills (client 2026-09-15): buttons and tags are rounded rectangles, not pills */
:root { --radius-btn: 0.75rem; }
.btn, .site-header .btn-primary, .motion-toggle, .skip-link, .tier .badge, .ph-label, .nav-toggle { border-radius: var(--radius-btn); }
.site-nav a { border-radius: var(--radius-sm); }

/* =====================================================================
   FUN PASS 2 (2026-09-15): voice, speech bubbles, slide-to-wash, foam,
   button bursts, mascot FAQ replies. StoryBrand beats unchanged.
   ===================================================================== */

/* Speech bubble from the mascot */
.speech {
  position: relative; display: inline-block;
  background: var(--color-white); color: var(--color-navy);
  font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-lead); line-height: 1.25;
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-card);
  box-shadow: var(--shadow-md); max-width: 18rem;
}
.speech::after {
  content: ""; position: absolute; width: 1.25rem; height: 1rem; background: var(--color-white);
  bottom: -0.9rem; left: 2rem; clip-path: polygon(0 0, 100% 0, 30% 100%);
}
.speech.right::after { left: auto; right: 2rem; clip-path: polygon(0 0, 100% 0, 70% 100%); }
@keyframes pop-in { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }
.band .speech { margin-top: var(--space-5); }
.cta-band .speech { margin-bottom: var(--space-5); }

/* Slide-to-wash compare */
.compare-section .section-head { margin-bottom: var(--space-5); }
.compare {
  position: relative; --pos: 50%; aspect-ratio: 16 / 9; max-height: 26rem; width: 100%;
  border-radius: var(--radius-card); overflow: hidden; background: var(--color-navy);
  box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y;
}
.compare picture, .compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare .compare-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 4px; margin-left: -2px;
  background: var(--color-white); pointer-events: none; z-index: 2;
}
.compare-handle img {
  position: absolute; top: 50%; left: 50%; width: 4.5rem; height: 4.5rem; transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35)); inset: auto;
}
.compare-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 3;
  -webkit-appearance: none; appearance: none;
}
.compare-range:focus-visible + .compare-handle { box-shadow: 0 0 0 4px var(--color-sky); }
.compare-tag {
  position: absolute; top: var(--space-4); z-index: 2; pointer-events: none;
  font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--fs-small);
  color: var(--color-white); background: var(--tint-navy-70); padding: var(--space-1) var(--space-3); border-radius: var(--radius-sm);
}
.compare-tag.before { left: var(--space-4); }
.compare-tag.after { right: var(--space-4); }
.compare-hint { text-align: center; margin-top: var(--space-3); font-weight: 700; color: var(--color-blue); }
.compare-hint svg { width: 1.25rem; height: 1.25rem; vertical-align: -0.25em; }

/* Bubble bursts off primary buttons */
.btn-primary { position: relative; overflow: visible; }
.burst {
  position: absolute; width: 0.6rem; height: 0.6rem; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, var(--color-white), var(--color-sky));
  animation: burst 700ms var(--ease-out) forwards;
}
@keyframes burst { from { opacity: 1; transform: translate(0,0) scale(0.6); } to { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1.4); } }

/* FAQ: the mascot answers */
.faq .faq-body { display: flex; gap: var(--space-3); align-items: flex-start; }
.faq .faq-body img { width: 2.25rem; height: 2.25rem; flex: 0 0 auto; margin-top: 0.1rem; }
.faq summary { font-size: var(--fs-h4); }

/* Steps: bigger, fewer words */
.steps.big h3 { font-size: var(--fs-h2); line-height: 1; margin-bottom: var(--space-2); }

@media (prefers-reduced-motion: reduce) {
  .burst { display: none; }
}

/* Fit: slide-to-wash and membership inside one screen */
.compare { aspect-ratio: 21 / 9; max-height: 20rem; }
.compare-hint { display: none; }
.compare-section .section-head { margin-bottom: var(--space-4); }
.band { padding-block: var(--space-7) var(--space-9); }
.band .speech { margin-top: var(--space-3); }

/* Speech text stays navy on dark sections; slider handle mascot positioned */
.on-dark .speech, .band .speech, .hero-full .speech, .cta-band .speech, .page-hero.on-dark .speech { color: var(--color-navy); }
.compare-handle img { inset: auto; top: 50%; left: 50%; right: auto; bottom: auto; width: 4.5rem; height: 4.5rem; }
.compare-handle img { max-width: none; }

/* Calmer hero (client 2026-09-15: "a lot to look at at once") */
.hero-full .hero-bg::after { background: linear-gradient(100deg, rgba(13,43,107,0.96) 0%, rgba(13,43,107,0.88) 60%, rgba(13,43,107,0.7) 100%); }
.hero-full h1 { color: var(--color-white); max-width: 12ch; }
.hero-full .lead { max-width: 28rem; }
.hero-link { color: var(--color-white); font-weight: 800; text-decoration-color: var(--color-sky); text-underline-offset: 0.25em; padding: var(--space-3) var(--space-2); }
.hero-link:hover { text-decoration-color: var(--color-white); }
.hero-full .motion-toggle { width: 2.75rem; height: 2.75rem; padding: 0; justify-content: center; border-radius: 50%; background: var(--tint-sky-40); border-color: transparent; color: var(--color-white); box-shadow: none; }
.hero-full .motion-toggle:hover, .hero-full .motion-toggle:focus-visible { background: var(--color-white); color: var(--color-navy); }
.ticker li { gap: var(--space-5); font-size: var(--fs-body); letter-spacing: 0.06em; }
.ticker li::after { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--color-white); opacity: 0.7; }
.ticker ul { gap: var(--space-5); padding-inline-end: var(--space-5); }

/* Membership band: copy left, mascot + speech right (one focal point) */
.band-grid { display: grid; gap: var(--space-6); align-items: center; }
@media (min-width: 56em) { .band-grid { grid-template-columns: 1.2fr 0.8fr; } }
.band-mascot { position: relative; display: grid; justify-items: center; }
.band-mascot img { width: clamp(10rem, 22vw, 16rem); height: auto; animation: float-straight 5s ease-in-out infinite; filter: drop-shadow(0 16px 28px rgba(0,0,0,0.3)); }
.band-mascot .speech { position: absolute; top: -8%; right: 55%; margin: 0; max-width: 14rem; font-size: var(--fs-body); padding: var(--space-3) var(--space-4); }
@media (max-width: 55.99em) { .band-mascot { display: none; } }
.band .display { font-size: clamp(2.5rem, 5vw, 3.75rem); }

/* Blob photos: round, not oval */
.ph.blob, .ph.blob-b { aspect-ratio: 1 / 1; max-width: 26rem; margin-inline: auto; border-radius: 52% 48% 50% 50% / 50% 52% 48% 50%; }
@keyframes morph {
  0%   { border-radius: 52% 48% 50% 50% / 50% 52% 48% 50%; }
  50%  { border-radius: 48% 52% 52% 48% / 52% 48% 52% 48%; }
  100% { border-radius: 50% 50% 48% 52% / 48% 50% 52% 50%; }
}
.text-link { font-weight: 800; color: var(--color-navy); text-decoration-color: var(--color-blue); text-underline-offset: 0.25em; padding: var(--space-3) var(--space-2); }

/* Menu board — styled after the sign in the client's brand guide */
.menu-board { background: var(--color-navy); border-radius: var(--radius-card); padding: var(--space-4); box-shadow: var(--shadow-lg); color: var(--color-white); }
.menu-board > ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.menu-row { display: grid; grid-template-columns: 3rem 1fr auto; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-4); border-radius: var(--radius-img); }
.menu-row.express { background: var(--color-red); }
.menu-row.deluxe { background: var(--color-blue); }
.menu-row.ultimate { background: var(--color-navy); border: 2px solid var(--tint-sky-40); }
.menu-row img { width: 3rem; height: 3rem; }
.menu-text { min-width: 0; }
.menu-text strong { display: block; font-family: var(--font-heading); font-size: var(--fs-h4); line-height: 1.1; }
.menu-text span { display: block; font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; }
.menu-inc { list-style: none; margin: var(--space-2) 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-1) var(--space-4); font-size: var(--fs-small); font-weight: 600; opacity: 0.95; }
.menu-inc li::before { content: "✓ "; }
.menu-price { font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-h3); background: var(--color-white); color: var(--color-navy); padding: var(--space-1) var(--space-3); border-radius: var(--radius-sm); line-height: 1.2; }
.menu-row.ultimate .menu-price { background: var(--color-sky); }
.menu-foot { margin: var(--space-3) 0 0; text-align: center; font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-small); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-sky); }
.menu-note { text-align: center; margin: var(--space-3) 0 0; }
@media (max-width: 40em) { .menu-row { grid-template-columns: 2.5rem 1fr auto; padding: var(--space-3); } .menu-row img { width: 2.5rem; height: 2.5rem; } .menu-price { font-size: var(--fs-h4); } }

/* Sparkles from the logo (client 2026-09-15: bubbles and sparkles, not hearts) */
.sparkle { position: absolute; color: var(--color-sky); width: 1.5rem; height: 1.5rem; z-index: 3; animation: twinkle 2.6s ease-in-out infinite; }
.sparkle svg { width: 100%; height: 100%; display: block; }
.sparkle.s1 { top: 8%; right: 12%; width: 2rem; height: 2rem; }
.sparkle.s2 { top: 30%; right: 2%; animation-delay: 0.8s; }
.band-mascot .sparkle.s1 { top: 0; right: 10%; }
@keyframes twinkle { 0%, 100% { opacity: 0.4; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.1); } }
.menu-foot { display: flex; align-items: center; justify-content: center; gap: var(--space-2); }
.menu-foot svg { width: 0.9rem; height: 0.9rem; color: var(--color-sky); }

/* Menu board: single + unlimited price per row */
.menu-row { grid-template-columns: 3rem 1fr auto; }
.menu-prices { display: flex; gap: var(--space-2); align-items: stretch; }
.menu-price { display: grid; justify-items: center; text-align: center; min-width: 4.75rem; padding: var(--space-1) var(--space-2); text-decoration: none; }
.menu-price small { display: block; font-family: var(--font-body); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; line-height: 1; margin-bottom: 2px; }
.menu-price em { font-style: normal; font-size: var(--fs-small); font-weight: 700; }
.menu-price.unlimited { background: var(--color-sky); color: var(--color-navy); }
.menu-price.unlimited:hover, .menu-price.unlimited:focus-visible { background: var(--color-white); }
.menu-row.ultimate .menu-price { background: var(--color-white); }
.menu-row.ultimate .menu-price.unlimited { background: var(--color-sky); }
@media (max-width: 40em) { .menu-row { grid-template-columns: 1fr auto; } .menu-row img { display: none; } .menu-price { min-width: 4rem; font-size: var(--fs-h4); } }

/* =====================================================================
   Steps as a scene: three bubble stations on a road, mascot drives along
   ===================================================================== */
.plan-track { --bubble: 9.5rem; --road-y: calc(var(--bubble) + 1.25rem); padding-top: 0; }
.stations { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-5); position: relative; z-index: 2; }
@media (min-width: 48em) { .stations { grid-template-columns: repeat(3, 1fr); } }
.stations li { text-align: center; display: grid; justify-items: center; }
.stations h3 { font-family: var(--font-heading); font-size: var(--fs-h3); margin: calc(var(--space-6) + 1rem) 0 var(--space-1); line-height: 1; }
.stations p { margin: 0; max-width: 16rem; }
.station-bubble {
  position: relative; width: var(--bubble); height: var(--bubble); border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 32% 28%, var(--color-white) 0%, var(--color-sky) 38%, var(--color-blue) 100%);
  box-shadow: inset -0.6rem -0.6rem 1.2rem rgba(13,43,107,0.18), 0 14px 28px var(--tint-navy-16);
  color: var(--color-navy); transition: transform var(--dur-base) var(--ease-bounce);
}
.station-bubble::before { content: ""; position: absolute; top: 14%; left: 20%; width: 26%; height: 12%; border-radius: 50%; background: rgba(255,255,255,0.85); transform: rotate(-25deg); }
.station-bubble svg { width: 44%; height: 44%; color: var(--color-navy); }
.station-bubble .num {
  position: absolute; top: -0.25rem; left: -0.25rem; width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--color-red); color: var(--color-white); border: 3px solid var(--color-white);
  font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-h4); display: grid; place-items: center; line-height: 1;
}
.stations li:hover .station-bubble { transform: translateY(-8px) scale(1.04); }

.road { display: none; position: absolute; left: 4%; right: 4%; top: var(--road-y); height: 1.1rem; border-radius: var(--radius-pill); background: var(--color-navy); z-index: 1; }
.road::after { content: ""; position: absolute; left: 1rem; right: 1rem; top: 50%; height: 3px; margin-top: -1.5px; background: repeating-linear-gradient(90deg, var(--color-white) 0 1.25rem, transparent 1.25rem 2.25rem); opacity: 0.85; border-radius: 2px; }
.road-fill { position: absolute; inset: 0; width: calc(var(--progress) * 100%); background: var(--color-blue); border-radius: var(--radius-pill); transition: width 120ms linear; }
.road .plan-rider { position: absolute; top: 50%; left: calc(var(--progress) * 100%); width: 4.25rem; height: 4.25rem; transform: translate(-50%, -62%); transition: left 120ms linear; filter: drop-shadow(0 8px 12px var(--tint-navy-16)); z-index: 3; }
@media (min-width: 48em) { .road { display: block; } }

/* Menu inclusions readable on every board; steps text clear of the road */
.menu-inc { display: grid; grid-template-columns: 1fr 1fr; gap: 2px var(--space-3); margin-top: var(--space-2); font-size: 0.8rem; line-height: 1.35; }
.menu-inc li::before { content: "✓ "; opacity: 0.8; }
.menu-row { align-items: start; padding-block: var(--space-3); }
.menu-row img { margin-top: 2px; }
.menu-prices { align-self: center; }
.stations h3 { margin-top: calc(var(--space-7) + 1rem); }
.stations p { max-width: 18rem; }

/* Menu board: expand-in-place inclusions (no lightbox) */
.menu-more { margin-top: var(--space-1); }
.menu-more summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: var(--space-1); font-size: var(--fs-small); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.6); text-underline-offset: 0.2em; border-radius: var(--radius-sm); }
.menu-more summary::-webkit-details-marker { display: none; }
.menu-more summary::after { content: ""; width: 0.6rem; height: 0.6rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform var(--dur-fast); }
.menu-more[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.menu-more summary:hover { text-decoration-color: currentColor; }
.menu-more .menu-inc { margin-top: var(--space-2); }
.menu-row { align-items: center; }

/* Menu row: header line + full-width inclusions underneath */
.menu-row { grid-template-columns: 3rem 1fr auto; grid-template-areas: "icon text prices" "inc inc inc"; align-items: center; row-gap: 0; }
.menu-row img { grid-area: icon; margin: 0; }
.menu-text { grid-area: text; }
.menu-prices { grid-area: prices; }
.menu-row .menu-more, .menu-row > .menu-inc { grid-area: inc; }
.menu-more { margin-top: var(--space-3); }
.menu-more summary { font-size: var(--fs-body); padding: var(--space-1) 0; min-height: 2.5rem; }
.menu-more .menu-inc, .menu-row > .menu-inc { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6); margin: var(--space-2) 0 var(--space-1); padding-top: var(--space-3); border-top: 1px solid rgba(255,255,255,0.35); font-size: var(--fs-body); font-weight: 600; line-height: 1.4; }
.menu-inc li { white-space: nowrap; }
.menu-inc li::before { content: "✓ "; opacity: 0.85; }
@media (max-width: 40em) { .menu-row { grid-template-columns: 1fr auto; grid-template-areas: "text prices" "inc inc"; } .menu-row img { display: none; } .menu-inc li { white-space: normal; } }

/* Price tags: breathing room, /mo inline */
.menu-price { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; padding: 0.6rem 0.9rem 0.65rem; min-width: 5.5rem; line-height: 1; }
.menu-price small { margin: 0; font-size: 0.6rem; letter-spacing: 0.1em; opacity: 0.7; }
.menu-price b { font-weight: 800; font-size: var(--fs-h4); white-space: nowrap; }
.menu-price em { font-size: 0.75rem; font-weight: 700; margin-left: 1px; }
.menu-prices { gap: var(--space-2); align-self: center; }
.menu-row { row-gap: 0; }

/* Hero: warmer, more anticipation */
.hero-kicker { font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-body); color: var(--color-sky); letter-spacing: 0.02em; margin-bottom: var(--space-3); display: inline-flex; align-items: center; gap: var(--space-2); }
.hero-kicker::before { content: ""; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--color-red); box-shadow: 0 0 0 4px rgba(225,29,46,0.3); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(225,29,46,0.5); } 100% { box-shadow: 0 0 0 10px rgba(225,29,46,0); } }
.hero-full .hero-bg::after {
  background:
    radial-gradient(38rem 28rem at 78% 40%, rgba(124,198,255,0.45) 0%, rgba(124,198,255,0) 70%),
    radial-gradient(22rem 22rem at 92% 0%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(100deg, rgba(13,43,107,0.97) 0%, rgba(13,43,107,0.9) 55%, rgba(30,108,240,0.75) 100%);
}
.hero-full h1 { max-width: 13ch; }
.hero-full .lead { max-width: 30rem; }
@media (prefers-reduced-motion: reduce) { .hero-kicker::before { animation: none; } }

/* =====================================================================
   Hero with the real photo (2026-09-15)
   ===================================================================== */
.hero-full { min-height: min(84vh, 46rem); padding-block: var(--space-8); }
.hero-full .hero-bg img { object-position: 70% 50%; }
.hero-full .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(13,43,107,0.94) 0%, rgba(13,43,107,0.88) 34%, rgba(13,43,107,0.55) 52%, rgba(13,43,107,0.08) 72%, rgba(13,43,107,0) 100%),
    linear-gradient(180deg, rgba(13,43,107,0.25) 0%, rgba(13,43,107,0) 30%, rgba(13,43,107,0) 70%, rgba(13,43,107,0.35) 100%);
}
@media (min-width: 56em) { .hero-full .hero-inner { grid-template-columns: minmax(0, 34rem) 1fr; } }
.hero-full h1 { max-width: 12ch; }

/* Mobile: photo on top, copy on navy below */
@media (max-width: 55.99em) {
  .hero-full { min-height: 0; padding-block: 0 var(--space-7); display: block; }
  .hero-full .hero-bg { position: relative; aspect-ratio: 4 / 5; max-height: 34rem; }
  .hero-full .hero-bg::after { background: linear-gradient(180deg, rgba(13,43,107,0) 55%, var(--color-navy) 100%); }
  .hero-full .hero-inner { margin-top: calc(-1 * var(--space-7)); }
  .hero-full .bubbles { display: none; }
}
.ticker { position: relative; }
.ticker-toggle { position: absolute; right: var(--space-3); top: 50%; transform: translateY(-50%); z-index: 5; width: 2.25rem; height: 2.25rem; padding: 0; justify-content: center; border-radius: 50%; background: var(--color-white); color: var(--color-red); border: 0; box-shadow: none; min-height: 0; }
.ticker-toggle:hover, .ticker-toggle:focus-visible { background: var(--color-navy); color: var(--color-white); }
.ticker-toggle svg { width: 0.9rem; height: 0.9rem; }
.ticker-track { padding-right: 3.5rem; }

.ticker-toggle { left: auto; bottom: auto; }

/* =====================================================================
   Hero v3: clean split — navy copy panel | bright photo, foam edge between
   ===================================================================== */
.hero-full { background: var(--color-navy); min-height: min(82vh, 44rem); padding-block: var(--space-8); overflow: hidden; }
.hero-full .hero-bg { position: absolute; inset: 0 0 0 auto; width: 54%; z-index: 0; }
.hero-full .hero-bg img { object-position: 62% 50%; }
.hero-full .hero-bg::after { background: linear-gradient(180deg, rgba(13,43,107,0) 78%, rgba(13,43,107,0.25) 100%); }
@media (min-width: 56em) {
  .hero-full .hero-inner { grid-template-columns: minmax(0, 32rem) 1fr; }
}
.hero-full .hero-copy { position: relative; z-index: 3; }
.hero-full h1 { max-width: 11ch; }
.hero-full .lead { max-width: 28rem; }
.hero-full .bubbles { display: none; }

/* Mobile: bright photo on top, foam edge into the navy copy panel */
@media (max-width: 55.99em) {
  .hero-full .hero-bg { position: relative; width: 100%; inset: auto; aspect-ratio: 4 / 5; max-height: 32rem; }
  .hero-full .hero-bg::after { background: none; }
  .hero-foam { top: auto; bottom: -1px; left: 0; right: 0; width: auto; height: clamp(2.5rem, 8vw, 4rem); }
  .hero-foam svg { position: static; width: 100%; height: 100%; min-width: 0; transform: none; }
  .hero-full .hero-inner { margin-top: var(--space-5); }
  .hero-buddy { margin-top: var(--space-5); }
}

/* Hero foam edge: dedicated vertical SVG on desktop, horizontal on mobile */
.hero-foam svg { position: static; transform: none; min-width: 0; width: 100%; height: 100%; display: block; fill: var(--color-navy); }
@media (max-width: 55.99em) { .hero-full { padding-top: 0; } }

/* =====================================================================
   Hero v4: full-bleed photo, royal-blue transparent wash, big headline
   ===================================================================== */
.hero-full { background: var(--color-blue); min-height: min(86vh, 48rem); padding-block: var(--space-9); }
.hero-full .hero-bg { position: absolute; inset: 0; width: auto; }
.hero-full .hero-bg img { object-position: 72% 50%; }
.hero-full .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(30,108,240,0.94) 0%, rgba(30,108,240,0.86) 38%, rgba(30,108,240,0.45) 60%, rgba(30,108,240,0.12) 100%),
    linear-gradient(180deg, rgba(30,108,240,0.15) 0%, rgba(30,108,240,0) 40%);
}
@media (min-width: 56em) { .hero-full .hero-inner { grid-template-columns: minmax(0, 40rem) 1fr; } }
.hero-full h1 { font-size: clamp(3rem, 6.6vw, 5.75rem); line-height: 0.95; letter-spacing: -0.025em; max-width: none; color: var(--color-white); text-shadow: 0 2px 24px rgba(13,43,107,0.35); }
.hero-full .lead { max-width: 30rem; font-size: var(--fs-lead); text-shadow: 0 1px 12px rgba(13,43,107,0.35); }
.hero-kicker { color: var(--color-white); }
.hero-kicker::before { background: var(--color-red); box-shadow: 0 0 0 4px rgba(255,255,255,0.35); }
.hero-full .btn-primary { border-color: var(--color-white); }
.hero-link { color: var(--color-white); text-decoration-color: var(--color-white); }

/* Mobile: photo on top with a blue fade into the copy panel */
@media (max-width: 55.99em) {
  .hero-full { padding-top: 0; background: var(--color-blue); }
  .hero-full .hero-bg { position: relative; aspect-ratio: 4 / 5; max-height: 32rem; }
  .hero-full .hero-bg::after { background: linear-gradient(180deg, rgba(30,108,240,0) 60%, var(--color-blue) 100%); }
  .hero-full h1 { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .hero-full .hero-inner { margin-top: calc(-1 * var(--space-6)); }
}

/* Hero v4 tune: two-line headline, fits one screen, sparkle anchored to the buddy */
.hero-full { min-height: 0; padding-block: var(--space-8); }
@media (min-width: 56em) { .hero-full .hero-inner { grid-template-columns: minmax(0, 46rem) 1fr; } }
.hero-full h1 { font-size: clamp(3rem, 6.2vw, 5.25rem); }

/* =====================================================================
   Bubble helper — floating FAQ widget, lower right
   ===================================================================== */
.helper { position: fixed; right: var(--space-4); bottom: var(--space-4); z-index: 900; display: grid; justify-items: end; gap: var(--space-2); }
.helper-btn { width: 4.25rem; height: 4.25rem; border-radius: 50%; border: 0; padding: 0; background: var(--color-white); box-shadow: var(--shadow-lg); display: grid; place-items: center; cursor: pointer; transition: transform var(--dur-base) var(--ease-bounce); animation: float-straight 4s ease-in-out infinite; }
.helper-btn img { width: 3.4rem; height: 3.4rem; }
.helper-btn:hover, .helper-btn:focus-visible { transform: scale(1.08); animation-play-state: paused; }
.helper-btn[aria-expanded="true"] { animation: none; }
.helper-tease { position: relative; margin: 0 0.5rem 0 0; background: var(--color-white); color: var(--color-navy); font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-small); padding: var(--space-2) var(--space-4); border-radius: var(--radius-card); box-shadow: var(--shadow-md); white-space: nowrap; animation: pop-in 500ms var(--ease-bounce) both; animation-delay: 1.2s; }
.helper-tease::after { content: ""; position: absolute; right: 1.2rem; bottom: -0.55rem; width: 0.9rem; height: 0.65rem; background: var(--color-white); clip-path: polygon(0 0, 100% 0, 70% 100%); }
.helper-tease[hidden] { display: none; }
.helper-panel { width: min(22rem, calc(100vw - 2rem)); background: var(--color-white); color: var(--color-navy); border-radius: var(--radius-card); box-shadow: var(--shadow-lg); overflow: hidden; margin-bottom: var(--space-2); animation: pop-in 320ms var(--ease-bounce) both; transform-origin: bottom right; }
.helper-panel[hidden] { display: none; }
.helper-head { display: flex; align-items: center; gap: var(--space-3); background: var(--color-navy); color: var(--color-white); padding: var(--space-3) var(--space-4); }
.helper-head img { width: 2.5rem; height: 2.5rem; }
.helper-head strong { display: block; font-family: var(--font-heading); font-size: var(--fs-h4); line-height: 1.1; }
.helper-head span { font-size: var(--fs-small); opacity: 0.85; }
.helper-close { margin-left: auto; width: 2.25rem; height: 2.25rem; border: 0; border-radius: 50%; background: rgba(255,255,255,0.15); color: var(--color-white); display: grid; place-items: center; }
.helper-close svg { width: 1.1rem; height: 1.1rem; display: block; }
.helper-close:hover, .helper-close:focus-visible { background: var(--color-white); color: var(--color-navy); }
.helper-body { padding: var(--space-4); max-height: min(50vh, 24rem); overflow-y: auto; background: var(--color-cloud); }
.helper-msg { display: flex; gap: var(--space-2); align-items: flex-end; margin: 0 0 var(--space-3); font-size: var(--fs-small); }
.helper-msg img { width: 1.75rem; height: 1.75rem; flex: 0 0 auto; }
.helper-msg span { background: var(--color-white); padding: var(--space-2) var(--space-3); border-radius: var(--radius-img); border-bottom-left-radius: 4px; line-height: 1.45; }
.helper-msg.you { justify-content: flex-end; }
.helper-msg.you span { background: var(--color-blue); color: var(--color-white); border-radius: var(--radius-img); border-bottom-right-radius: 4px; }
.helper-qs { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }
.helper-qs button { width: 100%; text-align: left; background: var(--color-white); color: var(--color-navy); border: 2px solid var(--tint-sky-40); border-radius: var(--radius-img); padding: var(--space-2) var(--space-3); font-weight: 700; font-size: var(--fs-small); cursor: pointer; transition: border-color var(--dur-fast), transform var(--dur-fast) var(--ease-bounce); }
.helper-qs button:hover, .helper-qs button:focus-visible { border-color: var(--color-blue); transform: translateX(3px); }
.helper-answer[hidden] { display: none; }
.helper-back { background: none; border: 0; color: var(--color-blue); font-weight: 800; text-decoration: underline; text-underline-offset: 0.2em; padding: var(--space-2) 0; cursor: pointer; }
.helper-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-3) var(--space-4); border-top: 2px solid var(--tint-sky-40); }
.helper-foot .btn { padding: var(--space-3) var(--space-4); font-size: var(--fs-small); min-height: 2.5rem; }
.helper-foot a:not(.btn) { font-weight: 800; }
@media (max-width: 40em) { .helper { right: var(--space-3); bottom: var(--space-3); } .helper-panel { width: calc(100vw - 1.5rem); } .helper-body { max-height: 46vh; } }
@media (prefers-reduced-motion: reduce) { .helper-btn, .helper-tease, .helper-panel { animation: none; } }

/* Helper stacks: tease, panel, then the button at the bottom */
.helper-tease { order: 1; }
.helper-panel { order: 2; margin-bottom: 0; }
.helper-btn { order: 3; }

/* Hero v4.1: taller, clearer photo on the right */
.hero-full { min-height: min(92vh, 56rem); padding-block: var(--space-10); }
.hero-full .hero-bg img { object-position: 78% 45%; }
.hero-full .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(30,108,240,0.94) 0%, rgba(30,108,240,0.88) 30%, rgba(30,108,240,0.55) 46%, rgba(30,108,240,0.12) 58%, rgba(30,108,240,0) 68%),
    linear-gradient(180deg, rgba(30,108,240,0.12) 0%, rgba(30,108,240,0) 35%);
}
.hero-full h1 { font-size: clamp(3.25rem, 7.2vw, 6.25rem); }
@media (min-width: 56em) { .hero-full .hero-inner { grid-template-columns: minmax(0, 38rem) 1fr; } }

/* Hero eyebrow: sparkle stamp, spaced uppercase, no pulsing dot */
.hero-kicker { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-white); margin-bottom: var(--space-4); }
.hero-kicker::before { display: none; }
.hero-kicker svg { width: 1rem; height: 1rem; color: var(--color-sky); animation: twinkle 2.6s ease-in-out infinite; }
.hero-kicker span { font-family: var(--font-body); font-weight: 700; letter-spacing: 0.04em; text-transform: none; opacity: 0.9; padding-left: var(--space-2); border-left: 2px solid rgba(255,255,255,0.5); }

.hero-full h1 { font-size: clamp(3rem, 6.4vw, 5.5rem); }
@media (min-width: 56em) { .hero-full .hero-inner { grid-template-columns: minmax(0, 42rem) 1fr; } }

.hero-full h1 { font-size: clamp(2.75rem, 6vw, 5.1rem); }
@media (min-width: 56em) { .hero-full .hero-inner { grid-template-columns: minmax(0, 46rem) 1fr; } }

.hero-full h1 { font-size: clamp(2.6rem, 5.6vw, 4.75rem); }
@media (min-width: 56em) { .hero-full .hero-inner { grid-template-columns: minmax(0, 50rem) 1fr; } }

/* Slower, gentler bubble bursts off the red buttons */
.burst { animation-duration: 1600ms; animation-timing-function: ease-out; }

/* Buttons are pills again — the only pills on the site (client 2026-09-15) */
.btn, .site-header .btn-primary, .helper-foot .btn { border-radius: var(--radius-pill); }
.motion-toggle, .ticker-toggle, .helper-btn, .helper-close { border-radius: 50%; }

/* Menu board rows and price badges shaped like the brand-guide sign */
.menu-board { border-radius: 2rem; padding: var(--space-4) var(--space-4) var(--space-3); }
.menu-row { border-radius: 2.75rem; padding: var(--space-3) var(--space-4) var(--space-3) var(--space-3); }
.menu-row img { width: 3.25rem; height: 3.25rem; }
.menu-price { border-radius: var(--radius-pill); padding: 0.55rem 1.1rem 0.6rem; min-width: 5.75rem; }
.menu-row.ultimate { border: 2px solid var(--tint-sky-40); }
.menu-more { padding-left: var(--space-3); }
.menu-more .menu-inc { margin-right: var(--space-3); }
.menu-foot { gap: var(--space-2); color: var(--color-white); }
.menu-foot svg { width: 1rem; height: 1rem; color: var(--color-red); }

/* Menu prices stacked: two equal pills, label left, price right */
.menu-prices { flex-direction: column; align-items: stretch; gap: var(--space-2); align-self: center; }
.menu-price { flex-direction: row; justify-content: space-between; align-items: baseline; gap: var(--space-3); min-width: 10.5rem; padding: 0.45rem 1rem 0.5rem 1.1rem; }
.menu-price small { font-size: 0.65rem; letter-spacing: 0.12em; opacity: 0.8; }
.menu-price b { font-size: 1.2rem; }
.menu-row { grid-template-areas: "icon text prices" "inc inc inc"; }
@media (max-width: 40em) { .menu-price { min-width: 9rem; } .menu-price b { font-size: 1.05rem; } }

/* Membership band v2: royal-blue wash like the hero, straight edges, mascot + speech side by side */
.band { background: var(--color-blue); padding-block: var(--space-9); }
.band .display .accent { color: var(--color-white); }
.band .sticker, .band .sticker { color: var(--color-white); }
.band .sticker::before { background: var(--color-white); }
.band .btn-secondary { color: var(--color-white); border-color: var(--color-white); }
.band .btn-secondary:hover, .band .btn-secondary:focus-visible { background: var(--color-white); color: var(--color-blue); }
.band-mascot { display: flex; align-items: center; justify-content: flex-end; gap: var(--space-4); }
.band-mascot .speech { position: relative; top: auto; right: auto; margin: 0; max-width: 15rem; order: 1; }
.band-mascot .speech.right::after { left: auto; right: -0.7rem; top: 1.1rem; bottom: auto; width: 1rem; height: 1.1rem; clip-path: polygon(0 0, 0 100%, 100% 40%); }
.band-mascot img { order: 2; width: clamp(9rem, 18vw, 13rem); }
.band-mascot .sparkle.s1 { top: -0.5rem; right: 6%; }

/* Brand values laid out like the brand guide: icon left, uppercase word, descriptor under */
.values { grid-template-columns: repeat(2, 1fr); gap: var(--space-5) var(--space-6); max-width: 64rem; }
@media (min-width: 48em) { .values { grid-template-columns: repeat(4, 1fr); } }
.values li { display: grid; grid-template-columns: 2.5rem 1fr; grid-template-rows: auto auto; column-gap: var(--space-3); row-gap: 0; justify-items: start; text-align: left; align-items: start; padding: 0; }
.values .value-icon { grid-row: 1 / span 2; width: 2.5rem; height: 2.5rem; background: none; color: var(--color-blue); margin: 0; }
.values .value-icon svg { width: 2.5rem; height: 2.5rem; }
.values .value-icon.red { color: var(--color-red); }
.values li:hover .value-icon { transform: translateY(-3px); }
.values strong { font-family: var(--font-body); font-weight: 800; font-size: var(--fs-body); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.2; }
.values span:last-child { font-size: var(--fs-body); font-weight: 500; line-height: 1.35; max-width: 11rem; }

/* =====================================================================
   Cutesy pass (2026-09-15): peeking tiles, greeters, lost bubble, blue heroes
   ===================================================================== */

/* Bento: mascot peeks up from the corner on hover / focus */
.tile { overflow: hidden; }
.tile-peek { position: absolute; right: 6%; bottom: 0; width: 34%; max-width: 6.5rem; height: auto; z-index: 1; transform: translateY(110%); transition: transform var(--dur-slow) var(--ease-bounce); pointer-events: none; filter: drop-shadow(0 6px 10px rgba(13,43,107,0.35)); }
.tile:hover .tile-peek, .tile:focus-within .tile-peek { transform: translateY(18%); }
.tile::after { z-index: 0; }
.tile .tile-body { z-index: 2; }
@media (hover: none) { .tile-peek { transform: translateY(40%); opacity: 0.95; } }

/* Greeter beside forms */
.greeter { display: flex; align-items: flex-end; gap: var(--space-3); margin-bottom: var(--space-5); }
.greeter img { width: 4.5rem; height: 4.5rem; flex: 0 0 auto; animation: float-straight 5s ease-in-out infinite; filter: drop-shadow(0 8px 14px var(--tint-navy-16)); }
.greeter .speech { position: relative; margin: 0 0 var(--space-4); max-width: 18rem; font-size: var(--fs-body); box-shadow: var(--shadow-sm); }
.greeter .speech::after { left: -0.7rem; bottom: auto; top: 1rem; width: 1rem; height: 1.1rem; clip-path: polygon(100% 0, 100% 100%, 0 40%); }
.on-dark .greeter .speech, .greeter .speech { color: var(--color-navy); }

/* 404: lost bubble */
.lost { position: relative; display: inline-grid; justify-items: center; margin: 0 auto var(--space-4); }
.lost-mascot { width: 9rem; height: 9rem; animation: lost-look 3.2s ease-in-out infinite; }
.lost-q { position: relative; margin: 0 0 var(--space-3) 4rem; font-size: var(--fs-body); }
.lost-q::after { left: 1rem; }
.lost .sparkle.s1 { top: 2.4rem; left: -0.5rem; right: auto; width: 1.2rem; height: 1.2rem; }
.lost .sparkle.s2 { top: 4.5rem; right: -1rem; width: 0.9rem; height: 0.9rem; }
@keyframes lost-look { 0%, 100% { transform: translateX(-0.6rem) rotate(0); } 50% { transform: translateX(0.6rem) rotate(0); } }
.page-hero.on-dark .lost-q, .page-hero.on-dark .lost-q { color: var(--color-navy); }

/* Interior heroes: same royal-blue wash as the homepage, not navy */
.page-hero.on-dark { background: var(--color-blue); }
.page-hero.on-dark .hero-bg::after { background: linear-gradient(100deg, rgba(30,108,240,0.94) 0%, rgba(30,108,240,0.82) 50%, rgba(30,108,240,0.45) 100%); }
.page-hero.on-dark .sticker, .page-hero.on-dark .sticker { color: var(--color-white); }
.page-hero.on-dark .sticker::before { background: var(--color-white); }
.page-hero.on-dark .accent { color: var(--color-white); }
.page-hero.on-dark .btn-secondary:hover, .page-hero.on-dark .btn-secondary:focus-visible { color: var(--color-blue); }
.page-hero.on-dark .bubbles { display: none; }

@media (prefers-reduced-motion: reduce) { .tile-peek { transform: translateY(40%); transition: none; } .lost-mascot, .greeter img { animation: none; } }

/* Peek mascot must not inherit the tile photo sizing */
.tile img.tile-peek { position: absolute; inset: auto; left: auto; right: 5%; bottom: 0; width: 32%; max-width: 6rem; height: auto; object-fit: contain; z-index: 1; }

/* =====================================================================
   Cutesy motion pass (2026-09-15). All of it obeys reduced-motion + pause.
   ===================================================================== */

/* 1. Hero headline words pop in one by one (JS wraps words in .w) */
.hero-full h1 .w { display: inline-block; animation: word-in 600ms var(--ease-bounce) both; }
@keyframes word-in { from { opacity: 0; transform: translateY(0.4em) scale(0.92); } to { opacity: 1; transform: none; } }

/* 2. Bouncy reveals for stations and tiles */
.js .stations li.reveal, .js .bento .tile.reveal { transform: translateY(1.5rem) scale(0.9); transition: opacity var(--dur-slow) var(--ease-out), transform 700ms var(--ease-bounce); }
.js .stations li.reveal.is-visible, .js .bento .tile.reveal.is-visible { transform: none; }
.js .stations li:nth-child(2).reveal { transition-delay: 120ms; }
.js .stations li:nth-child(3).reveal { transition-delay: 240ms; }

/* 3. Suds trail behind the road rider */
.sud { position: absolute; top: 50%; width: 0.7rem; height: 0.7rem; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, var(--color-sky)); pointer-events: none; animation: sud-rise 1100ms ease-out forwards; z-index: 2; }
@keyframes sud-rise { from { opacity: 0.95; transform: translate(-50%, -50%) scale(0.6); } to { opacity: 0; transform: translate(-50%, -260%) scale(1.3); } }

/* 4. Shine sweep on primary buttons */
.btn-primary { overflow: hidden; }
.btn-primary::before { content: ""; position: absolute; top: -20%; bottom: -20%; left: -40%; width: 30%; background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%); transform: skewX(-15deg); opacity: 0; pointer-events: none; }
.btn-primary:hover::before, .btn-primary:focus-visible::before { animation: shine 900ms ease-out; }
@keyframes shine { 0% { left: -40%; opacity: 1; } 100% { left: 120%; opacity: 0; } }
.burst { overflow: visible; }

/* 5. Sparkle on accent words */
.accent { position: relative; }
.accent::after { content: ""; position: absolute; top: -0.2em; right: -0.55em; width: 0.45em; height: 0.45em; background: currentColor; opacity: 0.9;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1.5c.6 5.6 4.9 9.9 10.5 10.5C16.9 12.6 12.6 16.9 12 22.5 11.4 16.9 7.1 12.6 1.5 12 7.1 11.4 11.4 7.1 12 1.5z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1.5c.6 5.6 4.9 9.9 10.5 10.5C16.9 12.6 12.6 16.9 12 22.5 11.4 16.9 7.1 12.6 1.5 12 7.1 11.4 11.4 7.1 12 1.5z'/></svg>") center / contain no-repeat;
  animation: twinkle 2.4s ease-in-out infinite; }
.hero-full h1 .accent::after, .band .display .accent::after { color: var(--color-sky); }

/* 6. Menu board mascot hops on row hover */
.menu-row img { transition: transform var(--dur-base) var(--ease-bounce); }
.menu-row:hover img { transform: translateY(-6px) scale(1.08); }

/* 7. Slide-to-wash: Ta-da when fully clean */
.compare-tada { position: absolute; left: 50%; top: 14%; transform: translateX(-50%) scale(0.6); opacity: 0; z-index: 4; pointer-events: none;
  background: var(--color-white); color: var(--color-navy); font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-h3);
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-card); box-shadow: var(--shadow-lg); transition: transform var(--dur-base) var(--ease-bounce), opacity var(--dur-fast); }
.compare.is-clean .compare-tada { transform: translateX(-50%) scale(1); opacity: 1; }
.compare-tada .sparkle { position: absolute; width: 1.2rem; height: 1.2rem; color: var(--color-blue); }
.compare-tada .sparkle.a { top: -0.9rem; left: -0.6rem; }
.compare-tada .sparkle.b { bottom: -0.8rem; right: -0.7rem; animation-delay: 0.6s; }

/* 8. FAQ mascot pops in when an answer opens */
.faq details[open] .faq-body img { animation: pop-in 450ms var(--ease-bounce) both; }

/* 9. Helper button squishes now and then */
.helper-btn { animation: float-straight 4s ease-in-out infinite, helper-squish 7s ease-in-out infinite; }
@keyframes helper-squish { 0%, 88%, 100% { scale: 1 1; } 92% { scale: 1.12 0.9; } 96% { scale: 0.94 1.06; } }

@media (prefers-reduced-motion: reduce) {
  .hero-full h1 .w { animation: none; }
  .js .stations li.reveal, .js .bento .tile.reveal { transform: none; }
  .btn-primary::before, .sud, .accent::after { animation: none; }
  .helper-btn { animation: none; }
  .compare-tada { transition: none; }
}

/* Shine sweep as a background gradient so bubble bursts are not clipped */
.btn-primary { overflow: visible; background-image: linear-gradient(105deg, rgba(255,255,255,0) 42%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0) 58%); background-size: 260% 100%; background-repeat: no-repeat; background-position: 160% 0; }
.btn-primary::before { display: none; }
.btn-primary:hover, .btn-primary:focus-visible { animation: shine-bg 900ms ease-out; }
@keyframes shine-bg { from { background-position: 160% 0; } to { background-position: -60% 0; } }
@media (prefers-reduced-motion: reduce) { .btn-primary:hover, .btn-primary:focus-visible { animation: none; } }

/* Stations: flat, soft, cute — not glossy spheres */
.plan-track { --bubble: 7.5rem; }
.station-bubble {
  background: var(--tint-sky-40); box-shadow: inset 0 0 0 3px var(--color-white), 0 10px 22px var(--tint-navy-08);
  color: var(--color-blue); animation: float-straight 5s ease-in-out infinite;
}
.station-bubble::before { top: 16%; left: 22%; width: 22%; height: 10%; background: rgba(255,255,255,0.9); }
.station-bubble svg { width: 42%; height: 42%; color: var(--color-blue); stroke-width: 2; }
.station-bubble .num { width: 2.1rem; height: 2.1rem; top: -0.1rem; left: -0.1rem; font-size: var(--fs-body); border-width: 3px; }
.station-bubble .sparkle { position: absolute; top: -0.5rem; right: -0.2rem; width: 1.2rem; height: 1.2rem; color: var(--color-blue); }
.stations li:nth-child(2) .station-bubble { animation-delay: -1.6s; }
.stations li:nth-child(3) .station-bubble { animation-delay: -3.2s; }
.stations li:hover .station-bubble { transform: translateY(-6px) scale(1.05); animation-play-state: paused; }
.stations h3 { font-size: var(--fs-h4); margin-top: calc(var(--space-6) + 0.75rem); }
.stations p { font-size: var(--fs-small); max-width: 15rem; }
.road { top: calc(var(--bubble) + 1rem); height: 0.9rem; background: var(--tint-sky-40); }
.road::after { background: repeating-linear-gradient(90deg, var(--color-white) 0 1rem, transparent 1rem 1.9rem); }
.road-fill { background: var(--color-blue); }
.road .plan-rider { width: 3.5rem; height: 3.5rem; transform: translate(-50%, -64%); }
.stations li::before { display: none; }

/* Slide-to-wash: the handle wipes left→right, revealing the CLEAN car behind it */
.compare .compare-before { clip-path: none; }
.compare .compare-after { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare-tag.after { left: var(--space-4); right: auto; }
.compare-tag.before { right: var(--space-4); left: auto; }

/* Compare shows the full 16:9 photo */
.compare { aspect-ratio: 16 / 9; max-height: 27rem; }

.band-mascot .speech { max-width: 17rem; }

/* Map as a postcard with the mascot perched on the corner */
.map-card { position: relative; padding-top: 2.5rem; }
.map-frame { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-card); overflow: hidden; background: var(--tint-sky-40); border: 6px solid var(--color-white); box-shadow: 0 0 0 3px var(--tint-sky-40), var(--shadow-lg); transition: transform var(--dur-base) var(--ease-bounce); }
.map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-card:hover .map-frame { transform: translateY(-4px); }
.map-buddy { position: absolute; top: 0; right: 4%; display: flex; align-items: flex-end; gap: var(--space-2); z-index: 3; }
.map-buddy img { width: 5.5rem; height: 5.5rem; filter: drop-shadow(0 8px 14px var(--tint-navy-16)); animation: float-straight 5s ease-in-out infinite; }
.map-buddy .speech { position: relative; margin: 0 0 var(--space-6); font-size: var(--fs-body); padding: var(--space-2) var(--space-4); max-width: none; }
.map-buddy .speech::after { left: auto; right: -0.6rem; top: 0.9rem; bottom: auto; width: 0.9rem; height: 1rem; clip-path: polygon(0 0, 0 100%, 100% 40%); }
.map-buddy .speech { color: var(--color-navy); }
.map-buddy .sparkle.s1 { top: 0.2rem; right: -0.6rem; width: 1.1rem; height: 1.1rem; }

/* Menu board: no navy backing — the three rows float on the page */
.menu-board { background: none; box-shadow: none; padding: 0; border-radius: 0; }
.menu-board > ul { gap: var(--space-3); }
.menu-row { box-shadow: var(--shadow-md); }
.menu-row.ultimate { background: var(--color-navy); border: 0; }
.menu-foot { color: var(--color-navy); margin-top: var(--space-4); }
.section-tint .menu-foot, .section-white .menu-foot { color: var(--color-navy); }

/* Membership band: bubble pattern instead of a photo */
.band { background: var(--color-blue); }
.band-pattern { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.9;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,0) 58px, rgba(255,255,255,0.16) 60px, rgba(255,255,255,0.16) 64px, rgba(255,255,255,0) 66px),
    radial-gradient(circle at 30% 80%, rgba(255,255,255,0) 26px, rgba(255,255,255,0.14) 28px, rgba(255,255,255,0.14) 31px, rgba(255,255,255,0) 33px),
    radial-gradient(circle at 48% 18%, rgba(255,255,255,0) 40px, rgba(255,255,255,0.13) 42px, rgba(255,255,255,0.13) 45px, rgba(255,255,255,0) 47px),
    radial-gradient(circle at 62% 70%, rgba(255,255,255,0) 84px, rgba(255,255,255,0.12) 86px, rgba(255,255,255,0.12) 91px, rgba(255,255,255,0) 93px),
    radial-gradient(circle at 80% 24%, rgba(255,255,255,0) 30px, rgba(255,255,255,0.16) 32px, rgba(255,255,255,0.16) 35px, rgba(255,255,255,0) 37px),
    radial-gradient(circle at 92% 78%, rgba(255,255,255,0) 52px, rgba(255,255,255,0.13) 54px, rgba(255,255,255,0.13) 58px, rgba(255,255,255,0) 60px),
    radial-gradient(circle at 20% 60%, rgba(255,255,255,0.10) 0, rgba(255,255,255,0.10) 6px, rgba(255,255,255,0) 7px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.10) 0, rgba(255,255,255,0.10) 5px, rgba(255,255,255,0) 6px),
    linear-gradient(120deg, rgba(124,198,255,0.25) 0%, rgba(30,108,240,0) 60%);
}

/* =====================================================================
   MOBILE PASS (2026-09-15)
   ===================================================================== */
@media (max-width: 55.99em) {
  /* Header: one row — logo, small CTA, menu button */
  .site-header .container { flex-wrap: nowrap; min-height: 3.75rem; gap: var(--space-2); }
  .brand img { height: 2.5rem; }
  .site-header .btn-primary { padding: var(--space-2) var(--space-3); font-size: 0.8rem; min-height: 2.5rem; letter-spacing: 0; white-space: nowrap; }
  .nav-toggle { width: 2.5rem; height: 2.5rem; flex: 0 0 auto; }
  .nav-toggle svg { width: 1.25rem; height: 1.25rem; }
  .site-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--color-white); box-shadow: var(--shadow-md); padding: var(--space-3) var(--gutter) var(--space-5); }

  /* Hero: photo first, no gap, tidy eyebrow */
  .hero.hero-full { padding-top: 0; padding-bottom: var(--space-7); min-height: 0; }
  .hero-full .hero-bg { aspect-ratio: 4 / 5; max-height: 30rem; }
  .hero-full .hero-inner { margin-top: calc(-1 * var(--space-6)); }
  .hero-kicker { display: flex; flex-wrap: wrap; align-items: center; font-size: 0.8rem; letter-spacing: 0.12em; }
  .hero-kicker span { display: block; width: 100%; padding-left: 0; border-left: 0; margin-top: var(--space-1); letter-spacing: 0.02em; font-size: 0.9rem; }
  .hero-full h1 { font-size: clamp(2.25rem, 10vw, 3rem); }
  .hero-full .lead { font-size: var(--fs-body); }

  /* Steps: vertical road on the left, rider follows scroll */
  .plan-track { --bubble: 5.5rem; padding-left: 0; }
  .stations { gap: var(--space-6); }
  .stations li { display: grid; grid-template-columns: var(--bubble) 1fr; column-gap: var(--space-4); align-items: center; text-align: left; justify-items: start; }
  .station-bubble { grid-row: 1 / span 2; }
  .station-bubble svg { width: 44%; height: 44%; }
  .station-bubble .num { width: 1.75rem; height: 1.75rem; font-size: var(--fs-small); }
  .stations h3 { margin: 0 0 var(--space-1); font-size: var(--fs-h4); align-self: end; }
  .stations p { align-self: start; max-width: none; }
  .road { display: block; top: 0; bottom: 0; left: calc(var(--bubble) / 2 - 0.4rem); right: auto; width: 0.8rem; height: auto; }
  .road::after { left: 50%; right: auto; top: 0.75rem; bottom: 0.75rem; width: 3px; height: auto; margin: 0 0 0 -1.5px; background: repeating-linear-gradient(180deg, var(--color-white) 0 0.9rem, transparent 0.9rem 1.7rem); }
  .road-fill { width: 100%; height: calc(var(--progress) * 100%); }
  .road .plan-rider { left: 50%; top: calc(var(--progress) * 100%); width: 3rem; height: 3rem; transform: translate(-50%, -50%); transition: top 120ms linear; }
  .sud { left: 50% !important; }

  /* Menu rows: header line, then both prices side by side, then details */
  .menu-row { grid-template-columns: 2.75rem 1fr; grid-template-areas: "icon text" "prices prices" "inc inc"; row-gap: var(--space-3); padding: var(--space-4); border-radius: 1.5rem; }
  .menu-row img { display: block; width: 2.75rem; height: 2.75rem; }
  .menu-text strong { font-size: var(--fs-body); }
  .menu-text span { font-size: 0.7rem; letter-spacing: 0.04em; }
  .menu-prices { flex-direction: row; gap: var(--space-2); }
  .menu-price { flex: 1 1 0; min-width: 0; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.55rem 0.5rem; }
  .menu-price small { font-size: 0.6rem; }
  .menu-price b { font-size: 1.15rem; }
  .menu-more { padding-left: 0; }
  .menu-more summary { min-height: 2.25rem; }
}

/* Station bubbles opaque so the road does not show through them */
.station-bubble { background: var(--tint-sky-45); background: color-mix(in srgb, var(--color-sky) 45%, var(--color-white)); }

/* =====================================================================
   Speed marks — the logo's three dashes, streaking softly in the background
   ===================================================================== */
.has-speed, .hero-full, .band, .cta-band { overflow: hidden; }
@keyframes streak { 0% { transform: translateX(-1.5em); opacity: 0; } 25% { opacity: var(--speed-o, 0.5); } 70% { opacity: var(--speed-o, 0.5); } 100% { transform: translateX(2.5em); opacity: 0; } }
.section > .container, .hero-inner, .band-grid { position: relative; z-index: 2; }

/* Mobile hero: full-bleed photo, copy anchored at the bottom, everything in one screen */
@media (max-width: 55.99em) {
  .hero.hero-full { position: relative; display: flex; align-items: flex-end; min-height: calc(100svh - 3.75rem); min-height: calc(100vh - 3.75rem); padding: var(--space-6) 0 var(--space-6); }
  .hero-full .hero-bg { position: absolute; inset: 0; width: 100%; aspect-ratio: auto; max-height: none; }
  .hero-full .hero-bg img { object-position: 68% 18%; }
  .hero-full .hero-bg::after { background: linear-gradient(180deg, rgba(30,108,240,0.08) 0%, rgba(30,108,240,0.25) 30%, rgba(30,108,240,0.88) 55%, rgba(30,108,240,0.97) 100%); }
  .hero-full .hero-inner { margin-top: 0; width: 100%; }
  .hero-kicker { margin-bottom: var(--space-2); }
  .hero-kicker span { font-size: 0.85rem; }
  .hero-full h1 { font-size: clamp(2rem, 9vw, 2.75rem); margin-bottom: var(--space-3); }
  .hero-full .lead { font-size: var(--fs-body); line-height: 1.45; margin-bottom: var(--space-4); }
  .hero-full .btn-group { margin-top: 0; gap: var(--space-2) var(--space-4); }
  .speed.hero-tl { display: none; }
}
@media (max-width: 55.99em) and (max-height: 640px) {
  .hero-full .lead { display: none; }
}

/* Mobile steps: visible road, mascot drives over the stations */
@media (max-width: 55.99em) {
  .plan-track { --bubble: 4.25rem; padding: var(--space-3) 0 var(--space-4); }
  .stations { gap: var(--space-8); position: relative; z-index: 2; }
  .stations li { grid-template-columns: var(--bubble) 1fr; column-gap: var(--space-5); }
  .station-bubble svg { width: 46%; height: 46%; }
  .station-bubble .num { width: 1.6rem; height: 1.6rem; font-size: 0.8rem; top: -0.2rem; left: -0.2rem; }
  .station-bubble .sparkle { display: none; }
  .stations h3 { font-size: var(--fs-h4); }
  .stations p { font-size: var(--fs-small); }
  .road { z-index: auto; width: 0.75rem; left: calc(var(--bubble) / 2 - 0.375rem); top: 0.5rem; bottom: 0.5rem; background: var(--tint-sky-30); }
  .road::after { display: none; }
  .road-fill { border-radius: 999px; }
  .road .plan-rider { position: absolute; z-index: 5; width: 3.25rem; height: 3.25rem; left: 50%; transform: translate(-50%, -50%); filter: drop-shadow(0 6px 10px rgba(13,43,107,0.3)); }
}

/* Mobile menu rows: bigger package names */
@media (max-width: 55.99em) {
  .menu-text strong { font-size: var(--fs-h4); }
  .menu-text span { font-size: 0.75rem; }
  .menu-row img { width: 3rem; height: 3rem; }
  .menu-row { grid-template-columns: 3rem 1fr; }
}

/* Speed marks: flatter bars, quicker streak, one set per light section only */
.speed { gap: 0.45em; width: 8.5em; }
@keyframes streak { 0% { transform: translateX(-2.5em); opacity: 0; } 20% { opacity: var(--speed-o, 0.5); } 60% { opacity: var(--speed-o, 0.5); } 100% { transform: translateX(3em); opacity: 0; } }

/* Mobile hero v2: face in the clear, compact copy, nothing under the helper */
.lead-mobile { display: none; }
@media (max-width: 55.99em) {
  .hero-full .lead { display: none; }
  .hero-full .lead-mobile { display: block; font-size: 1.05rem; line-height: 1.4; margin-bottom: var(--space-4); }
  .hero-full .hero-bg img { height: 118%; top: -18%; object-position: 62% 0; }
  .hero-full .hero-bg::after { background: linear-gradient(180deg, rgba(30,108,240,0.05) 0%, rgba(30,108,240,0.12) 42%, rgba(30,108,240,0.7) 58%, rgba(30,108,240,0.96) 72%, rgba(30,108,240,1) 100%); }
  .hero.hero-full { padding-bottom: var(--space-7); }
  .hero-kicker { display: inline-flex; flex-wrap: nowrap; white-space: nowrap; font-size: 0.72rem; letter-spacing: 0.1em; margin-bottom: var(--space-2); }
  .hero-kicker span { display: inline; width: auto; margin: 0; padding-left: var(--space-2); border-left: 2px solid rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.02em; }
  .hero-full h1 { font-size: clamp(2rem, 8.6vw, 2.6rem); }
  .hero-full .btn-group { flex-direction: column; align-items: stretch; gap: var(--space-2); padding-right: 4.75rem; }
  .hero-full .btn-group .btn { width: 100%; }
  .hero-full .hero-link { text-align: center; padding: var(--space-2); }
}
@media (max-width: 55.99em) and (max-height: 640px) { .hero-full .lead-mobile { display: none; } }

/* Mobile steps: tighter */
@media (max-width: 55.99em) {
  .stations { gap: var(--space-5); }
  .stations h3 { margin-bottom: 0; }
  .stations p { line-height: 1.35; }
  .road { top: 0.25rem; bottom: 0.25rem; }
  .road .plan-rider { width: 3rem; height: 3rem; }
  .plan-track { padding-bottom: var(--space-2); }
}

/* Rider must not be capped by the narrow rail */
.road .plan-rider { max-width: none; }

/* =====================================================================
   Speed marks v2: attached to things that fly in (headings, CTAs, images)
   on light sections. JS adds .fly + .speed-trail; one streak per reveal.
   ===================================================================== */
.speed { display: none; }                      /* retire the loose sets */
.fly { position: relative; }
.js .fly { opacity: 0; transform: translateX(-1.5rem); transition: opacity 500ms var(--ease-out), transform 700ms var(--ease-bounce); }
.js .fly.is-flown { opacity: 1; transform: none; }
h2.fly { display: inline-block; }
.speed-trail { position: absolute; top: 50%; right: 100%; margin-right: 0.75rem; transform: translateY(-50%); display: grid; gap: 0.35em; width: 6em; font-size: 12px; pointer-events: none; opacity: 0; }
.speed-trail span { display: block; height: 0.45em; border-radius: 0.25em; background: var(--color-sky); justify-self: end; }
.speed-trail span:nth-child(1) { width: 100%; }
.speed-trail span:nth-child(2) { width: 66%; }
.speed-trail span:nth-child(3) { width: 40%; }
.fly.is-flown .speed-trail { animation: trail 900ms ease-out forwards; }
.fly.is-flown .speed-trail span:nth-child(2) { animation: trail-bar 900ms ease-out 60ms forwards; }
.fly.is-flown .speed-trail span:nth-child(3) { animation: trail-bar 900ms ease-out 120ms forwards; }
@keyframes trail { 0% { opacity: 0; transform: translate(-3em, -50%); } 15% { opacity: 0.9; } 70% { opacity: 0.7; } 100% { opacity: 0; transform: translate(1.5em, -50%); } }
@keyframes trail-bar { 0% { transform: translateX(-1em); } 100% { transform: translateX(0.5em); } }
.btn.fly .speed-trail { font-size: 10px; }
.compare.fly .speed-trail, .map-card.fly .speed-trail { font-size: 16px; margin-right: 1rem; }
@media (max-width: 55.99em) { .speed-trail { display: none; } .js .fly { transform: translateX(-0.75rem); } }
@media (prefers-reduced-motion: reduce) { .js .fly { opacity: 1; transform: none; transition: none; } .speed-trail { display: none; } }

/* Eyebrow stays on its own line above inline-block headings */
.sticker { display: flex; width: fit-content; }
.section-head.center .sticker { margin-inline: auto; }
.hero-kicker { display: inline-flex; }

/* Mobile hero v3: copy at the top over the sky, photo clear below */
@media (max-width: 55.99em) {
  .hero.hero-full { align-items: flex-start; padding: var(--space-6) 0 0; min-height: calc(100svh - 3.75rem); min-height: calc(100vh - 3.75rem); }
  .hero-full .hero-bg img { height: 100%; top: 0; object-position: 60% 100%; }
  .hero-full .hero-bg::after { background: linear-gradient(180deg, rgba(30,108,240,0.96) 0%, rgba(30,108,240,0.9) 38%, rgba(30,108,240,0.55) 52%, rgba(30,108,240,0.12) 66%, rgba(30,108,240,0) 100%); }
  .hero-full .hero-inner { padding-bottom: var(--space-5); }
  .hero-full .btn-group { padding-right: 0; }
}

/* Mobile hero v4: face pinned to the bottom edge of the frame on every phone */
@media (max-width: 55.99em) {
  .hero-full .hero-bg img { object-position: 64% 100%; }
  .hero-full .hero-bg::after { background: linear-gradient(180deg, rgba(30,108,240,0.96) 0%, rgba(30,108,240,0.92) 40%, rgba(30,108,240,0.6) 54%, rgba(30,108,240,0.15) 66%, rgba(30,108,240,0) 80%); }
  /* helper moves to the bottom-left so it never covers her */
  .helper { right: auto; left: var(--space-3); justify-items: start; }
  .helper-tease { margin: 0 0 0 0.5rem; }
  .helper-tease::after { right: auto; left: 1.2rem; clip-path: polygon(0 0, 100% 0, 30% 100%); }
  .helper-panel { transform-origin: bottom left; }
}

/* Mobile hero v5: full portrait photo, content centered vertically and left-aligned, wash left→right */
@media (max-width: 55.99em) {
  .hero.hero-full { align-items: center; padding: var(--space-7) 0; }
  .hero-full .hero-bg img { height: 100%; top: 0; object-position: 72% 50%; }
  .hero-full .hero-bg::after { background: linear-gradient(90deg, rgba(30,108,240,0.94) 0%, rgba(30,108,240,0.86) 45%, rgba(30,108,240,0.55) 68%, rgba(30,108,240,0.2) 100%); }
  .hero-full .hero-inner { padding-bottom: 0; }
  .hero-full .hero-copy { text-align: left; max-width: 22rem; }
  .hero-full .btn-group { align-items: flex-start; }
  .hero-full .btn-group .btn { width: auto; }
  .hero-full .hero-link { text-align: left; padding-left: 0; }
}

/* Helper stays bottom-right on every screen size */
@media (max-width: 55.99em) {
  .helper { left: auto; right: var(--space-3); justify-items: end; }
  .helper-tease { margin: 0 0.5rem 0 0; }
  .helper-tease::after { left: auto; right: 1.2rem; clip-path: polygon(0 0, 100% 0, 70% 100%); }
  .helper-panel { transform-origin: bottom right; }
}

/* Staggered entrances */
.js .reveal { transition-delay: var(--d, 0ms); }
.js .reveal:nth-child(2), .js .reveal:nth-child(3), .js .reveal:nth-child(4) { transition-delay: var(--d, 0ms); }
.js .menu-row.reveal { transform: translateX(-1.25rem); }
.js .menu-row.reveal.is-visible { transform: none; }
.js .values > li.reveal { transform: translateY(1rem) scale(0.92); }
.js .values > li.reveal.is-visible { transform: none; }

/* =====================================================================
   Cutesy pass 3: header scroll rider, mascot pop-ins, waving send-off
   ===================================================================== */
.site-header { overflow: visible; }

.js .pop { opacity: 0; transform: translateY(1rem) scale(0.7); transition: opacity 400ms var(--ease-out), transform 700ms var(--ease-bounce); }
.js .pop.is-popped { opacity: 1; transform: none; }

.cta-band .mascot-wrap { position: relative; display: inline-block; margin: 0 auto var(--space-3); }
.cta-band .mascot-wrap .mascot { margin: 0; animation: float-straight 5s ease-in-out infinite, wave-hop 6s ease-in-out infinite; }
.cta-band .mascot-wrap .sparkle.s1 { top: -0.4rem; right: -0.8rem; width: 1.4rem; height: 1.4rem; color: var(--color-sky); }
.cta-band .mascot-wrap .sparkle.s2 { bottom: 0.6rem; left: -1rem; width: 1rem; height: 1rem; color: var(--color-sky); animation-delay: 0.9s; }
@keyframes wave-hop { 0%, 80%, 100% { scale: 1 1; } 86% { scale: 1.08 0.92; } 92% { scale: 0.96 1.06; } }

@media (prefers-reduced-motion: reduce) { .js .pop { opacity: 1; transform: none; transition: none; } .cta-band .mascot-wrap .mascot { animation: none; } }

/* Final band: mascot and speech bubble side by side, centered */
.cta-buddy { display: inline-flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-5); }
.cta-buddy .mascot-wrap { margin: 0; }
.cta-buddy .speech { position: relative; margin: 0; font-size: var(--fs-lead); }
.cta-buddy .speech::after { left: -0.7rem; bottom: auto; top: 50%; transform: translateY(-50%); width: 1rem; height: 1.2rem; clip-path: polygon(100% 0, 100% 100%, 0 50%); }
.cta-band .cta-buddy .speech { color: var(--color-navy); }
@media (max-width: 40em) { .cta-buddy { gap: var(--space-3); } .cta-buddy .speech { font-size: var(--fs-body); max-width: 12rem; } }

/* =====================================================================
   UNLIMITED CLUB — its own components (card hero, calculator, tickets,
   stamps, chat). Nothing here is reused from the homepage.
   ===================================================================== */

/* Hero with the membership card */
.club-hero { position: relative; overflow: hidden; background: var(--color-blue); padding-block: var(--space-9) var(--space-10); }
.club-hero-grid { position: relative; z-index: 2; display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 56em) { .club-hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.club-hero h1 { color: var(--color-white); }
.club-hero .lead { color: var(--color-white); max-width: 30rem; }
.club-hero .accent { color: var(--color-white); }
.club-hero .sticker, .club-hero .sticker { color: var(--color-white); }
.club-hero .sticker::before { background: var(--color-white); }
.club-hero .btn-secondary { color: var(--color-white); border-color: var(--color-white); }
.club-hero .btn-secondary:hover, .club-hero .btn-secondary:focus-visible { background: var(--color-white); color: var(--color-blue); }
.member-card-wrap { position: relative; display: grid; place-items: center; perspective: 1200px; }
.member-card {
  position: relative; width: min(100%, 24rem); aspect-ratio: 1.586; border-radius: 1.25rem; padding: var(--space-5);
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 55%, var(--color-sky) 100%);
  color: var(--color-white); box-shadow: 0 30px 60px rgba(13,43,107,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
  display: grid; grid-template-rows: auto auto 1fr auto; gap: var(--space-2);
  transform-style: preserve-3d; transition: transform 300ms var(--ease-out); animation: float-straight 6s ease-in-out infinite; overflow: hidden;
}
.member-card .mc-shine { position: absolute; inset: -40%; background: linear-gradient(115deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 60%); transform: translateX(-30%); animation: card-shine 5s ease-in-out infinite; pointer-events: none; }
@keyframes card-shine { 0%, 60% { transform: translateX(-40%); } 100% { transform: translateX(40%); } }
.mc-tag { display: inline-flex; align-items: center; gap: 0.3rem; text-transform: uppercase; font-size: 0.6rem; letter-spacing: 0.1em; }
.mc-tag svg { width: 0.8rem; height: 0.8rem; color: var(--color-red); }
.member-card-wrap .sparkle { color: var(--color-white); }
.member-card-wrap .sparkle.s1 { top: 6%; right: 6%; width: 1.6rem; height: 1.6rem; }
.member-card-wrap .sparkle.s2 { bottom: 4%; left: 8%; width: 1.1rem; height: 1.1rem; animation-delay: 0.9s; }

/* Savings calculator */
.calc { max-width: 42rem; margin-inline: auto; }
.calc-plans { display: flex; justify-content: center; gap: var(--space-2); margin-bottom: var(--space-5); flex-wrap: wrap; }
.calc-plan { font: 800 var(--fs-body)/1 var(--font-body); padding: var(--space-3) var(--space-5); border-radius: var(--radius-pill); border: 2px solid var(--color-blue); background: var(--color-white); color: var(--color-blue); cursor: pointer; transition: background-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast) var(--ease-bounce); }
.calc-plan:hover { transform: translateY(-2px); }
.calc-plan.is-active { background: var(--color-blue); color: var(--color-white); }
.calc-label { display: block; text-align: center; font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-h4); margin-bottom: var(--space-2); }
.calc-label output { color: var(--color-blue); }
.calc-range { width: 100%; height: 2.5rem; margin: 0 0 var(--space-5); -webkit-appearance: none; appearance: none; background: transparent; cursor: pointer; }
.calc-range::-webkit-slider-runnable-track { height: 0.75rem; border-radius: 999px; background: linear-gradient(90deg, var(--color-blue) var(--fill, 30%), var(--tint-sky-40) var(--fill, 30%)); }
.calc-range::-moz-range-track { height: 0.75rem; border-radius: 999px; background: var(--tint-sky-40); }
.calc-range::-moz-range-progress { height: 0.75rem; border-radius: 999px; background: var(--color-blue); }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; width: 2.25rem; height: 2.25rem; margin-top: -0.75rem; border-radius: 50%; border: 0; background: url("/images/logo/mascot.svg") center / contain no-repeat; box-shadow: none; }
.calc-range::-moz-range-thumb { width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 0; background: url("/images/logo/mascot.svg") center / contain no-repeat; }
.calc-range:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 999px; }
.calc-out { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--space-4); }
.calc-box { text-align: center; padding: var(--space-5) var(--space-4); border-radius: var(--radius-card); }
.calc-box.pay { background: var(--color-white); border: 2px solid var(--tint-sky-40); color: var(--color-navy); }
.calc-box.club { background: var(--color-blue); color: var(--color-white); box-shadow: var(--shadow-md); }
.calc-k { display: block; font-size: var(--fs-small); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.calc-v { display: block; font-family: var(--font-heading); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); line-height: 1; margin: var(--space-2) 0; transition: transform var(--dur-fast) var(--ease-bounce); }
.calc-v.bump { transform: scale(1.12); }
.calc-s { display: block; font-size: var(--fs-small); font-weight: 600; }
.calc-vs { font-family: var(--font-heading); font-weight: 800; color: var(--color-blue); font-size: var(--fs-h4); }
.calc-verdict { display: flex; align-items: center; justify-content: center; gap: var(--space-3); margin: var(--space-5) 0 var(--space-3); }
.calc-verdict img { width: 3.5rem; height: 3.5rem; flex: 0 0 auto; }
.calc-verdict .speech { position: relative; margin: 0; font-size: var(--fs-body); max-width: 22rem; }
.calc-verdict .speech::after { left: -0.7rem; bottom: auto; top: 50%; transform: translateY(-50%); width: 1rem; height: 1.2rem; clip-path: polygon(100% 0, 100% 100%, 0 50%); }
.calc-verdict .speech { color: var(--color-navy); }
@media (max-width: 40em) { .calc-out { grid-template-columns: 1fr; } .calc-vs { text-align: center; } }

/* Tickets */
.tickets { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-5); }
@media (min-width: 48em) { .tickets { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.ticket { position: relative; display: grid; grid-template-rows: auto auto 1fr auto; background: var(--color-white); border-radius: var(--radius-card); box-shadow: var(--shadow-md); overflow: hidden; transition: transform var(--dur-base) var(--ease-bounce); }
.ticket:hover { transform: translateY(-6px); }
.tk-head { display: grid; grid-template-columns: 2.5rem 1fr; column-gap: var(--space-3); align-items: center; padding: var(--space-4) var(--space-5); color: var(--color-white); }
.ticket.express .tk-head { background: var(--color-red); } .ticket.deluxe .tk-head { background: var(--color-blue); } .ticket.ultimate .tk-head { background: var(--color-navy); }
.tk-head img { width: 2.5rem; height: 2.5rem; grid-row: 1 / span 2; }
.tk-name { font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-h4); line-height: 1.1; }
.tk-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; }
.tk-price { position: relative; padding: var(--space-5) var(--space-5) var(--space-4); text-align: center; border-bottom: 3px dashed var(--tint-sky-40); }
.tk-price::before, .tk-price::after { content: ""; position: absolute; bottom: -0.75rem; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--tint-sky-20); }
.section-tint .tk-price::before, .section-tint .tk-price::after { background: var(--tint-sky-15); }
.tk-price::before { left: -0.75rem; } .tk-price::after { right: -0.75rem; }
.tk-price b { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; line-height: 1; color: var(--color-navy); }
.tk-price small { font-weight: 700; color: var(--color-blue); }
.tk-inc { list-style: none; margin: 0; padding: var(--space-4) var(--space-5); display: grid; gap: var(--space-2); }
.tk-inc li::before { content: "✓ "; color: var(--color-blue); font-weight: 800; }
.tk-foot { margin: 0; padding: var(--space-3) var(--space-5) var(--space-4); text-align: center; font-weight: 800; color: var(--color-blue); }

/* Stamps */
.stamps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-5); grid-template-columns: repeat(2, 1fr); max-width: 60rem; margin-inline: auto; }
@media (min-width: 48em) { .stamps { grid-template-columns: repeat(4, 1fr); } }
.stamp { display: grid; justify-items: center; text-align: center; gap: var(--space-1); }
.stamp-ring { width: 6.5rem; height: 6.5rem; border-radius: 50%; border: 3px dashed var(--color-blue); display: grid; place-items: center; color: var(--color-blue); background: var(--color-white); margin-bottom: var(--space-2); transition: transform var(--dur-base) var(--ease-bounce), background-color var(--dur-fast); }
.stamp-ring svg { width: 2.6rem; height: 2.6rem; }
.stamp:hover .stamp-ring { transform: translateY(-6px); background: var(--tint-sky-40); }
.stamp strong { font-family: var(--font-heading); font-size: var(--fs-h4); }
.stamp span:last-child { font-size: var(--fs-small); font-weight: 600; max-width: 12rem; }

/* Chat */
.chat { list-style: none; margin: var(--space-5) 0 0; padding: 0; display: grid; gap: var(--space-3); max-width: 30rem; }
.chat li { display: flex; align-items: flex-end; gap: var(--space-2); }
.chat li span { padding: var(--space-3) var(--space-4); border-radius: var(--radius-card); line-height: 1.4; font-weight: 600; }
.chat-you { justify-content: flex-end; }
.chat-you span { background: var(--color-blue); color: var(--color-white); border-bottom-right-radius: 6px; }
.chat-bub img { width: 2.25rem; height: 2.25rem; flex: 0 0 auto; }
.chat-bub span { background: var(--color-white); color: var(--color-navy); border-bottom-left-radius: 6px; box-shadow: var(--shadow-sm); }

@media (prefers-reduced-motion: reduce) { .member-card, .member-card .mc-shine { animation: none; } }

/* Contact FAQ: full width, two roomy columns, questions on one line */
.faq.two-col { max-width: none; column-gap: var(--space-9); }
@media (min-width: 56em) { .faq.two-col summary { font-size: var(--fs-h4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } }

/* Flipped interior hero: copy on the right, wash heavy on the right, subject clear on the left */
.page-hero.hero-flip .hero-bg img { object-position: 18% 40%; }

/* Membership card — matched to the brand-guide card: blue top with the logo, white bottom with MEMBER */
.member-card { padding: 0; background: var(--color-white); display: grid; grid-template-rows: 58% 42%; gap: 0; border-radius: 1.1rem; box-shadow: 0 30px 60px rgba(13,43,107,0.45); }
.mc-blue { position: relative; background: var(--color-blue); display: grid; place-items: center; overflow: hidden; }
.mc-logo { width: 72%; height: auto; position: relative; z-index: 2; filter: drop-shadow(0 6px 12px rgba(13,43,107,0.35)); }
.mc-white { position: relative; display: grid; align-content: center; justify-items: center; gap: 0.15rem; padding: var(--space-3); overflow: hidden; }
.mc-member { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.1rem); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-navy); line-height: 1; position: relative; z-index: 2; }
.mc-tag { display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-navy); position: relative; z-index: 2; }
.mc-tag svg { width: 0.8rem; height: 0.8rem; color: var(--color-red); }
.mc-bub { position: absolute; border-radius: 50%; border: 3px solid rgba(255,255,255,0.55); background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.05) 60%); }
.mc-bub.b1 { width: 2.4rem; height: 2.4rem; left: 6%; bottom: 10%; }
.mc-bub.b2 { width: 1.2rem; height: 1.2rem; left: 16%; top: 14%; }
.mc-bub.b3 { width: 1.7rem; height: 1.7rem; right: 8%; top: 12%; }
.mc-white .mc-bub { border-color: var(--color-sky); background: radial-gradient(circle at 30% 30%, #fff, var(--tint-sky-40) 70%); }
.mc-bub.b4 { width: 2.8rem; height: 2.8rem; left: 5%; bottom: -0.6rem; }
.mc-bub.b5 { width: 1.4rem; height: 1.4rem; right: 9%; top: 18%; }
.mc-spark { position: absolute; top: 10%; left: 8%; width: 1.1rem; height: 1.1rem; color: var(--color-white); z-index: 2; animation: twinkle 2.6s ease-in-out infinite; }
.mc-spark svg { width: 100%; height: 100%; }
.member-card .mc-shine { z-index: 3; }

.club-hero h1 { text-wrap: balance; max-width: 12ch; }
@media (max-width: 40em) { .club-hero h1 br { display: none; } }

.club-hero h1 { max-width: 16ch; }

/* =====================================================================
   FUNDRAISING — its own components (stat strip, numbered stages, goal bar, who list)
   ===================================================================== */
.fr-stats-section { padding-block: var(--space-7); }
.fr-stats { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-5); text-align: center; }
@media (min-width: 48em) { .fr-stats { grid-template-columns: repeat(3, 1fr); } .fr-stats li + li { border-left: 2px solid var(--tint-sky-40); } }
.fr-num { display: block; font-family: var(--font-heading); font-weight: 800; font-size: clamp(3rem, 7vw, 5.5rem); line-height: 0.9; color: var(--color-blue); letter-spacing: -0.03em; }
.fr-num em { font-style: normal; font-size: 0.5em; vertical-align: super; color: var(--color-red); }
.fr-k { display: block; margin-top: var(--space-2); font-weight: 700; max-width: 16rem; margin-inline: auto; }

.fr-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-6); counter-reset: none; }
@media (min-width: 56em) { .fr-steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); } }
.fr-steps li { position: relative; padding: var(--space-7) var(--space-4) 0 0; }
.fr-step-num { position: absolute; top: -0.4rem; left: -0.25rem; font-family: var(--font-heading); font-weight: 800; font-size: 5.5rem; line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--color-sky); letter-spacing: -0.04em; pointer-events: none; }
.fr-step-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 3.25rem; height: 3.25rem; border-radius: 50%; background: var(--color-blue); color: var(--color-white); margin-bottom: var(--space-3); }
.fr-step-icon svg { width: 1.6rem; height: 1.6rem; }
.fr-steps h3 { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
.fr-steps p { margin: 0; }

.fr-goal { background: var(--color-white); border-radius: var(--radius-card); padding: var(--space-5); box-shadow: var(--shadow-md); }
.fr-goal-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--space-3); font-weight: 700; }
.fr-goal-head strong { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--color-blue); line-height: 1; }
.fr-bar { position: relative; height: 1.25rem; border-radius: 999px; background: var(--tint-sky-40); overflow: visible; }
.fr-bar-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--color-blue), var(--color-sky)); transition: width 1600ms var(--ease-out); }
.fr-bar-rider { position: absolute; top: 50%; left: 0; width: 2.75rem; height: 2.75rem; max-width: none; transform: translate(-50%, -55%); transition: left 1600ms var(--ease-out); filter: drop-shadow(0 6px 10px var(--tint-navy-16)); }
.fr-goal.is-visible .fr-bar-fill { width: 50%; }
.fr-goal.is-visible .fr-bar-rider { left: 50%; }
.fr-goal-foot { display: flex; justify-content: space-between; margin-top: var(--space-3); font-size: var(--fs-small); font-weight: 700; color: var(--color-navy); }

.fr-who { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3) var(--space-6); max-width: 56rem; margin-inline: auto; }
.fr-who li { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.25rem, 2.6vw, 1.75rem); color: var(--color-navy); display: inline-flex; align-items: center; gap: var(--space-3); }
.fr-who li::before { content: ""; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--color-red); }
.fr-who li:nth-child(even)::before { background: var(--color-blue); }
.fr-who li:last-child { color: var(--color-red); }
@media (prefers-reduced-motion: reduce) { .fr-bar-fill, .fr-bar-rider { transition: none; } .fr-goal .fr-bar-fill { width: 50%; } .fr-goal .fr-bar-rider { left: 50%; } }

/* Legal pages: sticky contents on the left, wide reading column on the right */
.legal .legal-grid { display: grid; gap: var(--space-7); align-items: start; }
@media (min-width: 56em) { .legal .legal-grid { grid-template-columns: 16rem minmax(0, 1fr); gap: var(--space-9); } .legal-side { position: sticky; top: 5.5rem; } }
.legal .prose { max-width: 60rem; margin: 0; }
.legal .prose > p:first-child { font-size: var(--fs-lead); }
.legal .prose h2 { margin-top: var(--space-7); padding-top: var(--space-4); border-top: 2px solid var(--tint-sky-40); scroll-margin-top: 5.5rem; }
.legal .prose h2:first-of-type { border-top: 0; padding-top: 0; }
.legal-eff { display: grid; gap: 0.15rem; margin: 0 0 var(--space-5); padding: var(--space-4); background: var(--color-white); border-radius: var(--radius-img); box-shadow: var(--shadow-sm); }
.legal-eff span { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-blue); }
.legal-eff strong { font-family: var(--font-heading); font-size: var(--fs-h4); }
.legal-toc-h { margin: 0 0 var(--space-2); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-blue); }
.legal-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; }
.legal-toc a { display: block; padding: 0.35rem 0.6rem; border-radius: var(--radius-sm); text-decoration: none; font-weight: 700; font-size: var(--fs-small); color: var(--color-navy); border-left: 3px solid var(--tint-sky-40); }
.legal-toc a:hover, .legal-toc a:focus-visible { background: var(--color-white); border-left-color: var(--color-blue); color: var(--color-blue); }
.legal-help { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-5); font-size: var(--fs-small); }
.legal-help img { width: 2.75rem; height: 2.75rem; flex: 0 0 auto; }
.legal-help p { margin: 0; }
@media (max-width: 55.99em) { .legal-toc { display: none; } .legal-help { display: none; } }

/* Fundraising: supporter photo with the goal card overlapping its bottom */
.fr-goal-wrap { position: relative; padding-bottom: 5.5rem; }
.fr-photo { aspect-ratio: 4 / 3; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); }
.fr-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 40%; }
.fr-goal-wrap .fr-goal { position: absolute; left: 6%; right: 6%; bottom: 0; }
.fr-goal-wrap.reveal.is-visible .fr-bar-fill { width: 50%; }
.fr-goal-wrap.reveal.is-visible .fr-bar-rider { left: 50%; }
@media (max-width: 40em) { .fr-goal-wrap { padding-bottom: 6.5rem; } .fr-goal-wrap .fr-goal { left: 3%; right: 3%; } }

/* Bento mix: one 2×2 feature tile, five singles, 3×3 grid */
.bento.mix { gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 40em) { .bento.mix { grid-template-columns: repeat(2, 1fr); } .bento.mix .tile.feature { grid-column: span 2; } }
@media (min-width: 64em) { .bento.mix { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 13rem; } .bento.mix .tile.feature { grid-column: span 2; grid-row: span 2; } }
.bento.mix .tile { min-height: 13rem; }
.bento.mix .tile h3 { font-size: var(--fs-h4); }
.bento.mix .tile p { font-size: var(--fs-small); }
.bento.mix .tile .card-icon { width: 2.5rem; height: 2.5rem; border-width: 2px; margin-bottom: var(--space-2); }
.bento.mix .tile .card-icon svg { width: 1.25rem; height: 1.25rem; }
.bento.mix .tile.feature h3 { font-size: var(--fs-h2); }
.bento.mix .tile.feature p { font-size: var(--fs-lead); }
.bento.mix .tile.feature .card-icon { width: 3.25rem; height: 3.25rem; }
.bento.mix .tile.feature .card-icon svg { width: 1.6rem; height: 1.6rem; }
.bento.mix .tile.feature .tile-body { padding: var(--space-6); }
.bento.mix .tile.feature img.tile-peek { max-width: 9rem; width: 28%; }

/* Interior heroes: straight bottom edge; flipped hero keeps the subject clearer */
.page-hero.on-dark { padding-block: var(--space-9); min-height: min(62vh, 36rem); }

/* Fundraising steps: number in flow, icon tucked at its corner, columns aligned */
.fr-steps li { padding: 0 var(--space-4) 0 0; display: grid; grid-template-rows: auto auto auto 1fr; }
.fr-step-num { position: static; display: block; font-size: 4.75rem; line-height: 0.85; margin: 0 0 -1.5rem 0; }
.fr-step-icon { margin: 0 0 var(--space-3) 2.6rem; }
.fr-steps h3 { margin-top: var(--space-2); }

/* Fundraising steps centered on mobile */
@media (max-width: 55.99em) {
  .fr-steps li { padding: 0; justify-items: center; text-align: center; }
  .fr-step-num { text-align: center; }
  .fr-step-icon { margin: 0 0 var(--space-3) 3.2rem; }
  .fr-steps p { max-width: 30rem; }
}

/* Fundraising stats: three across on mobile with short captions */
.fr-k-short { display: none; }
@media (max-width: 47.99em) {
  .fr-stats { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); align-items: start; }
  .fr-stats li { border: 0; }
  .fr-num { font-size: clamp(2rem, 9vw, 2.6rem); }
  .fr-k { display: none; }
  .fr-k-short { display: block; margin-top: var(--space-1); font-weight: 800; font-size: var(--fs-small); letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-navy); }
  .fr-stats-section { padding-block: var(--space-6); }
}

/* Flipped hero on mobile: mirror the photo (subject to the right), wash from the left, narrow copy column */
@media (max-width: 55.99em) {
  .page-hero.hero-flip { min-height: 34rem; display: flex; align-items: center; }
  .page-hero.hero-flip .hero-bg img { transform: scaleX(-1); object-position: 30% 35%; }
  .page-hero.hero-flip .hero-bg::after { background: linear-gradient(90deg, rgba(30,108,240,0.95) 0%, rgba(30,108,240,0.88) 40%, rgba(30,108,240,0.5) 62%, rgba(30,108,240,0.12) 100%); }
  .page-hero.hero-flip .container { display: block; }
  .page-hero.hero-flip h1, .page-hero.hero-flip .lead { max-width: 17rem; }
  .page-hero.hero-flip h1 { font-size: clamp(2rem, 8.5vw, 2.5rem); }
  .page-hero.hero-flip .lead { font-size: var(--fs-body); }
}

/* Mirrored hero: photo flipped so the subject sits on the right; copy left; standard left→right wash */
.page-hero.hero-mirror .hero-bg img { transform: scaleX(-1); object-position: 62% 40%; }
.page-hero.hero-mirror .hero-bg::after { background: linear-gradient(95deg, rgba(30,108,240,0.95) 0%, rgba(30,108,240,0.88) 38%, rgba(30,108,240,0.45) 56%, rgba(30,108,240,0.08) 72%, rgba(30,108,240,0) 100%); }
@media (max-width: 55.99em) {
  .page-hero.hero-mirror { min-height: 34rem; display: flex; align-items: center; }
  .page-hero.hero-mirror .hero-bg img { object-position: 44% 35%; }
  .page-hero.hero-mirror .hero-bg::after { background: linear-gradient(90deg, rgba(30,108,240,0.96) 0%, rgba(30,108,240,0.9) 46%, rgba(30,108,240,0.45) 64%, rgba(30,108,240,0.1) 100%); }
  .page-hero.hero-mirror h1, .page-hero.hero-mirror .lead { max-width: 15.5rem; }
  .page-hero.hero-mirror h1 { font-size: clamp(2rem, 8.5vw, 2.5rem); }
  .page-hero.hero-mirror .lead { font-size: var(--fs-body); }
}

/* Fundraising hero: taller */
.page-hero.hero-mirror { min-height: min(84vh, 46rem); padding-block: var(--space-10); }
@media (max-width: 55.99em) { .page-hero.hero-mirror { min-height: calc(100svh - 3.75rem); min-height: calc(100vh - 3.75rem); } }

/* Centered interior hero (Contact) */
.page-hero.hero-center .container { text-align: center; display: grid; justify-items: center; }
.page-hero.hero-center h1, .page-hero.hero-center .lead { margin-inline: auto; }
.page-hero.hero-center .sticker { margin-inline: auto; }
.page-hero.hero-center .btn-group { justify-content: center; }
.page-hero.hero-center .hero-bg::after { background: linear-gradient(180deg, rgba(30,108,240,0.86) 0%, rgba(30,108,240,0.9) 100%); }

/* FAQ answer links + helper answer link */
.faq .faq-body > div { min-width: 0; }
.faq-cta { display: inline-block; margin-top: var(--space-2); font-weight: 800; color: var(--color-blue); text-decoration-color: var(--color-blue); text-underline-offset: 0.25em; }
.faq-cta:hover { color: var(--color-navy); }
.helper-cta { display: inline-block; margin: 0 0 var(--space-3) 2.25rem; font-weight: 800; font-size: var(--fs-small); color: var(--color-blue); }
.helper-cta[hidden] { display: none; }

/* Centered hero: no sparkle glued to the accent word; a few placed around the copy instead */
.page-hero.hero-center .accent::after { display: none; }
.hero-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.hero-sparkles .sparkle { color: var(--color-white); }
.hero-sparkles .sparkle.a { top: 18%; left: 14%; width: 1.6rem; height: 1.6rem; }
.hero-sparkles .sparkle.b { top: 30%; right: 16%; width: 1.1rem; height: 1.1rem; animation-delay: 0.7s; }
.hero-sparkles .sparkle.c { bottom: 22%; left: 24%; width: 0.9rem; height: 0.9rem; animation-delay: 1.3s; }
.hero-sparkles .sparkle.d { bottom: 18%; right: 26%; width: 1.4rem; height: 1.4rem; animation-delay: 1.9s; }
@media (max-width: 55.99em) { .hero-sparkles .sparkle.a { left: 6%; } .hero-sparkles .sparkle.b { right: 6%; } .hero-sparkles .sparkle.c, .hero-sparkles .sparkle.d { display: none; } }

/* Glossy logo-style bubbles in the centered hero */
.hbub { position: absolute; border-radius: 50%; border: 3px solid rgba(255,255,255,0.75);
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.35) 18%, rgba(124,198,255,0.55) 55%, rgba(30,108,240,0.35) 100%);
  box-shadow: inset -0.35rem -0.35rem 0.6rem rgba(13,43,107,0.18); animation: float-straight 6s ease-in-out infinite; }
.hbub::before { content: ""; position: absolute; top: 16%; left: 20%; width: 26%; height: 12%; border-radius: 50%; background: rgba(255,255,255,0.95); transform: rotate(-25deg); }
.hbub.a { width: 4.5rem; height: 4.5rem; top: 12%; left: 7%; }
.hbub.b { width: 2rem; height: 2rem; top: 40%; left: 11%; animation-delay: -1.5s; }
.hbub.c { width: 3.25rem; height: 3.25rem; top: 16%; right: 9%; animation-delay: -3s; }
.hbub.d { width: 1.6rem; height: 1.6rem; top: 48%; right: 12%; animation-delay: -4.5s; }
.hbub.e { width: 2.6rem; height: 2.6rem; bottom: 14%; right: 20%; animation-delay: -2s; }
@media (max-width: 55.99em) { .hbub.b, .hbub.d, .hbub.e { display: none; } .hbub.a { width: 3rem; height: 3rem; left: 4%; top: 8%; } .hbub.c { width: 2.25rem; height: 2.25rem; right: 5%; top: 10%; } }
@media (prefers-reduced-motion: reduce) { .hbub { animation: none; } }

/* Location page: mascot tour guide + amenities as floating soap bubbles */
.tour { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 56em) { .tour { grid-template-columns: minmax(0, 22rem) 1fr; } }
.tour-guide { display: flex; align-items: center; gap: var(--space-4); justify-content: center; }
.tour-guide img { width: clamp(7rem, 12vw, 10rem); height: auto; flex: 0 0 auto; animation: float-straight 5s ease-in-out infinite; filter: drop-shadow(0 12px 22px var(--tint-navy-16)); }
.tour-guide .speech { position: relative; margin: 0; max-width: 14rem; }
.tour-guide .speech::after { left: -0.7rem; bottom: auto; top: 50%; transform: translateY(-50%); width: 1rem; height: 1.2rem; clip-path: polygon(100% 0, 100% 100%, 0 50%); }
.tour-guide .speech { color: var(--color-navy); }
.soap-tags { list-style: none; margin: 0; padding: var(--space-4) 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); justify-items: center; }
@media (min-width: 48em) { .soap-tags { grid-template-columns: repeat(4, 1fr); } .soap-tags li:nth-child(2), .soap-tags li:nth-child(4) { margin-top: var(--space-7); } }
.soap { position: relative; display: grid; place-content: center; justify-items: center; text-align: center; gap: 0.15rem; width: clamp(9rem, 14vw, 11rem); aspect-ratio: 1; border-radius: 50%; padding: var(--space-4); text-decoration: none; color: var(--color-navy);
  background: radial-gradient(circle at 32% 28%, var(--color-white) 0%, rgba(255,255,255,0.7) 22%, var(--tint-sky-45) 60%, var(--tint-sky-70) 100%);
  border: 3px solid var(--color-white); box-shadow: inset -0.5rem -0.5rem 1rem rgba(13,43,107,0.12), 0 14px 28px var(--tint-navy-16);
  animation: float-straight 6s ease-in-out infinite; transition: transform var(--dur-base) var(--ease-bounce), box-shadow var(--dur-base); }
.soap::before { content: ""; position: absolute; top: 12%; left: 18%; width: 26%; height: 11%; border-radius: 50%; background: rgba(255,255,255,0.95); transform: rotate(-25deg); }
.soap-tags li:nth-child(2) .soap { animation-delay: -1.5s; } .soap-tags li:nth-child(3) .soap { animation-delay: -3s; } .soap-tags li:nth-child(4) .soap { animation-delay: -4.5s; }
.soap svg { width: 2rem; height: 2rem; color: var(--color-blue); margin-bottom: 0.2rem; }
.soap strong { font-family: var(--font-heading); font-size: 1rem; line-height: 1.1; }
.soap span { font-size: 0.72rem; font-weight: 700; color: var(--color-blue); line-height: 1.2; }
.soap:hover, .soap:focus-visible { transform: translateY(-8px) scale(1.05); animation-play-state: paused; box-shadow: inset -0.5rem -0.5rem 1rem rgba(13,43,107,0.12), var(--shadow-lg); }
.js .soap-tags li.reveal { transform: translateY(1rem) scale(0.8); transition: opacity 400ms var(--ease-out), transform 700ms var(--ease-bounce); }
.js .soap-tags li.reveal.is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) { .soap, .tour-guide img { animation: none; } }

.tour-guide .speech { max-width: 17rem; }

/* Flipped hero on mobile: never mirror photos that contain signage; wash from the left, copy narrow */
@media (max-width: 55.99em) {
  .page-hero.hero-flip .hero-bg img { transform: none; object-position: 25% 60%; }
  .page-hero.hero-flip .hero-bg::after { background: linear-gradient(180deg, rgba(30,108,240,0.15) 0%, rgba(30,108,240,0.6) 45%, rgba(30,108,240,0.95) 70%, rgba(30,108,240,0.97) 100%); }
  .page-hero.hero-flip { align-items: flex-end; min-height: 34rem; }
  .page-hero.hero-flip h1, .page-hero.hero-flip .lead { max-width: none; }
}

/* Centered hero over a photo: even blue overlay, no side gradient */
.page-hero.hero-center .hero-bg img { object-position: 50% 55%; }
.page-hero.hero-center .hero-bg::after { background: rgba(30,108,240,0.82); }
.page-hero.hero-center { min-height: min(78vh, 44rem); }
.page-hero.hero-center h1 { text-shadow: 0 2px 20px rgba(13,43,107,0.3); }

@media (max-width: 40em) { .page-hero.hero-center h1 br { display: none; } }

.page-hero.hero-center .hero-bg::after { background: rgba(30,108,240,0.9); }

/* Utility pages (free wash, thank you): everything on the center line */
.util-logo { display: block; width: fit-content; margin-inline: auto; }
.page-hero .container.text-center { display: grid; justify-items: center; text-align: center; }
.page-hero .container.text-center > * { margin-inline: auto; }
.page-hero .container.text-center .btn-group { justify-content: center; }
@keyframes confetti-rise { 0% { transform: translateY(0) scale(0.6); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateY(-110vh) scale(1.2); opacity: 0; } }

/* Address links: underline only on hover or focus */
address a, .info-list a[href*="google.com/maps"], .info-list a[href^="/locations"] { text-decoration: none; }
address a:hover, address a:focus-visible, .info-list a[href*="google.com/maps"]:hover, .info-list a[href*="google.com/maps"]:focus-visible, .info-list a[href^="/locations"]:hover, .info-list a[href^="/locations"]:focus-visible { text-decoration: underline; }

.footer-fine { display: grid; gap: 0.25rem; }
.footer-fine p { margin: 0; opacity: 0.85; }
.footer-bottom { align-items: flex-start; }

.footer-loc { margin: 0 0 var(--space-2); }
.footer-loc a { font-weight: 800; text-decoration: none; }
.footer-loc a:hover, .footer-loc a:focus-visible { text-decoration: underline; }

/* Footer tagline like the brand-guide sign: centered under the logo, Baloo caps, red heart */
.footer-grid > div:first-child { display: grid; justify-items: center; width: fit-content; }
.footer-logo { display: block; }
.footer-tag { display: inline-flex; align-items: center; gap: 0.45rem; margin: var(--space-2) 0 0; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-white); }
.footer-tag svg { width: 0.9rem; height: 0.9rem; color: var(--color-red); }

/* Footer tagline centered under the logo's own width */
.footer-grid > div:first-child { display: block; width: auto; }
.footer-logo { display: block; width: 14rem; }
.footer-tag { display: flex; justify-content: center; width: 14rem; margin-top: var(--space-2); }

/* =====================================================================
   Accessibility controls inside the bubble helper (first-party, no overlay)
   ===================================================================== */
.helper-tabs { display: flex; gap: var(--space-1); padding: var(--space-2) var(--space-3) 0; background: var(--color-cloud); }
.helper-tab { flex: 1; font: 800 var(--fs-small)/1 var(--font-body); padding: var(--space-3); border: 0; border-radius: var(--radius-sm) var(--radius-sm) 0 0; background: transparent; color: var(--color-navy); cursor: pointer; }
.helper-tab.is-active { background: var(--color-white); color: var(--color-blue); box-shadow: 0 -2px 0 var(--color-blue) inset; }
.helper-body[hidden] { display: none; }
.a11y-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }
.a11y-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); background: var(--color-white); color: var(--color-navy); border: 2px solid var(--tint-sky-40); border-radius: var(--radius-img); padding: var(--space-2) var(--space-3); font-weight: 700; font-size: var(--fs-small); cursor: pointer; }
.a11y-toggle:hover, .a11y-toggle:focus-visible { border-color: var(--color-blue); }
.a11y-sw { position: relative; width: 2.4rem; height: 1.35rem; border-radius: 999px; background: var(--switch-off); flex: 0 0 auto; transition: background-color var(--dur-fast); }
.a11y-sw::after { content: ""; position: absolute; top: 0.15rem; left: 0.15rem; width: 1.05rem; height: 1.05rem; border-radius: 50%; background: var(--color-white); box-shadow: 0 1px 3px rgba(13,43,107,0.3); transition: transform var(--dur-fast) var(--ease-bounce); }
.a11y-toggle[aria-pressed="true"] .a11y-sw { background: var(--color-blue); }
.a11y-toggle[aria-pressed="true"] .a11y-sw::after { transform: translateX(1.05rem); }
.a11y-toggle[aria-pressed="true"] .a11y-k::after { content: " · on"; font-weight: 600; color: var(--color-blue); }

/* Preference effects */
html.a11y-text { font-size: 118%; }
html.a11y-text .hero-full h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
html.a11y-links a { text-decoration: underline !important; text-underline-offset: 0.2em; }
html.a11y-spacing body { letter-spacing: 0.03em; word-spacing: 0.1em; line-height: 1.85; }
html.a11y-spacing p, html.a11y-spacing li { margin-bottom: 1.1em; }
html.a11y-contrast { --color-cloud: #FFFFFF; --color-sky: var(--hc-sky); --tint-sky-20: var(--tint-sky-10); --tint-sky-40: var(--tint-sky-25); --color-blue: var(--hc-blue); --color-red: var(--hc-red); }
html.a11y-contrast body { color: var(--hc-text); }
html.a11y-contrast .hero-full .hero-bg::after, html.a11y-contrast .page-hero.on-dark .hero-bg::after, html.a11y-contrast .page-hero.hero-center .hero-bg::after { background: rgba(11,63,168,0.96); }
html.a11y-contrast .band, html.a11y-contrast .club-hero, html.a11y-contrast .ticker { background: var(--hc-blue); }
html.a11y-contrast .band-pattern, html.a11y-contrast .bubbles, html.a11y-contrast .hero-sparkles, html.a11y-contrast .sparkle, html.a11y-contrast .accent::after { display: none !important; }
html.a11y-contrast .accent { color: inherit; }
html.a11y-contrast .btn-secondary { border-width: 3px; }
html.a11y-contrast .faq details, html.a11y-contrast .tile, html.a11y-contrast .ticket, html.a11y-contrast .fr-goal { outline: 2px solid var(--hc-text); outline-offset: -2px; }

/* =====================================================================
   WCAG contrast fixes (WAVE run 2026-09-15)
   ===================================================================== */
/* Nothing text-bearing at partial opacity on blue or red */
.hero-kicker span, .menu-text span, .tk-tag, .mc-club, .calc-k, .mc-label, .helper-head span, .footer-fine p, .fr-num em { opacity: 1; }
.menu-price small { opacity: 1; color: inherit; }
/* Small blue text on off-white / tinted sections fails 4.5:1 — use navy there */
.sticker, .sticker.sky, .section-head .sticker { color: var(--color-navy); }
.legal-toc-h, .legal-eff span, .calc-label output, .soap span, .faq-cta, .tk-foot, .helper-cta, .a11y-toggle[aria-pressed="true"] .a11y-k::after, .calc-vs, .tk-price small { color: var(--color-navy); }
.faq-cta, .helper-cta { text-decoration-color: var(--color-blue); }
/* Outline buttons: give them a white fill so blue text has a passing background everywhere */
.btn-secondary { background: var(--color-white); }
.on-dark .btn-secondary, .section-navy .btn-secondary, .band .btn-secondary, .club-hero .btn-secondary, .page-hero.on-dark .btn-secondary, .hero-full .btn-secondary, .thanks-hero .btn-secondary, .cta-band .btn-secondary { background: transparent; }
.calc-plan { background: var(--color-white); }
/* Ticker: white on red passes; keep dots decorative */
/* Station number badges: red badge with white text is 4.75:1; keep bold */
.station-bubble .num { font-weight: 800; }

/* Centered hero without a photo: blue with the bubble-ring pattern */
.page-hero.hero-center .band-pattern { z-index: 0; }

/* WAVE pass 2: no partial-opacity text anywhere content-bearing */
.menu-inc, .menu-more .menu-inc, .menu-row > .menu-inc { opacity: 1; }
.menu-inc li::before { opacity: 1; }
.band .small { opacity: 1 !important; }
.menu-text span, .tk-tag, .mc-club { opacity: 1; }
/* Step numbers drawn by CSS from a data attribute, so there is no transparent text node for WAVE to grade */
.fr-step-num::before { content: attr(data-n); }
