/* Bonneville Detail Works — site styles */

:root {
  --paper: #F4F1E8;          /* Salt — warm cream ground */
  --surface: #FCFAF4;        /* warm white — cards */
  --surface-2: #ECE4D5;      /* sand-tinted panel */
  --ink: #1B1815;            /* warm near-black */
  --ink-2: #3A342C;
  --graphite: #6E6557;       /* warm grey */
  --faint: #857B69;
  --hair: #E6DECF;
  --hair-strong: #D6CBB6;
  --accent: #A83D1C;         /* Sunset — text-safe rust */
  --accent-solid: #B84829;   /* Sunset — button bg, white text ≥4.5:1 */
  --accent-ink: #8F3417;     /* deeper rust — accent text / links */
  --accent-soft: #F5E5DC;    /* warm soft accent bg */
  --sand: #C8B48B;           /* Sand — warm secondary */
  --gold: #A9803F;           /* used sparingly for stars / premium */
  --shadow-sm: 0 1px 2px rgba(27,24,21,.05), 0 3px 10px rgba(27,24,21,.06);
  --shadow-md: 0 4px 12px rgba(27,24,21,.08), 0 14px 40px rgba(27,24,21,.09);
  --r: 18px;
  --font: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #14110D; --surface: #1E1A15; --surface-2: #26211A; --ink: #F4F1E8;
    --ink-2: #D8D0C2; --graphite: #A79D8B; --faint: #948A78; --hair: #2C271F; --hair-strong: #3A342A;
    --accent: #E27A4E; --accent-solid: #C1502C; --accent-ink: #F0996B; --accent-soft: #3A2019;
    --sand: #D8C39A; --gold: #CBA968;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 3px 12px rgba(0,0,0,.3);
    --shadow-md: 0 6px 20px rgba(0,0,0,.35), 0 18px 50px rgba(0,0,0,.4);
  }
}
:root[data-theme="light"] {
  --paper:#F4F1E8; --surface:#FCFAF4; --surface-2:#ECE4D5; --ink:#1B1815; --ink-2:#3A342C;
  --graphite:#6E6557; --faint:#857B69; --hair:#E6DECF; --hair-strong:#D6CBB6;
  --accent:#A83D1C; --accent-solid:#B84829; --accent-ink:#8F3417; --accent-soft:#F5E5DC; --sand:#C8B48B; --gold:#A9803F;
}
:root[data-theme="dark"] {
  --paper:#14110D; --surface:#1E1A15; --surface-2:#26211A; --ink:#F4F1E8; --ink-2:#D8D0C2;
  --graphite:#A79D8B; --faint:#948A78; --hair:#2C271F; --hair-strong:#3A342A;
  --accent:#E27A4E; --accent-solid:#C1502C; --accent-ink:#F0996B; --accent-soft:#3A2019; --sand:#D8C39A; --gold:#CBA968;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.tnum { font-variant-numeric: tabular-nums; }

/* Keyboard focus ring — was missing on all custom controls */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px;
}
.section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.title { font-size: clamp(28px, 4vw, 40px); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 14px; text-wrap: balance; }
.section-head p { color: var(--graphite); font-size: 17px; margin: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 650; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease; letter-spacing: .01em;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent-solid); color: #fff; }
.btn-primary:hover { background: color-mix(in srgb, var(--accent-solid) 86%, #000); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline { border-color: var(--hair-strong); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px); border-bottom-color: var(--hair);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 550; color: rgba(255,255,255,.82); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.site-header.solid .nav-links a { color: var(--graphite); }
.site-header.solid .nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-size: 14.5px; font-weight: 650; color: #fff; }
.site-header.solid .nav-phone { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: .2s; }
.site-header.solid .nav-toggle span { background: var(--ink); }

/* ---------- Hero (dark showroom) ---------- */
.hero {
  position: relative; background: #0E0B07; color: #fff; overflow: hidden;
  padding: 150px 0 110px; margin-top: -74px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(42% 48% at 85% 10%, rgba(226,122,78,.42), transparent 66%),
    radial-gradient(58% 55% at 106% -6%, rgba(184,72,41,.52), transparent 72%),
    radial-gradient(46% 42% at 6% 108%, rgba(200,180,139,.12), transparent 74%),
    linear-gradient(180deg, #1a130c 0%, #0E0B07 62%);
}
/* Salt-flat horizon line — draws itself in on load */
.hero-horizon {
  position: absolute; left: 0; right: 0; top: 60%; width: 100%; height: 130px;
  pointer-events: none; z-index: 0;
}
.hero-horizon path { stroke-dasharray: 1700; }
@media (prefers-reduced-motion: no-preference) {
  .hero-horizon path { animation: hzDraw 1.9s .35s cubic-bezier(.22,.61,.36,1) both; }
}
@keyframes hzDraw { from { stroke-dashoffset: 1700; } to { stroke-dashoffset: 0; } }
.hero-inner { position: relative; max-width: 720px; }
.hero .eyebrow { color: #E9A279; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 68px); line-height: 1.02; letter-spacing: -.03em;
  margin: 0 0 22px; font-weight: 800; text-wrap: balance;
}
.hero h1 em {
  font-style: normal; color: #E27A4E;
  background: linear-gradient(100deg, #F0996B 0%, #E27A4E 28%, #F6DEC9 50%, #E27A4E 72%, #C1502C 100%);
  background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1 em { animation: heroSweep 1.7s .5s ease-out both; }
}
@keyframes heroSweep { from { background-position: 120% 0; } to { background-position: 0 0; } }
.hero .lede { font-size: clamp(17px, 2.4vw, 20px); color: rgba(255,255,255,.72); max-width: 33ch; margin: 0 0 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-strip {
  position: relative; display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 46px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
}
.hero-strip span { font-size: 13.5px; color: rgba(255,255,255,.66); display: flex; align-items: center; gap: 8px; }
.hero-strip span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* (unused two-column ".doors" layout removed — see git history) */

/* ---------- Packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pkg {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r);
  padding: 26px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg.featured { border-color: var(--accent); border-width: 1.5px; }
.pkg .badge {
  position: absolute; top: -11px; left: 22px; background: var(--accent-solid); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}
.pkg .pkg-name { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--graphite); }
.pkg .price { font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin: 12px 0 4px; }
.pkg .price small { font-size: 14px; font-weight: 600; color: var(--faint); }
.pkg .pkg-desc { font-size: 13.5px; color: var(--graphite); min-height: 38px; margin-bottom: 16px; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; flex: 1; }
.pkg li { font-size: 13.5px; display: flex; gap: 9px; color: var(--ink-2); align-items: flex-start; }
.pkg li::before { content: "✓"; color: var(--accent); font-weight: 800; }
.pkg .btn { width: 100%; justify-content: center; }
.pkg-note { text-align: center; color: var(--faint); font-size: 13.5px; margin-top: 22px; }

/* ---------- Membership ---------- */
.membership { background: var(--surface-2); }
.club-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.club {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r);
  padding: 26px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.club:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.club.hero-plan { background: linear-gradient(180deg, var(--surface), var(--accent-soft)); border-color: var(--accent); border-width: 1.5px; }
.club .badge { position: absolute; top: -11px; left: 22px; background: var(--accent-solid); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.club .club-name { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.club .club-price { font-size: 30px; font-weight: 800; margin: 8px 0 2px; letter-spacing: -.02em; }
.club .club-price small { font-size: 14px; font-weight: 600; color: var(--faint); }
.club p { font-size: 13.5px; color: var(--graphite); margin: 8px 0 18px; flex: 1; }
.club .btn { width: 100%; justify-content: center; }
/* (unused ".perks" block removed) */

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.why { padding: 4px; }
.why .num { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .1em; }
.why h4 { font-size: 18px; margin: 12px 0 8px; letter-spacing: -.01em; }
.why p { font-size: 14.5px; color: var(--graphite); margin: 0; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.review {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r); padding: 24px; text-align: left; box-shadow: var(--shadow-sm);
}
.review .rstars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.review p { font-size: 14.5px; color: var(--ink-2); margin: 12px 0 16px; font-style: italic; }
.review .rname { font-size: 13px; font-weight: 700; color: var(--graphite); }
.review.placeholder p { color: var(--faint); font-style: normal; }

/* (unused full-width ".fleet" band removed — the compact ".mini-fleet" is what the page uses) */

/* ---------- Final CTA ---------- */
.cta-final { text-align: center; }
.cta-final .title { margin-bottom: 12px; }
.cta-final p { color: var(--graphite); font-size: 17px; max-width: 52ch; margin: 0 auto 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-meta { margin-top: 24px; font-size: 14px; color: var(--faint); }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: #0A0C0E; color: rgba(255,255,255,.72); padding: 72px 0 40px; }
.site-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(38% 60% at 90% 0%, rgba(184,72,41,.16), transparent 62%),
    radial-gradient(46% 80% at 2% 100%, rgba(226,122,78,.07), transparent 60%);
}
.footer-watermark {
  position: absolute; left: 50%; bottom: -2.6vw; transform: translateX(-50%); pointer-events: none; user-select: none;
  font-family: 'Saira Condensed', var(--font-display); font-style: italic; font-weight: 800;
  font-size: 21vw; line-height: .75; letter-spacing: .012em; color: rgba(244,241,232,.04);
  white-space: nowrap; z-index: 0;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { font-size: 14px; max-width: 30ch; margin: 0; }
.footer-col h5 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 14px; }
.footer-col a, .footer-col span { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,.78); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; color: rgba(255,255,255,.72); transition: color .15s ease, border-color .15s ease, background .15s ease; }
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .pkg-grid, .club-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: var(--surface); padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--hair); box-shadow: var(--shadow-md);
  }
  .nav-links.open a { color: var(--ink); }
  .review-grid { grid-template-columns: 1fr; }
  .pkg-grid, .club-grid, .why-grid, .footer-top { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 80px; }
}

/* ============================================================
   Premium pass — display type, refinement, motion
   ============================================================ */
h1, h2.title, .hero h1 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; }
.pkg .price, .club .club-price { font-family: var(--font-display); }
.eyebrow { letter-spacing: .24em; }

/* a touch more air, tighter type rhythm — Apple-like restraint */
.section { padding: 108px 0; }
.section-head { margin-bottom: 56px; }
.section-head p { font-size: 18px; line-height: 1.5; color: var(--graphite); }
body { letter-spacing: -.005em; }

/* refined buttons */
.btn { font-family: var(--font); font-weight: 600; padding: 14px 26px; }
.btn-primary { box-shadow: 0 1px 2px rgba(0,0,0,.12), 0 8px 22px color-mix(in srgb, var(--accent) 30%, transparent); }

/* hero refinement */
.hero { padding: 168px 0 128px; }
.hero h1 { letter-spacing: -.04em; }
.hero .lede { line-height: 1.55; }

/* card hover easing */
.door, .pkg, .club { transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .2s ease; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; } .reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; } .reveal.d4 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ============ Bonneville land-speed lockup ============ */
.brand-lockup{display:inline-flex;align-items:center;gap:10px;color:#fff;line-height:1;text-decoration:none;}
.brand-lockup .wm{display:flex;flex-direction:column;gap:5px;}
.brand-lockup .wm .n{
  font-family:'Saira Condensed', var(--font-display);
  font-weight:800; font-size:25px; letter-spacing:.012em; text-transform:uppercase;
  transform:skewX(-8deg); transform-origin:left bottom; display:inline-block;
}
.brand-lockup .wm .t{
  display:inline-flex; align-items:center; gap:6px; padding-left:1px;
  font-family:var(--font-mono); font-weight:600; font-size:8.5px; letter-spacing:.3em; text-transform:uppercase; opacity:.92;
}
.brand-lockup .wm .t .sun{width:6px;height:6px;border-radius:50%;background:var(--accent-solid);flex:none;box-shadow:0 0 0 3px color-mix(in srgb, var(--accent-solid) 22%, transparent);}
.brand-lockup .wm .t .line{width:15px;height:2px;border-radius:2px;background:linear-gradient(90deg, var(--accent-solid), transparent);flex:none;}
.site-header .brand-lockup{color:#fff;}
.site-header.solid .brand-lockup{color:var(--ink);}
.footer-brand .brand-lockup{color:#fff;margin-bottom:16px;}

/* ============ How it works ============ */
.how-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.how-step{text-align:center;position:relative;}
.how-step .n{
  font-family:'Saira Condensed',var(--font-display);font-style:italic;font-weight:800;
  font-size:clamp(60px,7.5vw,88px);line-height:.85;letter-spacing:.02em;
  color:var(--accent);opacity:.2;margin:0 0 2px;display:block;
  background:none;width:auto;height:auto;
}
.how-step h4{font-size:19px;margin:2px 0 8px;letter-spacing:-.01em;}
.how-step p{color:var(--graphite);font-size:14.5px;margin:0 auto;max-width:30ch;}
.mini-fleet{text-align:center;background:var(--surface-2);border-radius:var(--r);padding:30px;border:1px solid var(--hair);}
.mini-fleet b{font-size:17px;} .mini-fleet p{color:var(--graphite);margin:6px 0 16px;font-size:14.5px;}
@media(max-width:680px){.how-grid{grid-template-columns:1fr;gap:30px;}}

.pkg-note a{color:var(--accent);font-weight:600;}
.pkg-note a:hover{text-decoration:underline;}

/* ============ AI assistant widget ============ */
#aiFab{position:fixed;bottom:24px;right:24px;z-index:60;width:56px;height:56px;border-radius:50%;background:var(--accent-solid);color:#fff;border:none;box-shadow:0 6px 24px rgba(184,72,41,.42);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:.2s;}
#aiFab:hover{transform:scale(1.06);} #aiFab svg{width:24px;height:24px;} #aiFab.hidden{display:none;}
#aiPanel{position:fixed;bottom:24px;right:24px;z-index:61;width:min(370px,calc(100vw - 32px));height:520px;max-height:calc(100vh - 48px);background:var(--surface);border:1px solid var(--hair);border-radius:18px;box-shadow:var(--shadow-md);display:none;flex-direction:column;overflow:hidden;}
#aiPanel.on{display:flex;}
.ai-head{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;background:#0A0C0E;color:#fff;}
.ai-title{font-weight:700;font-size:15px;display:flex;align-items:center;gap:9px;}
.ai-dot{width:8px;height:8px;border-radius:50%;background:#37B888;box-shadow:0 0 0 3px rgba(55,184,136,.25);}
.ai-close{background:none;border:none;color:rgba(255,255,255,.7);font-size:24px;cursor:pointer;line-height:1;}
.ai-body{flex:1;overflow-y:auto;padding:18px;display:flex;flex-direction:column;gap:10px;background:var(--surface-2);}
.ai-msg{max-width:82%;padding:11px 14px;border-radius:14px;font-size:14px;line-height:1.45;}
.ai-msg.bot{background:var(--surface);border:1px solid var(--hair);align-self:flex-start;border-bottom-left-radius:4px;color:var(--ink);}
.ai-msg.user{background:var(--accent-solid);color:#fff;align-self:flex-end;border-bottom-right-radius:4px;}
.ai-chips{display:flex;flex-wrap:wrap;gap:8px;padding:0 18px 12px;background:var(--surface-2);}
.ai-chip{background:var(--surface);border:1.5px solid var(--accent);color:var(--accent);font-weight:600;font-size:12.5px;padding:7px 13px;border-radius:999px;cursor:pointer;transition:.15s;}
.ai-chip:hover{background:var(--accent-solid);color:#fff;}
.ai-input{display:flex;gap:8px;padding:12px;border-top:1px solid var(--hair);background:var(--surface);}
.ai-input input{flex:1;border:1.5px solid var(--hair-strong);border-radius:10px;padding:10px 12px;font-family:var(--font);font-size:14px;background:var(--surface);color:var(--ink);}
.ai-input input:focus{outline:2px solid var(--accent);border-color:var(--accent);}
.ai-input button{background:var(--accent-solid);color:#fff;border:none;border-radius:10px;width:42px;font-size:18px;cursor:pointer;}
@media(max-width:680px){#aiPanel{bottom:12px;right:12px;height:70vh;}#aiFab{bottom:16px;right:16px;}}

/* ============================================================
   Elevation pass — a11y helpers + new components
   ============================================================ */

/* Accessibility helpers */
.skip-link{position:absolute;left:-9999px;top:0;z-index:100;background:var(--accent-solid);color:#fff;padding:10px 16px;border-radius:0 0 10px 0;font-weight:600;}
.skip-link:focus{left:0;}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;}
[hidden]{display:none !important;}   /* a class display: rule must not defeat the hidden attribute (e.g. .trust on #googleBadge) */

/* ============================================================
   2026 uplift — grain, numerals, aura hovers
   ============================================================ */

/* Site-wide film grain — one fixed layer for a tactile, paper-like surface */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) { body::after { mix-blend-mode: soft-light; opacity: .07; } }

/* Precise, aligned figures on prices & stats */
.pkg .price, .club .club-price, .hero-strip span { font-variant-numeric: tabular-nums; }

/* Warm aura glow on the highlighted cards, on hover */
@media (prefers-reduced-motion: no-preference) {
  .pkg.featured:hover, .club.hero-plan:hover {
    box-shadow: 0 12px 30px -10px rgba(27,24,21,.18), 0 0 46px -12px color-mix(in srgb, var(--accent-solid) 62%, transparent);
  }
}

/* Layout modifier (replaces an inline grid style) */
.club-grid.club-solo{grid-template-columns:1fr;max-width:620px;margin:0 auto;}

/* Before / after results — native range = keyboard accessible */
.ba-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:22px;}
.ba-item{margin:0;}
.ba-stage{position:relative;aspect-ratio:4/3;border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-sm);border:1px solid var(--hair);user-select:none;background:var(--surface-2);}
.ba-stage img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;}
.ba-before{clip-path:inset(0 calc(100% - var(--pos,50%)) 0 0);}
.ba-divider{position:absolute;top:0;bottom:0;left:var(--pos,50%);width:2px;background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.18);transform:translateX(-1px);}
.ba-tag{position:absolute;bottom:12px;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#fff;background:rgba(10,12,14,.62);padding:4px 9px;border-radius:6px;}
.ba-tag-b{left:12px;} .ba-tag-a{right:12px;}
.ba-range{width:100%;margin-top:14px;accent-color:var(--accent);cursor:ew-resize;}
.ba-item figcaption{margin-top:8px;font-size:13.5px;color:var(--graphite);text-align:center;}
.ba-empty{max-width:640px;margin:0 auto;text-align:center;border:1px dashed var(--hair-strong);border-radius:var(--r);background:var(--surface-2);padding:48px 28px;}
.ba-empty-mark{width:52px;height:auto;fill:var(--hair-strong);margin-bottom:14px;}
.ba-empty p{color:var(--graphite);font-size:15.5px;margin:0 auto 20px;max-width:46ch;}

/* Reviews */
.review blockquote{font-size:14.5px;color:var(--ink-2);margin:12px 0 16px;font-style:italic;line-height:1.55;}
.review-empty{grid-column:1/-1;text-align:center;color:var(--graphite);padding:16px 0 4px;}
.review-empty p{max-width:48ch;margin:0 auto 18px;font-size:16px;}

/* Trust row (real, verifiable facts only) */
.trust-row{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin-top:38px;}
.trust{display:flex;flex-direction:column;gap:2px;align-items:center;text-align:center;padding:14px 22px;border:1px solid var(--hair);border-radius:14px;background:var(--surface);min-width:150px;box-shadow:var(--shadow-sm);}
.trust b{font-size:15px;} .trust span{font-size:13px;color:var(--graphite);}

/* Error/validation color token (contrast-checked ≥4.5:1 both themes) */
:root{--danger:#A5281B;}
@media (prefers-color-scheme: dark){:root{--danger:#F2A99D;}}
:root[data-theme="light"]{--danger:#A5281B;}
:root[data-theme="dark"]{--danger:#F2A99D;}

/* ============================================================
   Detail Club — dark feature section + membership card object
   ============================================================ */
.club-section { position: relative; background: #141009; color: #F4F1E8; overflow: hidden; }
.club-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(48% 55% at 88% 14%, rgba(226,122,78,.26), transparent 66%),
    radial-gradient(46% 52% at 4% 104%, rgba(184,72,41,.22), transparent 70%),
    linear-gradient(180deg, #191208 0%, #110D07 100%);
}
.club-layout { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.club-copy .eyebrow { color: #F0996B; }
.club-copy .title { color: #F7F3EA; margin-bottom: 18px; }
.club-lede { color: rgba(244,241,232,.74); font-size: 17px; line-height: 1.6; max-width: 46ch; margin: 0 0 24px; }
.club-lede b { color: #F4F1E8; }
.club-perks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.club-perks li { display: flex; gap: 12px; align-items: center; color: rgba(244,241,232,.9); font-size: 15px; }
.club-perks li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-solid); box-shadow: 0 0 0 4px rgba(226,122,78,.16); flex: none; }
.club-alt { margin-top: 22px; font-size: 13.5px; color: rgba(244,241,232,.55); }
.club-alt a { color: rgba(244,241,232,.82); font-weight: 600; border-bottom: 1px solid rgba(244,241,232,.2); }
.club-alt a:hover { color: #fff; border-bottom-color: var(--accent); }

.club-card-wrap { display: flex; justify-content: center; }
.membership-card {
  position: relative; width: 100%; max-width: 410px; aspect-ratio: 1.586 / 1; border-radius: 18px; overflow: hidden;
  background: linear-gradient(140deg, #2e2519 0%, #191209 55%, #261b11 100%);
  border: 1px solid rgba(244,241,232,.12);
  box-shadow: 0 34px 64px -24px rgba(0,0,0,.65), inset 0 1px 0 rgba(244,241,232,.06);
  padding: 26px 28px; display: flex; flex-direction: column; justify-content: space-between; color: #F4F1E8;
}
.membership-card::after {
  content: ""; position: absolute; inset: -45%; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(244,241,232,.20) 50%, transparent 58%);
  transform: translateX(-72%);
}
@media (prefers-reduced-motion: no-preference) {
  .membership-card::after { transition: transform 1s cubic-bezier(.2,.7,.2,1); }
  .membership-card:hover::after { transform: translateX(72%); }
}
.mc-top { display: flex; justify-content: space-between; align-items: flex-start; }
.mc-brand { font-family: 'Saira Condensed', var(--font-display); font-weight: 800; font-style: italic; font-size: 21px; letter-spacing: .02em; }
.mc-chip { width: 44px; height: 32px; border-radius: 6px; background: linear-gradient(135deg, #dcb56c 0%, #b3854a 100%); box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); position: relative; flex: none; }
.mc-chip::before { content: ""; position: absolute; inset: 6px 8px; border: 1px solid rgba(0,0,0,.22); border-radius: 3px; }
.mc-label { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,241,232,.5); font-weight: 600; }
.mc-tier { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -.01em; margin-top: 3px; }
.mc-meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.mc-meta > span:first-child { font-size: 11px; letter-spacing: .04em; color: rgba(244,241,232,.55); max-width: 22ch; }
.mc-price { font-family: var(--font-display); font-weight: 800; font-size: 26px; white-space: nowrap; }
.mc-price small { font-size: 13px; color: rgba(244,241,232,.6); font-weight: 600; }
@media (max-width: 820px) {
  .club-layout { grid-template-columns: 1fr; gap: 40px; }
  .club-card-wrap { order: -1; }
  .membership-card { max-width: 380px; }
}

/* Featured pricing card — signature gradient top-edge */
.pkg.featured::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(135deg, var(--accent-solid), #E27A4E);
  border-radius: var(--r) var(--r) 0 0;
}

/* ============================================================
   Mobile hardening — MUST stay last in the file so it wins over
   the (non-media-query) "premium pass" padding overrides above,
   which otherwise defeat the mobile spacing at ≤680px.
   ============================================================ */
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .section { padding: 62px 0; }
  .section-head { margin-bottom: 38px; }
  .hero { padding: 120px 0 74px; }
  /* text-wrap:balance inflates a heading's intrinsic width and, on a narrow
     screen, forces the whole page wider than the viewport (clipping the
     header + hero on the right). Use normal wrapping on phones. */
  .hero h1 { font-size: clamp(30px, 8vw, 46px); text-wrap: normal; overflow-wrap: break-word; }
  h2.title { text-wrap: normal; overflow-wrap: break-word; }
  .hero-strip { margin-top: 32px; padding-top: 22px; }
  .cta-buttons { flex-wrap: wrap; }
}
@media (max-width: 440px) {
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
}
/* Final safety net against any residual horizontal overflow on phones
   (clip, not hidden — does not break the sticky header). */
@media (max-width: 680px) { body { overflow-x: clip; } }
