/* ==========================================================================
   COOL SPRINGZ — design system
   Signature device: the HEIGHT RULE. Pricing here is by height, not age, so a
   measuring rule is the structural spine of the whole site: a fixed tick rail
   on desktop, tick eyebrows on every section, and the 48" line called out in
   sun yellow wherever height matters.

   Brand tokens are all in :root. To match the live brand exactly, swap the six
   values under "BRAND" — nothing else needs to change.
   ========================================================================== */

:root{
  /* ---- BRAND (swap these to match the live logo exactly) ---- */
  --ink:      #000000;   /* black — header, footer, dark sections */
  --cyan:     #00CCFF;   /* "Cool" — held back to the logo, one CTA band, one card rule */
  --green:    #5ADC3C;   /* "Springz" / frog — primary CTA */
  --sun:      #FFF500;   /* dark grounds only — see --hot for light */
  --coral:    #FF6319;   /* used sparingly: alerts, sold-out, urgency */
  --paper:    #E5E5E5;   /* page background */

  /* ---- derived ---- */
  --ink-2:    #5F5F5F;   /* grey ground, darkened from #858585 so white text clears AA (see README) */
  --ink-3:    #555555;   /* lede text on light ground */
  --white:    #FFFFFF;
  --tint:     #F8F8F8;   /* form fills and subtle rows */
  --line:     #CDD3D5;
  --muted:    #666666;   /* darkened from #858585 so small text clears AA on both light grounds */
  --muted-2:  #E0E0E0;   /* muted text on DARK grounds — must be light, not dark */
  --green-dk: #246F16;   /* green is too light for text on white — links use this */
  --cyan-dk:  #006B85;   /* kept available; no longer used for body text */
  --hot:      #FF0099;   /* the light-ground counterpart to --sun (yellow is ~1.1:1 on white) */
  --hot-dk:   #C40074;   /* magenta as small text on light */
  --coral-dk: #B03A00;   /* coral as text on white; --coral stays for accents */

  /* ---- type ---- */
  --display: "Special Gothic Expanded One", "Dobra Bold", "Trebuchet MS", system-ui, sans-serif;
  --body:    "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ui:      "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; /* small UI text — Sigmar is unreadable below ~1.2rem */
  --label:   "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    var(--label);  /* label role: was DM Mono, now Nunito */

  /* ---- scale ---- */
  --step--1: clamp(.82rem, .8rem + .1vw, .88rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.13rem + .34vw, 1.42rem);
  --step-2:  clamp(1.5rem, 1.36rem + .68vw, 2rem);
  --step-3:  clamp(1.9rem, 1.62rem + 1.36vw, 2.9rem);
  --step-4:  clamp(2.1rem, 1.68rem + 2.1vw, 3.6rem);
  --step-5:  clamp(2.4rem, 1.6rem + 4.2vw, 5.5rem);

  --wrap: 1200px;
  --r-sm: 6px;
  --r:    14px;
  --r-lg: 26px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; }
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  font-size:var(--step-0);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:var(--coral-dk); text-decoration-thickness:1px; text-underline-offset:3px; }
a:hover{ color:var(--ink); }

:focus-visible{
  outline:3px solid var(--hot);
  outline-offset:2px;
  box-shadow:0 0 0 6px rgba(0,0,0,.88);
  border-radius:3px;
}

.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--hot); color:var(--ink); padding:.75rem 1.25rem;
  font-family:var(--label); font-weight:700; font-size:.85rem; border-radius:0 0 var(--r-sm) 0;
}
.skip:focus{ left:0; }

.wrap{ width:min(100% - 2.5rem, var(--wrap)); margin-inline:auto; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.utility{
  background:var(--ink-2); color:rgba(255,255,255,.75);
  font-family:var(--label); font-weight:600; font-size:.74rem; letter-spacing:.08em;
}
.utility .wrap{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.5rem 0; flex-wrap:wrap; }
.utility a{ color:rgba(255,255,255,.75); text-decoration:none; }
.utility a:hover{ color:var(--coral); }
.utility .tag{ color:var(--coral); text-transform:lowercase; letter-spacing:.14em; }
.utility .soc{ display:flex; gap:1rem; flex-wrap:wrap; }
@media (max-width:700px){
  .utility .wrap{ padding:.45rem 0; }
  .utility .soc{ gap:.85rem; }
  .utility .soc a:nth-child(4),   /* YouTube  */
  .utility .soc a:nth-child(6){ display:none; } /* Log in */
}

.site-header{ background:var(--ink); position:sticky; top:0; z-index:70; border-bottom:1px solid rgba(255,255,255,.1); }
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; padding:.85rem 0; }
.brand{ display:flex; align-items:center; gap:.7rem; text-decoration:none; flex-shrink:0; }
.brand img{ height:44px; width:auto; }
.brand-fallback{ font-family:var(--display); font-weight:400; letter-spacing:0; font-size:1.3rem; color:var(--white); }
.brand-fallback span{ color:var(--cyan); }

.nav-toggle{
  display:block; background:none; border:1px solid rgba(255,255,255,.3); color:var(--white);
  font-family:var(--label); font-weight:700; font-size:.8rem; padding:.5rem .8rem; border-radius:var(--r-sm); cursor:pointer;
}
.nav-toggle:hover{ border-color:var(--coral); color:var(--coral); }

.nav{ display:none; }
.nav.open{ display:block; position:absolute; top:100%; left:0; right:0; background:var(--ink-2); padding:1rem 1.25rem 1.5rem; border-bottom:3px solid var(--coral); }
.nav ul{ list-style:none; margin:0; padding:0; }
.nav li{ border-bottom:1px solid rgba(255,255,255,.08); }
.nav a{
  display:block; padding:.75rem .25rem; color:rgba(255,255,255,.88); text-decoration:none;
  font-family:var(--ui); font-weight:700; font-size:1rem;
}
.nav a:hover,.nav a[aria-current="page"]{ color:var(--sun); }
.nav .soon{
  display:inline-block; margin-left:.35rem; padding:.1rem .4rem; border-radius:20px;
  background:var(--hot); color:var(--ink); font-family:var(--label); font-weight:700;
  font-size:.55rem; letter-spacing:.1em; text-transform:uppercase; vertical-align:middle;
}
.nav .nav-cta{ margin-top:1rem; background:var(--green); color:var(--ink); text-align:center; border-radius:var(--r-sm); font-weight:800; }
.nav .nav-cta:hover{ background:var(--sun); color:var(--ink); }
@media (max-width:999px){
  /* the flattened mobile list already contains the hub link, so the parent
     anchor would just be a duplicate */
  .nav .has-sub > a{ display:none; }
}
.nav .grp{ font-family:var(--label); font-weight:700; font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted-2); padding:1rem .25rem .35rem; border:0; }

@media (min-width:1000px){
  .nav-toggle{ display:none; }
  .nav{ display:block; }
  .nav ul{ display:flex; align-items:center; gap:.25rem; }
  .nav li{ border:0; position:relative; }
  .nav a{ padding:.55rem .7rem; font-size:.94rem; border-radius:var(--r-sm); }
  .nav .grp{ display:none; }
  .nav .soon{
  display:inline-block; margin-left:.35rem; padding:.1rem .4rem; border-radius:20px;
  background:var(--hot); color:var(--ink); font-family:var(--label); font-weight:700;
  font-size:.55rem; letter-spacing:.1em; text-transform:uppercase; vertical-align:middle;
}
.nav .nav-cta{ margin:0 0 0 .5rem; padding:.6rem 1.1rem; }
  .nav .has-sub:hover ul.sub,
  .nav .has-sub:focus-within ul.sub{ display:block; }
  .nav ul.sub{
    display:none; position:absolute; top:100%; left:0; min-width:250px;
    background:var(--ink-2); border:1px solid rgba(255,255,255,.12);
    border-top:3px solid var(--coral); border-radius:0 0 var(--r) var(--r);
    padding:.5rem; box-shadow:0 18px 40px rgba(0,0,0,.35); max-height:70vh; overflow-y:auto;
  }
  .nav ul.sub li{ display:block; width:100%; }
  .nav li:nth-last-child(-n+3) ul.sub{ left:auto; right:0; border-radius:0 0 var(--r) var(--r); }
  .nav ul.sub a{ font-size:.88rem; font-weight:500; padding:.5rem .7rem; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--ui); font-weight:700; font-size:1rem;
  padding:.85rem 1.6rem; border-radius:var(--r-sm); border:2px solid transparent;
  text-decoration:none; cursor:pointer; transition:transform .12s ease, background .15s ease, color .15s ease;
  line-height:1.2;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn-primary{ background:var(--green); color:var(--ink); }
.btn-primary:hover{ background:var(--hot); color:var(--ink); }
.btn-secondary{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-secondary:hover{ background:var(--ink); color:var(--white); }
.btn-ghost{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.45); }
.btn-ghost:hover{ background:var(--white); color:var(--ink); border-color:var(--white); }
.btn-sm{ padding:.6rem 1.1rem; font-size:.9rem; }
.btn-row{ display:flex; flex-wrap:wrap; gap:.85rem; margin-top:1.75rem; }

/* ==========================================================================
   SECTIONS + THE TICK EYEBROW
   ========================================================================== */
.section{ padding:clamp(3.5rem,7vw,6.5rem) 0; }
.section.tight{ padding:clamp(2.25rem,4vw,3.5rem) 0; }
.section.dark{ background:var(--ink); color:rgba(255,255,255,.85); }
.section.dark h2,.section.dark h3{ color:var(--white); }
.section.ink2{ background:var(--ink-2); color:rgba(255,255,255,.85); }
.section.ink2 h2,.section.ink2 h3{ color:var(--white); }
.section.white{ background:var(--white); }

.eyebrow{
  font-family:var(--label); font-weight:700; font-size:.72rem; letter-spacing:.13em; text-transform:uppercase;
  color:var(--coral-dk); margin:0 0 .9rem; display:flex; align-items:center; gap:.6rem;
}
.eyebrow::before{ content:""; width:22px; height:2px; background:var(--coral); flex-shrink:0; }
.dark .eyebrow,.ink2 .eyebrow{ color:var(--coral); }

h1,h2{ font-family:var(--display); font-weight:400; line-height:1.12; letter-spacing:0; margin:0 0 .6rem; color:var(--ink); }
h1{ font-size:var(--step-4); }
h2{ font-size:var(--step-3); }
h3,h4{ font-family:var(--ui); line-height:1.25; letter-spacing:-.01em; margin:0 0 .6rem; color:var(--ink); }
h3{ font-size:var(--step-1); font-weight:800; }
h4{ font-size:var(--step-0); font-weight:800; }
p{ margin:0 0 1.1rem; max-width:68ch; }
.lede{ font-size:var(--step-1); line-height:1.5; color:var(--ink-3); max-width:60ch; }
.dark .lede,.ink2 .lede{ color:rgba(255,255,255,.8); }
.section-head{ max-width:62ch; margin-bottom:2.5rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ background:var(--ink); color:var(--white); position:relative; overflow:hidden; }
.hero::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(120% 80% at 15% 0%, rgba(255,99,25,.14), transparent 60%),
             radial-gradient(90% 70% at 90% 100%, rgba(90,220,60,.14), transparent 60%);
}
.hero .wrap{ position:relative; z-index:2; padding:clamp(3rem,7vw,6rem) 0 clamp(3rem,6vw,5rem); }
.hero-grid{ display:grid; gap:clamp(2rem,4vw,3.5rem); align-items:center; }
@media (min-width:960px){ .hero-grid{ grid-template-columns:1.05fr .95fr; } }
.hero h1{ color:var(--white); font-size:var(--step-5); font-weight:400; line-height:1.02; margin-bottom:1.1rem; }
.hero h1 .cy{ color:var(--coral); }
.hero h1 .gr{ color:var(--green); }
.hero .lede{ color:rgba(255,255,255,.82); }

/* the 48" line, drawn across the hero art */
.hero-art{ position:relative; }
.hero-art .frame{
  border-radius:var(--r-lg); overflow:hidden; border:1px solid rgba(255,255,255,.14);
  display:grid; grid-template-columns:1fr 1fr; gap:4px; background:rgba(255,255,255,.08);
}
.hero-art .frame img,
.hero-art .frame video{ width:100%; height:100%; object-fit:cover; aspect-ratio:1/1; display:block; }
.hero-art .frame img:first-child,
.hero-art .frame video:first-child{ grid-row:span 2; aspect-ratio:1/2.02; }
.countdown{
  display:inline-flex; align-items:center; gap:.85rem; flex-wrap:wrap;
  margin:1.75rem 0 0; padding:.7rem 1.1rem; border-radius:var(--r-sm);
  background:rgba(255,0,153,.16); border:1px solid var(--hot);
}
.countdown .cd-label{
  font-family:var(--label); font-weight:700; font-size:.66rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--hot);
}
.countdown .cd-time{
  font-family:var(--display); font-size:1.1rem; color:#FFFFFF; font-variant-numeric:tabular-nums;
}
.countdown.is-urgent{ background:rgba(255,0,153,.26); }
.countdown.is-closed{ background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.3); }
.countdown.is-closed .cd-label{ color:rgba(255,255,255,.7); }

.hero-stats{
  display:flex; flex-wrap:wrap; gap:1.75rem 2.5rem; margin-top:2.5rem;
  padding-top:1.75rem; border-top:1px solid rgba(255,255,255,.14);
}
.hero-stats div{ min-width:110px; }
.hero-stats b{ display:block; font-family:var(--display); font-size:1.6rem; font-weight:400; color:var(--sun); line-height:1; }
.hero-stats b .star{ font-family:var(--ui); font-weight:800; font-size:.82em; vertical-align:.04em; }  /* ★ is not in the display font */
.hero-stats span{ font-family:var(--mono); font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.55); }

/* ==========================================================================
   ARC DIVIDER — the bounce path
   ========================================================================== */
.arc{ display:block; width:100%; height:52px; }
.arc path{ fill:none; stroke:var(--coral); stroke-width:2; stroke-dasharray:7 7; opacity:.55; }

/* ==========================================================================
   CARDS + GRIDS
   ========================================================================== */
.grid{ display:grid; gap:1.4rem; }
.g2{ grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); }
.g3{ grid-template-columns:repeat(auto-fit,minmax(265px,1fr)); }
.g4{ grid-template-columns:repeat(auto-fit,minmax(205px,1fr)); }

.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--r);
  box-shadow:0 1px 2px rgba(0,0,0,.04); padding:1.6rem; position:relative; transition:transform .15s ease, box-shadow .15s ease;
}
.card h3{ margin-bottom:.5rem; }
.card p:last-child{ margin-bottom:0; }
.card.lift:hover{ transform:translateY(-4px); box-shadow:0 14px 34px rgba(0,0,0,.1); }
/* cards on the black .dark sections: a translucent lift off the background */
.dark .card{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.28);
  color:rgba(255,255,255,.92);
}
.dark .card h3{ color:#FFFFFF; }
.dark .card a{ color:var(--sun); }
.dark .card a:hover{ color:#FFFFFF; }
.dark .card .tickmark{ color:var(--sun); }

/* cards on the grey .ink2 sections: light panels with dark text.
   A translucent white lift only reaches 4.3:1 against the grey, so these go
   properly light instead — much easier to read and genuinely lighter. */
.ink2 .card{
  background:#F4F4F4;
  border-color:rgba(0,0,0,.10);
  box-shadow:0 2px 10px rgba(0,0,0,.18);
  color:var(--ink);
}
.ink2 .card h3,
.ink2 .card h4,
.ink2 .card strong{ color:var(--ink); }
.ink2 .card p{ color:#3A3A3A; }
.ink2 .card .tickmark{ color:var(--coral-dk); }
.ink2 .card a{ color:var(--coral-dk); }
.ink2 .card a:hover{ color:var(--ink); }
.ink2 .card .muted,.ink2 .card .small.muted{ color:#5F5F5F; }
.ink2 .card .checklist li::before{ background:var(--green-dk); }
.ink2 .card .hours li{ border-bottom-color:rgba(0,0,0,.12); }
.ink2 .card .hours .d{ color:#5F5F5F; }
.card .tickmark{
  font-family:var(--label); font-weight:700; font-size:.68rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted); display:block; margin-bottom:.7rem;
}
.dark .card .tickmark,.ink2 .card .tickmark{ color:var(--coral); }
.card-top{ border-top:4px solid var(--coral); }
.card-top.g{ border-top-color:var(--green); }
.card-top.s{ border-top-color:var(--hot); }

.card-top.c{ border-top-color:var(--cyan); }

.feature{ background:var(--white); border:1px solid var(--line); box-shadow:0 1px 2px rgba(0,0,0,.04); border-radius:var(--r); overflow:hidden; }
.feature img,
.feature video{ width:100%; aspect-ratio:1/1; object-fit:cover; display:block; }

/* video used anywhere else in the page body */
video.media{ width:100%; height:auto; display:block; border-radius:var(--r); }
video.media-square{ aspect-ratio:1/1; object-fit:cover; }
video.media-wide{ aspect-ratio:16/9; object-fit:cover; }
.feature .body{ padding:1.1rem 1.2rem 1.3rem; }
.feature h3{ font-size:1.05rem; margin-bottom:.35rem; }
.feature p{ font-size:.9rem; color:var(--muted); margin:0; }

/* price cards */
.price{ background:var(--white); border:1px solid var(--line); box-shadow:0 1px 2px rgba(0,0,0,.04); border-radius:var(--r); padding:1.9rem; text-align:left; position:relative; }
.price .h{ font-family:var(--label); font-weight:700; font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.price .amt{ font-family:var(--display); font-weight:400; letter-spacing:0; font-variant-numeric:tabular-nums; font-size:2.9rem; line-height:1; margin:.5rem 0 .25rem; }
.price .amt sup{ font-size:1.05rem; top:-1.1rem; margin-right:.05em; }
.price ul{ list-style:none; padding:0; margin:1.1rem 0 0; }
.price li{ padding:.45rem 0 .45rem 1.5rem; position:relative; border-bottom:1px solid var(--line); font-size:.94rem; }
.price li:last-child{ border-bottom:0; }
.price li::before{ content:"↗"; position:absolute; left:0; color:var(--green-dk); font-weight:700; }
.price.hi{ border:2px solid var(--green); box-shadow:0 10px 30px rgba(90,220,60,.28); }
.price .flag{
  position:absolute; top:-13px; left:1.9rem; background:var(--green); color:var(--ink);
  font-family:var(--label); font-size:.66rem; letter-spacing:.1em; text-transform:uppercase;
  padding:.25rem .7rem; border-radius:20px; font-weight:700;
}

/* ==========================================================================
   PACKAGE TABLE / SPEC LIST
   ========================================================================== */
.spec{ width:100%; border-collapse:collapse; margin:1.5rem 0; font-size:.95rem; }
.spec th,.spec td{ text-align:left; padding:.85rem 1rem; border-bottom:1px solid var(--line); vertical-align:top; }
.spec thead th{
  font-family:var(--label); font-weight:700; font-size:.7rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--white); background:var(--ink); border-bottom:0;
}
.spec tbody tr:nth-child(even){ background:rgba(159,159,159,.045); }
.spec td:first-child{ font-weight:600; }
.table-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; }

/* today's pricing card — mirrors the Today's Hours card */
.hours .d em{
  display:block; font-style:normal; font-size:.66rem; letter-spacing:.04em;
  text-transform:none; color:var(--muted-2); margin-top:.15rem; max-width:22ch;
}
.pricing-today li{ align-items:flex-start; padding:.75rem 0; }
.pricing-today .d{ text-transform:uppercase; }
.pricing-today .t{ text-align:right; white-space:nowrap; }
.pricing-today .pv{ font-family:var(--display); font-size:1.35rem; line-height:1; font-variant-numeric:tabular-nums; }
.pricing-today .pv small{
  display:block; font-family:var(--label); font-weight:700; font-size:.58rem;
  letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-top:.3rem;
}
.pricing-today .pv + .pv{ margin-left:.9rem; }
/* once JS knows the day, collapse to the applicable column and drop the sub-labels */
#today-price[data-today="weekday"] .pv[data-when="weekend"],
#today-price[data-today="weekend"] .pv[data-when="weekday"]{ display:none; }
#today-price[data-today] .pv small{ display:none; }
@media (max-width:420px){ .pricing-today .pv{ font-size:1.15rem; } }

/* price grid — the day-of-week table */
.pricegrid th[scope="row"]{ font-weight:800; font-family:var(--ui); width:42%; }
.pricegrid td.p{
  font-family:var(--display); font-size:1.7rem; line-height:1;
  font-variant-numeric:tabular-nums; white-space:nowrap; vertical-align:middle;
}
.pricegrid thead th:not(:first-child){ text-align:center; }
.pricegrid td.p{ text-align:center; }
.pricegrid tbody tr:last-child td.p{ color:var(--ink); }
@media (max-width:560px){ .pricegrid td.p{ font-size:1.25rem; } .pricegrid th[scope="row"]{ width:40%; } }

.checklist{ list-style:none; padding:0; margin:1.25rem 0; }
.checklist li{ position:relative; padding:.4rem 0 .4rem 1.9rem; }
.checklist li::before{
  content:""; position:absolute; left:0; top:.95rem; width:11px; height:11px;
  border-radius:2px; background:var(--green);
}
.dark .checklist li::before,.ink2 .checklist li::before{ background:var(--coral); }

.numbered{ counter-reset:n; list-style:none; padding:0; margin:1.5rem 0; }
.numbered li{ counter-increment:n; position:relative; padding:0 0 1.4rem 3.2rem; }
.numbered li::before{
  content:counter(n,decimal-leading-zero); position:absolute; left:0; top:.05rem;
  font-family:var(--label); font-size:.84rem; color:var(--ink); background:var(--hot);
  width:2.1rem; height:2.1rem; display:grid; place-items:center; border-radius:50%; font-weight:700;
}

/* ==========================================================================
   CALLOUTS
   ========================================================================== */
.callout{ border-left:4px solid var(--coral); background:rgba(255,99,25,.09); padding:1.2rem 1.4rem; border-radius:0 var(--r-sm) var(--r-sm) 0; margin:1.75rem 0; }
.callout.sun{ border-left-color:var(--hot); background:rgba(255,0,153,.08); }
.callout.green{ border-left-color:var(--green); background:rgba(90,220,60,.14); }
.callout p:last-child{ margin-bottom:0; }
.callout strong{ font-family:var(--ui); font-weight:800; }

.quote{ border:0; margin:2rem 0; padding:0; }
.quote blockquote{ margin:0; font-family:var(--ui); font-weight:700; font-size:var(--step-1); line-height:1.45; letter-spacing:-.01em; }
.quote blockquote::before{ content:"“"; color:var(--coral-dk); }
.quote blockquote::after{ content:"”"; color:var(--coral-dk); }
.quote cite{ display:block; margin-top:.8rem; font-family:var(--label); font-weight:700; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); font-style:normal; }
.dark .quote cite,.ink2 .quote cite{ color:var(--muted-2); }
.dark .quote blockquote::before,.dark .quote blockquote::after,
.ink2 .quote blockquote::before,.ink2 .quote blockquote::after{ color:var(--coral); }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form{ background:var(--white); border:1px solid var(--line); box-shadow:0 1px 2px rgba(0,0,0,.04); border-radius:var(--r); padding:clamp(1.5rem,3vw,2.5rem); }
.field{ margin-bottom:1.2rem; }
.field label{ display:block; font-family:var(--label); font-weight:700; font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; color:var(--ink); margin-bottom:.4rem; }
.field .req{ color:var(--coral-dk); }
.field input,.field select,.field textarea{
  width:100%; padding:.8rem .9rem; border:1px solid var(--line); border-radius:var(--r-sm);
  font-family:var(--body); font-size:1rem; background:var(--tint); color:var(--ink);
}
.field input:focus,.field select:focus,.field textarea:focus{ border-color:var(--coral); background:var(--white); }
.field textarea{ min-height:130px; resize:vertical; }
.field .hint{ font-size:.82rem; color:var(--muted); margin:.35rem 0 0; }
.field-row{ display:grid; gap:1.2rem; }
@media (min-width:640px){ .field-row.two{ grid-template-columns:1fr 1fr; } }
.form-note{ font-size:.85rem; color:var(--muted); }

/* ==========================================================================
   HOURS TABLE (real text, not an image — this matters for SEO + screen readers)
   ========================================================================== */
.hours{ list-style:none; padding:0; margin:0; font-family:var(--label); font-size:.95rem; font-variant-numeric:tabular-nums; }
.hours li{ display:flex; justify-content:space-between; gap:1.5rem; padding:.6rem 0; border-bottom:1px dashed var(--line); }
.hours li:last-child{ border-bottom:0; }
.dark .hours li,.ink2 .hours li{ border-bottom-color:rgba(255,255,255,.14); }
.hours .d{ color:var(--muted); text-transform:uppercase; letter-spacing:.1em; font-size:.72rem; font-weight:700; align-self:center; }
.dark .hours .d,.ink2 .hours .d{ color:var(--muted-2); }
.hours .t{ font-weight:600; }

/* ==========================================================================
   FAQ (details/summary — no JS needed, and it renders in search results)
   ========================================================================== */
.faq details{ border-bottom:1px solid var(--line); }
.dark .faq details,.ink2 .faq details{ border-bottom-color:rgba(255,255,255,.14); }
.faq summary{
  cursor:pointer; padding:1.15rem 2.5rem 1.15rem 0; position:relative; list-style:none;
  font-family:var(--ui); font-weight:800; font-size:1.08rem; letter-spacing:-.01em;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+"; position:absolute; right:.25rem; top:1rem; font-family:var(--mono);
  font-size:1.4rem; color:var(--coral-dk); line-height:1;
}
.faq details[open] summary::after{ content:"–"; }
.faq details > div{ padding:0 0 1.3rem; }
.faq details > div p:last-child{ margin-bottom:0; }

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.crumb{ background:var(--white); border-bottom:1px solid var(--line); }
.crumb ol{
  list-style:none; display:flex; flex-wrap:wrap; gap:.5rem; margin:0; padding:.75rem 0;
  font-family:var(--label); font-weight:600; font-size:.74rem; letter-spacing:.06em; color:var(--muted);
}
.crumb li::after{ content:"›"; margin-left:.5rem; color:var(--line); }
.crumb li:last-child::after{ content:""; }
.crumb a{ color:var(--muted); text-decoration:none; }
.crumb a:hover{ color:var(--coral-dk); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.band{ background:var(--green); color:var(--ink); }
.band .wrap{ padding:clamp(2.5rem,5vw,3.75rem) 0; display:grid; gap:1.5rem; align-items:center; }
@media (min-width:840px){ .band .wrap{ grid-template-columns:1.4fr auto; } }
.band h2{ margin:0; font-size:var(--step-2); line-height:1.15; }
.band p{ margin:.5rem 0 0; max-width:52ch; }
.band .btn-primary{ background:var(--ink); color:var(--white); }
.band .btn-primary:hover{ background:var(--white); color:var(--ink); }
.band.sun{ background:var(--hot); }
.band.cy{ background:var(--cyan); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--ink); color:rgba(255,255,255,.7); padding:clamp(3rem,5vw,4.5rem) 0 2rem; }
.site-footer h4{ color:var(--white); font-size:.78rem; font-family:var(--label); font-weight:700; letter-spacing:.16em; text-transform:uppercase; margin-bottom:1rem; }
.site-footer ul{ list-style:none; padding:0; margin:0; }
.site-footer li{ margin-bottom:.5rem; }
.site-footer a{ color:rgba(255,255,255,.7); text-decoration:none; font-size:.93rem; }
.site-footer a:hover{ color:var(--sun); }
.foot-grid{ display:grid; gap:2.5rem; }
@media (min-width:720px){ .foot-grid{ grid-template-columns:1.5fr 1fr 1fr 1fr; } }
.foot-brand img{ height:48px; margin-bottom:1rem; }
.foot-brand p{ font-size:.9rem; max-width:34ch; }
.foot-bottom{
  margin-top:3rem; padding-top:1.5rem; border-top:1px solid rgba(255,255,255,.12);
  display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between;
  font-family:var(--label); font-size:.72rem; color:rgba(255,255,255,.45);
}
.foot-bottom a{ font-size:.72rem; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.center{ text-align:center; }
.mono{ font-family:var(--mono); }
.small{ font-size:.87rem; }
.muted{ color:var(--muted); }
.dark .muted,.ink2 .muted{ color:var(--muted-2); }
.mt0{ margin-top:0; } .mb0{ margin-bottom:0; }
.pill{
  display:inline-block; font-family:var(--label); font-weight:700; font-size:.68rem; letter-spacing:.1em;
  text-transform:uppercase; padding:.3rem .7rem; border-radius:20px;
  background:rgba(255,99,25,.14); color:var(--coral-dk);
}
.pill.g{ background:rgba(90,220,60,.18); color:var(--green-dk); }
.pill.s{ background:rgba(255,0,153,.12); color:var(--hot-dk); }
.split{ display:grid; gap:clamp(2rem,4vw,3.5rem); align-items:start; }
@media (min-width:900px){ .split{ grid-template-columns:1fr 1fr; } .split.wide-l{ grid-template-columns:1.35fr 1fr; } .split.wide-r{ grid-template-columns:1fr 1.35fr; } }
.sticky{ position:sticky; top:100px; }

.reveal{ opacity:0; transform:translateY(16px); transition:opacity .5s ease, transform .5s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }
