/* ===== QMD Detailing & Autostyling ===== */
:root{
  --black:#0d0d0f;
  --panel:#0d0d0f;   /* was #141416 — flattened to body black so gray section/card panels read as solid black */
  --panel-2:#0d0d0f; /* was #1a1a1c — same, keeps borders for definition, no gray fill */
  /* ===== Metallic champagne gold (brand), NOT LeadGend's bright #F0C040 =====
     --gold        : resting brand gold (champagne)
     --gold-deep   : darker antique edge for metallic gradients
     --gold-hi     : restrained highlight (kept dim so it never reads "bright pill")
     The WHITE/SILVER below is promoted to a real secondary so it isn't all gold. */
  --gold:#c8a951;
  --gold-deep:#9c7d33;
  --gold-hi:#e6cd86;
  --gold-2:#d8bd6a;            /* legacy var kept for any inline refs; now muted */
  --gold-soft:rgba(200,169,81,.12);
  --gold-line:rgba(200,169,81,.42);
  /* logo white / brushed-silver secondary */
  --silver:#e9e9ee;
  --silver-2:#b9bcc4;
  --white:#f4f4f5;
  --muted:#a1a1aa;
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.14);
  --maxw:1200px;
  --maxw-wide:1440px;   /* editorial wide band container */
  --r:6px;              /* tightened: sharp editorial corners (was 14px pill-ish) */

  /* ===== Editorial spacing scale (8px base) — UI Designer may tune ===== */
  --s-1:.5rem;   /* 8 */
  --s-2:1rem;    /* 16 */
  --s-3:1.5rem;  /* 24 */
  --s-4:2rem;    /* 32 */
  --s-6:3rem;    /* 48 */
  --s-8:4rem;    /* 64 */
  --s-12:6rem;   /* 96 */
  --s-16:8rem;   /* 128 */
  /* fluid section rhythm for the magazine cadence */
  --band:clamp(72px,11vw,150px);
  --gutter:clamp(20px,4vw,64px);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--black);
  color:var(--white);
  line-height:1.65;
  overflow-x:clip; /* clip decorative fixed layers (grain/glow) without a scrollbar */
}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 24px}
/* Editorial display type — Bebas with tighter tracking + true uppercase magazine feel */
h1,h2,h3{font-family:'Bebas Neue',sans-serif;font-weight:400;letter-spacing:.012em;line-height:1.0;
  text-transform:uppercase}
h1{letter-spacing:.006em}
/* Restrained metallic champagne — a tight vertical sheen, NOT a bright two-tone.
   Reads as brushed gold rather than LeadGend's glowing yellow word-swap. */
.gold{color:var(--gold);
  background:linear-gradient(176deg,var(--gold-hi) 0%,var(--gold) 46%,var(--gold-deep) 100%);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.eyebrow{font-size:.74rem;letter-spacing:.34em;text-transform:uppercase;color:var(--gold);
  font-weight:600;margin-bottom:14px}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
/* Accessibility: visible keyboard focus without changing resting look */
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:4px}
.btn:focus-visible,.nav a:focus-visible,.dropdown a:focus-visible{outline-offset:4px}

/* ===== CINEMATIC INTRO ===== */
.intro{position:fixed;inset:0;z-index:200;background:#050505;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:22px;
  transition:opacity .9s ease,visibility .9s}
.intro.done{opacity:0;visibility:hidden}
.intro-logo{position:relative;width:130px;height:130px;display:grid;place-items:center}
.intro-logo img{width:88px;height:88px;border-radius:50%;object-fit:cover;
  opacity:0;transform:scale(.85);animation:introLogo 1s .35s ease forwards;
  box-shadow:0 0 40px rgba(212,175,55,.4)}
.intro-ring{position:absolute;inset:0;width:130px;height:130px;transform:rotate(-90deg)}
.intro-ring circle{fill:none;stroke:var(--gold);stroke-width:2;
  stroke-dasharray:352;stroke-dashoffset:352;
  filter:drop-shadow(0 0 6px rgba(212,175,55,.7));
  animation:introRing 1.3s .1s cubic-bezier(.7,0,.3,1) forwards}
.intro-tag{font-family:'Bebas Neue',sans-serif;letter-spacing:.42em;font-size:1rem;
  color:var(--gold);text-transform:uppercase;opacity:0;animation:introLogo .8s .9s ease forwards}
@keyframes introRing{to{stroke-dashoffset:0}}
@keyframes introLogo{to{opacity:1;transform:scale(1)}}

/* ===== FILM GRAIN + VIGNETTE + CURSOR GLOW ===== */
/* inset:-5% so the grainShift translate (±3%) never extends past the viewport
   and creates horizontal scroll */
.grain{position:fixed;inset:-5%;z-index:120;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='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation:grainShift .7s steps(4) infinite}
@keyframes grainShift{0%{transform:translate(0,0)}25%{transform:translate(-3%,2%)}
  50%{transform:translate(2%,-3%)}75%{transform:translate(-2%,-2%)}100%{transform:translate(2%,3%)}}
.vignette{position:fixed;inset:0;z-index:110;pointer-events:none;
  box-shadow:inset 0 0 185px 35px rgba(0,0,0,.66)}
.cursor-glow{position:fixed;top:0;left:0;width:520px;height:520px;z-index:100;pointer-events:none;
  margin:-260px 0 0 -260px;border-radius:50%;opacity:0;transition:opacity .4s;
  background:radial-gradient(circle,rgba(212,175,55,.10),transparent 60%)}

/* ===== Buttons — sharp automotive/editorial (NOT LeadGend rounded gold pills) =====
   Crisp near-rectangular form, tight uppercase tracking, metallic-gold or
   gold-outline treatment. One clear primary (gold fill) + one secondary (outline). */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:16px 34px;border-radius:2px;font-weight:600;font-size:.8rem;
  text-transform:uppercase;letter-spacing:.16em;
  cursor:pointer;border:1px solid transparent;
  transition:transform .25s,box-shadow .25s,background .25s,color .25s,border-color .25s}
/* PRIMARY — brushed metallic champagne, thin antique edge, no glowing halo */
.btn-gold{
  background:linear-gradient(168deg,var(--gold-hi) 0%,var(--gold) 52%,var(--gold-deep) 100%);
  color:#181203;border-color:var(--gold-deep);
  box-shadow:0 1px 0 rgba(255,255,255,.18) inset,0 10px 26px -14px rgba(0,0,0,.8)}
.btn-gold:hover{transform:translateY(-2px);
  box-shadow:0 1px 0 rgba(255,255,255,.22) inset,0 16px 34px -16px rgba(0,0,0,.9)}
/* SECONDARY — gold outline, fills toward champagne on hover */
.btn-ghost{background:transparent;color:var(--silver);border-color:var(--line-strong)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold-hi);transform:translateY(-2px);
  background:rgba(200,169,81,.05)}
.btn-block{width:100%}

/* ===== Header ===== */
.site-header{position:fixed;top:0;left:0;right:0;z-index:50;
  transition:background .4s,backdrop-filter .4s,padding .4s,border-color .4s;
  padding:18px 0;border-bottom:1px solid transparent}
.site-header.scrolled{background:rgba(10,10,10,.82);backdrop-filter:blur(14px);
  border-bottom-color:var(--line);padding:10px 0}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px}
.brand-logo{height:54px;width:54px;border-radius:50%;object-fit:cover;
  box-shadow:0 0 0 1px var(--gold-line);transition:height .4s,width .4s,opacity .4s;
  opacity:0;pointer-events:none}
.header-cta{padding:12px 24px;font-size:.74rem;letter-spacing:.14em}
.btn-outline{background:transparent;border:1.5px solid var(--gold);color:var(--gold);padding:11px 22px;font-size:.74rem;letter-spacing:.14em;border-radius:var(--r)}
.btn-outline:hover{background:var(--gold);color:#000}
.hero-trust-badge{font-size:.82rem;color:#fff;letter-spacing:2px;margin-bottom:18px;display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.hero-trust-badge span{font-size:.72rem;color:var(--muted);letter-spacing:.08em;font-family:'Inter',sans-serif;font-weight:500}
.trust-divider{color:rgba(255,255,255,.3)!important;font-size:.9rem!important;letter-spacing:0!important}
.trust-google{font-family:'Inter',sans-serif!important;font-weight:700!important;font-size:.88rem!important;letter-spacing:0!important}
/* promo popup */
.promo-popup{position:fixed;inset:0;z-index:400;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.75);opacity:0;pointer-events:none;transition:opacity .35s}
.promo-popup.active{opacity:1;pointer-events:auto}
.promo-inner{position:relative;background:#0d0d0d;border:1px solid rgba(200,169,81,.4);border-radius:6px;max-width:480px;width:92%;overflow:hidden;text-align:center;padding:0}
.promo-close{position:absolute;top:10px;right:14px;background:none;border:none;color:#6b6b6b;font-size:1.5rem;cursor:pointer;line-height:1;transition:color .2s;z-index:1}
.promo-close:hover{color:#fff}
/* banner */
.promo-banner{background:#0d0d0d;border-top:3px solid var(--gold);padding:30px 36px 22px}
.promo-logo{width:56px;height:56px;border-radius:50%;border:1.5px solid var(--gold);display:block;margin:0 auto 16px;object-fit:cover}
.promo-headline{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.4rem,8vw,3.2rem);color:var(--gold);letter-spacing:.06em;line-height:1;margin-bottom:2px}
.promo-sub-headline{font-family:'Bebas Neue',sans-serif;font-size:clamp(1.6rem,6vw,2.2rem);color:#fff;letter-spacing:.06em;line-height:1;margin-bottom:14px}
.promo-desc{font-size:.83rem;color:#8a8a8a;line-height:1.6;margin-bottom:8px}
.promo-fine{font-size:.66rem;color:var(--gold);letter-spacing:.14em;text-transform:uppercase}
/* form */
.promo-form{background:#161616;padding:24px 32px 28px;border-top:1px solid rgba(200,169,81,.15)}
.promo-row{display:flex;gap:12px;margin-bottom:12px}
.promo-field{flex:1;display:flex;flex-direction:column;gap:5px;text-align:left}
.promo-field label{font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;color:#7a7a7a}
.promo-field input{background:#0d0d0d;border:1px solid rgba(200,169,81,.25);border-radius:3px;padding:10px 12px;color:#fff;font-size:.9rem;font-family:inherit;width:100%;box-sizing:border-box;transition:border-color .2s}
.promo-field input:focus{outline:none;border-color:var(--gold)}
.promo-submit-btn{width:100%;background:var(--gold);color:#000;border:none;padding:14px;font-family:'Bebas Neue',sans-serif;font-size:1.15rem;letter-spacing:.14em;cursor:pointer;border-radius:3px;margin-top:6px;transition:background .2s}
.promo-submit-btn:hover{background:#d4b55a}
.promo-success{display:none;padding:28px 24px;color:var(--gold);font-size:.95rem;text-align:center}
.site-header.scrolled .brand-logo{height:44px;width:44px;opacity:1;pointer-events:auto}
.nav{display:flex;gap:30px}
.nav a{font-size:.92rem;font-weight:500;color:var(--muted);position:relative;transition:color .25s}
.nav a:hover{color:var(--white)}
.nav a::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:1px;
  background:var(--gold);transition:width .3s}
.nav a:hover::after{width:100%}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px}
.nav-toggle span{width:26px;height:2px;background:var(--white);transition:.3s}

/* =====================================================================
   CINEMATIC HERO — "LOGO IS THE STAR"
   Dark studio backdrop + centered glowing QMD mark (inline SVG, stroke-
   drawable) + red/amber taillight-smoke canvas behind + headline & 2 CTAs
   below. UI DESIGNER builds the frame + reduced-motion fallback; the SENIOR
   DEVELOPER drives the time-based motion (see ANIMATION SPEC).

   Phase contract: the SD sets `#hero[data-hero-phase]` to one of
   ember | draw | illuminate | settle | done. CSS reacts to those states so
   structure + style stay declarative. JS owns ring stroke-dashoffset timing,
   ember pulse intensity, and the smoke canvas particles.
   ===================================================================== */
.hero{position:relative;min-height:100svh;display:flex;align-items:stretch;
  overflow:hidden;isolation:isolate}
.hero-cine{background:#050506;align-items:center;justify-content:center}

/* dark detailing-studio backdrop: deep radial pool of light + faint floor */
.hero-backdrop{position:absolute;inset:0;z-index:-3;pointer-events:none;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(28,28,32,.9) 0%, rgba(10,10,12,.96) 46%, #050506 78%),
    linear-gradient(180deg, #060607 0%, #0a0a0c 60%, #050506 100%)}
/* a faint reflective "floor" sheen beneath the mark */
.hero-backdrop::after{content:"";position:absolute;left:50%;bottom:8%;transform:translateX(-50%);
  width:min(900px,86vw);height:200px;border-radius:50%;
  background:radial-gradient(ellipse at center, rgba(200,169,81,.06), transparent 70%);
  filter:blur(8px)}

/* smoke canvas (Senior Developer paints the red/amber taillight smoke here) */
.hero-smoke{position:absolute;inset:0;z-index:-2;width:100%;height:100%;
  pointer-events:none;opacity:.9}

/* the breathing red brake-light ember (CSS rest state). JS may override
   intensity per phase; this is the reduced-motion-safe baseline. */
.hero-ember{position:absolute;left:50%;top:42%;width:clamp(120px,18vw,240px);aspect-ratio:1;
  transform:translate(-50%,-50%);z-index:-2;pointer-events:none;border-radius:50%;
  background:radial-gradient(circle, rgba(255,60,40,.55) 0%, rgba(210,30,20,.28) 32%, transparent 66%);
  filter:blur(6px);opacity:.55;animation:emberBreathe 4.5s ease-in-out infinite}
@keyframes emberBreathe{0%,100%{opacity:.4;transform:translate(-50%,-50%) scale(.92)}
  50%{opacity:.7;transform:translate(-50%,-50%) scale(1.06)}}

/* widescreen letterbox bars (cinematic) */
.cine-bar{position:absolute;left:0;right:0;height:clamp(36px,6vh,72px);z-index:3;pointer-events:none;
  background:linear-gradient(var(--dir,180deg),#000,transparent);transition:transform 1s 1.1s ease}
.cine-bar-top{top:0;--dir:180deg;transform:translateY(-100%)}
.cine-bar-bottom{bottom:0;--dir:0deg;transform:translateY(100%)}
body.ready .cine-bar-top,body.ready .cine-bar-bottom{transform:translateY(0)}

/* centered column: logo stage on top, copy beneath. Replaces the old
   bottom-left rail, so there is NO upward overflow into the header. */
.hero-stage-wrap{position:relative;z-index:2;display:flex;flex-direction:column;
  align-items:center;justify-content:center;text-align:center;gap:clamp(20px,4vh,44px);
  width:100%;max-width:760px;margin:0 auto;
  padding:clamp(96px,16vh,160px) var(--gutter) clamp(64px,10vh,110px)}

/* ===== HERO — full-bleed cinematic video background ===== */
.hero-video{position:relative;display:flex;flex-direction:column;
  align-items:center;justify-content:center;text-align:center;
  min-height:100svh;overflow:hidden;background:#050506;isolation:isolate}
.hero-video-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  object-position:center 54%;z-index:-3;
  /* cinematic grade: crush brightness, lift contrast, desaturate slightly +
     a touch of warmth so it reads moody, not a bright daytime phone clip */
  filter:brightness(.58) contrast(1.16) saturate(.8) sepia(.08)}
.hero-video-scrim{position:absolute;inset:0;z-index:-2;pointer-events:none;
  background:
    linear-gradient(180deg, rgba(6,6,8,.66) 0%, rgba(6,6,8,.30) 30%, rgba(6,6,8,.50) 66%, rgba(6,6,8,.93) 100%),
    radial-gradient(125% 85% at 50% 42%, transparent 38%, rgba(6,6,8,.55) 100%)}
.hero-video-content{position:relative;z-index:2;max-width:880px;
  padding:0 var(--gutter);margin-top:auto;margin-bottom:auto}

/* THE LOGO STAGE (legacy cinematic-logo hero — retained, unused by video hero) */
.hero-stage{position:relative;width:clamp(220px,34vw,340px);aspect-ratio:1;
  display:grid;place-items:center}
.hero-glow{position:absolute;inset:-22%;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle, rgba(200,169,81,.22), rgba(200,169,81,.06) 45%, transparent 70%);
  filter:blur(4px);opacity:.9;animation:glowBreathe 6.5s ease-in-out infinite}
@keyframes glowBreathe{0%,100%{opacity:.7;transform:scale(.97)}50%{opacity:1;transform:scale(1.04)}}
.hero-ring-svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible;
  z-index:1;pointer-events:none}
/* ring: stroke-drawable gold halo. JS sets dashoffset for the self-draw on load;
   resting state = fully drawn, with a gentle continuous glow pulse. */
.hero-ring{stroke-linecap:round;
  filter:drop-shadow(0 0 7px rgba(200,169,81,.6));
  animation:ringPulse 5.5s ease-in-out infinite}
@keyframes ringPulse{0%,100%{opacity:.82}50%{opacity:1}}
/* THE REAL QMD LOGO — centered inside the halo ring; it "develops" from
   darkness (blur + scale + fade) as the ring closes. */
.hero-logo-real{position:relative;z-index:2;width:76%;height:auto;border-radius:50%;
  opacity:0;transform:scale(.9);
  filter:blur(8px) drop-shadow(0 0 26px rgba(200,169,81,.3));
  transition:opacity 1.1s ease,transform 1.3s cubic-bezier(.2,.7,.2,1),filter 1.1s ease}

/* ---- PHASE STATES (#hero[data-hero-phase]) — JS owns exact timings ---- */
.hero-cine[data-hero-phase="ember"] .hero-logo-real,
.hero-cine[data-hero-phase="draw"]  .hero-logo-real{opacity:0;transform:scale(.9);
  filter:blur(8px) drop-shadow(0 0 26px rgba(200,169,81,.3))}
.hero-cine[data-hero-phase="illuminate"] .hero-logo-real,
.hero-cine[data-hero-phase="settle"]     .hero-logo-real,
.hero-cine[data-hero-phase="done"]       .hero-logo-real{opacity:1;transform:scale(1);
  filter:blur(0) drop-shadow(0 0 30px rgba(200,169,81,.34))}

/* CSS light-sweep across the logo (JS triggers by adding .is-swept) */
.hero-stage::after{content:"";position:absolute;inset:11%;z-index:3;pointer-events:none;
  border-radius:50%;mix-blend-mode:screen;opacity:0;
  background:linear-gradient(115deg,transparent 40%,rgba(255,255,255,.45) 50%,transparent 60%);
  background-size:250% 100%;background-position:140% 0}
.hero-stage.is-swept::after{opacity:1;animation:markSweep 1.1s ease-out forwards}
@keyframes markSweep{from{background-position:140% 0}to{background-position:-60% 0}}

/* hero copy block */
.hero-copy{max-width:620px}
.hero-eyebrow-row{display:flex;align-items:center;justify-content:center;gap:14px;margin-bottom:18px}
.hero-eyebrow-row .rule{flex:0 0 44px;height:1px;background:var(--gold);opacity:.9}
.hero-copy .eyebrow{margin-bottom:0}
.hero-title{font-size:clamp(2.6rem,6.5vw,5.4rem);margin:0 auto 22px;
  text-shadow:0 6px 40px rgba(0,0,0,.55);max-width:18ch}
.hero-sub{font-size:1.1rem;color:#e4e4e7;max-width:540px;margin:0 auto 32px}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;align-items:center;justify-content:center}

.scroll-cue{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);
  width:26px;height:42px;border:2px solid rgba(255,255,255,.4);border-radius:20px;z-index:2}
.scroll-cue span{position:absolute;top:8px;left:50%;width:4px;height:8px;border-radius:2px;
  background:var(--gold);transform:translateX(-50%);animation:scrollDot 1.8s infinite}
@keyframes scrollDot{0%{opacity:0;transform:translate(-50%,0)}40%{opacity:1}80%{opacity:0;transform:translate(-50%,14px)}}

/* ===== Stats ===== */
.stats{background:linear-gradient(180deg,var(--black),var(--panel));border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);padding:46px 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.stat-num{font-family:'Bebas Neue',sans-serif;font-size:3.2rem;color:var(--gold);line-height:1}
.stat .plus{font-family:'Bebas Neue',sans-serif;font-size:1.6rem;color:var(--gold)}
.stat p{font-size:.76rem;letter-spacing:.18em;text-transform:uppercase;color:var(--silver-2);margin-top:8px}

/* ===== Sections ===== */
.section{padding:clamp(68px,9vw,110px) 0}
.section-head{text-align:center;max-width:720px;margin:0 auto clamp(40px,6vw,64px)}
.section-head h2{font-size:clamp(2.6rem,5.4vw,4.2rem);margin-bottom:14px}
.section-head .eyebrow{display:flex;align-items:center;justify-content:center;gap:12px}
.section-head .eyebrow::before,.section-head .eyebrow::after{content:"";width:30px;height:1px;background:var(--gold-line)}
.section-lead{color:var(--muted)}

/* =====================================================================
   EDITORIAL LAYOUT PRIMITIVES (automotive-magazine rhythm)
   Building blocks the homepage + interiors compose from. The UI Designer
   skins color/texture; the STRUCTURE (grid, anchoring, rhythm) lives here.
   ===================================================================== */
.container-wide{width:100%;max-width:var(--maxw-wide);margin:0 auto;padding:0 var(--gutter)}

/* Section header, left-aligned editorial variant (asymmetric, not centered) */
.ed-head{max-width:680px;margin:0 0 clamp(36px,5vw,60px)}
.ed-head h2{font-size:clamp(2.6rem,5.4vw,4.4rem);margin-bottom:16px}
.ed-head .section-lead{max-width:560px;font-size:1.02rem}
/* magazine index head: "01 — Services" — small, tracked, silver label w/ gold number.
   Confident editorial kicker that reads like an automotive feature section. */
.ed-index{display:flex;align-items:center;gap:12px;font-family:'Bebas Neue',sans-serif;
  font-size:1rem;color:var(--silver-2);line-height:1;letter-spacing:.22em;margin-bottom:14px;
  text-transform:uppercase}
.ed-index::before{content:"";width:34px;height:1px;background:var(--gold);flex:0 0 auto}

/* Full-bleed image FEATURE BAND: photo on one side, editorial copy on the
   other; alternates direction down the page. Edge-to-edge, no card chrome. */
.feature-band{display:grid;grid-template-columns:1.15fr .85fr;align-items:stretch;
  min-height:clamp(440px,60vw,620px);background:var(--panel);overflow:hidden}
.feature-band.reverse{grid-template-columns:.85fr 1.15fr}
.feature-band.reverse .fb-media{order:2}
.fb-media{position:relative;overflow:hidden;min-height:340px}
.fb-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
/* cinematic horizontal scanline / venetian-blind overlay (scoped to .scanlines bands) */
.fb-media.scanlines::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:repeating-linear-gradient(0deg,rgba(200,169,81,0) 0px,rgba(200,169,81,0) 2px,rgba(200,169,81,.16) 2px,rgba(200,169,81,.16) 3px)}
.fb-text{display:flex;flex-direction:column;justify-content:center;
  padding:clamp(40px,6vw,84px) clamp(28px,5vw,72px)}
.fb-text .ed-index{margin-bottom:14px}
.fb-text h2{font-size:clamp(2.2rem,4.5vw,3.6rem);margin-bottom:18px}
.fb-text p{color:var(--muted);margin-bottom:22px;max-width:46ch}

/* ===== ABOUT / MISSION bridge (dark-gold editorial homage to the ref) ===== */
.about-bridge{background:var(--panel)}
.ab-about-head{display:flex;align-items:center;gap:24px;margin-bottom:clamp(28px,4vw,46px)}
.ab-logo{width:86px;height:86px;border-radius:50%;flex:0 0 auto;
  box-shadow:0 0 0 1px var(--gold-line),0 0 32px rgba(200,169,81,.18)}
.ab-about-head .ed-index{margin-bottom:10px}
.ab-about-head h2{font-size:clamp(2rem,4vw,3.2rem)}
.ab-about-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:clamp(32px,5vw,64px);align-items:start}
.ab-intro p{color:var(--silver-2);font-size:1.08rem;max-width:54ch}
.ab-points ul{list-style:none;display:grid;gap:14px;margin-bottom:30px}
.ab-points li{position:relative;padding-left:30px;font-weight:600;font-size:.92rem;
  letter-spacing:.04em;text-transform:uppercase;color:var(--white)}
.ab-points li::before{content:"\2192";position:absolute;left:0;color:var(--gold);font-weight:700}
/* MISSION row */
.ab-mission{margin-top:clamp(44px,6vw,70px);padding-top:clamp(34px,4vw,48px);
  border-top:1px solid var(--gold-line);
  display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(28px,4vw,56px);align-items:center}
.ab-mission-head{display:flex;align-items:center;gap:20px}
.ab-shield{width:62px;height:62px;flex:0 0 auto;color:var(--gold);
  filter:drop-shadow(0 0 10px rgba(200,169,81,.3))}
.ab-mission-head h3{font-size:clamp(1.8rem,3.4vw,2.8rem)}
.ab-mission p{color:var(--silver-2);font-size:1.08rem;max-width:62ch}

/* Editorial caption strip overlaid on full-bleed imagery */
.ed-caption{position:absolute;left:0;bottom:0;padding:18px 22px;z-index:2;
  display:flex;align-items:baseline;gap:14px;
  background:linear-gradient(0deg,rgba(0,0,0,.8),transparent)}
.ed-caption .num{font-family:'Bebas Neue',sans-serif;color:var(--gold);font-size:1.4rem;line-height:1;letter-spacing:.04em}
.ed-caption .txt{font-size:.76rem;letter-spacing:.18em;text-transform:uppercase;color:var(--silver)}

/* Hexagon-neon signature accent (the shop's REAL lighting) — used as a
   restrained motif, NOT a full-screen grid field. UI Designer can refine. */
.hex-accent{position:relative}
.hex-accent::before{content:"";position:absolute;pointer-events:none;z-index:0;
  width:clamp(160px,22vw,300px);aspect-ratio:1;top:-6%;right:-2%;opacity:.16;
  background:
    repeating-linear-gradient(60deg,transparent 0 22px,var(--gold) 22px 23px),
    repeating-linear-gradient(-60deg,transparent 0 22px,var(--gold) 22px 23px),
    repeating-linear-gradient(0deg,transparent 0 22px,var(--gold) 22px 23px);
  -webkit-mask-image:radial-gradient(closest-side,#000,transparent);
  mask-image:radial-gradient(closest-side,#000,transparent)}
.hex-accent>*{position:relative;z-index:1}

/* ===== Services ===== */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
/* Unified editorial card: flat panel, hairline rule that warms to champagne,
   thin gold top-accent on hover. No gold radial wash (a LeadGend tell). */
.service-card{background:var(--panel);
  border:1px solid var(--line);border-radius:4px;padding:36px 30px;
  transition:transform .35s,border-color .35s,box-shadow .35s;position:relative;overflow:hidden}
.service-card::before{content:"";position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
  transform:scaleX(0);transform-origin:left;transition:transform .4s}
.service-card:hover{transform:translateY(-5px);border-color:var(--gold-line);
  box-shadow:0 22px 44px -24px rgba(0,0,0,.8)}
.service-card:hover::before{transform:scaleX(1)}
.service-icon{font-size:1.8rem;color:var(--gold);margin-bottom:18px}
/* Bespoke hexagon-badge icon family (QMD studio hex-light motif).
   Thin hex frame at dimmed gold, glyph in full gold, one crafted set. */
.qmd-ico{display:block;width:46px;height:46px;color:var(--gold)}
.service-icon .qmd-ico{width:46px;height:46px}
.qmd-ico .qmd-frame{opacity:.42}
@media(prefers-reduced-motion:reduce){.service-icon{transition:none}}
.service-card h3{font-size:1.6rem;margin-bottom:10px;letter-spacing:.02em}
.service-card p{color:var(--muted);font-size:.96rem}
/* editorial index number on cards (replaces decorative glyph icon) */
.card-num{display:block;font-family:'Bebas Neue',sans-serif;font-size:1.9rem;line-height:1;
  color:var(--gold);margin-bottom:16px;letter-spacing:.06em;
  padding-bottom:14px;border-bottom:1px solid var(--line)}

/* =====================================================================
   SERVICES — ASYMMETRIC EDITORIAL INDEX (homepage #services)
   A "table of contents" layout: sticky lead column + stacked spotlight rows.
   Deliberately different from BOTH the interior service-card grid AND the
   homepage Process timeline. Uses letters (A/B/C) so it never reads as the
   same numbered-box motif as The Process.
   ===================================================================== */
.services-editorial{padding-bottom:clamp(56px,8vw,96px)}
.services-layout{display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:clamp(32px,6vw,84px);align-items:start}
.services-lead{margin:0;position:sticky;top:120px}
.services-lead-note{margin-top:20px;font-family:'Bebas Neue',sans-serif;letter-spacing:.28em;
  font-size:1.1rem;color:var(--gold);text-transform:uppercase}
.svc-spotlights{list-style:none;margin:0;padding:0;
  border-top:1px solid var(--line)}
.svc-spot{display:grid;grid-template-columns:auto 1fr;gap:clamp(20px,3vw,40px);
  align-items:start;padding:clamp(28px,4vw,44px) 0;border-bottom:1px solid var(--line);
  transition:padding-left .35s ease}
.svc-spot:hover{padding-left:10px}
.svc-spot-idx{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.6rem,5vw,3.8rem);
  line-height:.8;color:var(--gold);opacity:.55;letter-spacing:.02em;
  transition:opacity .35s ease}
.svc-spot:hover .svc-spot-idx{opacity:1}
.svc-spot-body h3{font-size:clamp(1.7rem,3vw,2.4rem);letter-spacing:.02em;margin-bottom:10px}
.svc-spot-body p{color:var(--muted);max-width:52ch;margin-bottom:16px}
.svc-explore{display:inline-flex;align-items:center;gap:10px;color:var(--gold);
  font-weight:600;font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;
  border-bottom:1px solid transparent;padding-bottom:2px;transition:border-color .3s,gap .3s}
.svc-explore span{transition:transform .3s}
.svc-explore:hover{border-color:var(--gold-line)}
.svc-explore:hover span{transform:translateX(5px)}

/* =====================================================================
   THE PROCESS — CONNECTED VERTICAL TIMELINE (homepage #why)
   One continuous gold spine with nodes; a progression, NOT a card grid.
   ===================================================================== */
.process{background:linear-gradient(180deg,var(--panel),var(--black) 60%,var(--black))}
.timeline{list-style:none;margin:0 auto;padding:0;max-width:760px;position:relative}
/* the connecting spine */
.timeline::before{content:"";position:absolute;left:11px;top:6px;bottom:6px;width:2px;
  background:linear-gradient(180deg,var(--gold) 0%,var(--gold-deep) 100%);opacity:.5}
.tl-step{position:relative;padding:0 0 clamp(34px,5vw,52px) 52px}
.tl-step:last-child{padding-bottom:0}
.tl-node{position:absolute;left:0;top:4px;width:24px;height:24px;border-radius:50%;
  background:var(--black);border:2px solid var(--gold);box-shadow:0 0 0 4px rgba(10,10,10,1)}
.tl-node::after{content:"";position:absolute;inset:5px;border-radius:50%;
  background:var(--gold);transform:scale(0);transition:transform .4s cubic-bezier(.2,1.4,.4,1)}
.tl-step.in .tl-node::after{transform:scale(1)}
.tl-step-no{display:block;font-family:'Bebas Neue',sans-serif;font-size:.92rem;
  letter-spacing:.24em;color:var(--silver-2);text-transform:uppercase;margin-bottom:4px}
.tl-step h3{font-size:clamp(1.7rem,3vw,2.3rem);letter-spacing:.02em;margin-bottom:8px}
.tl-step p{color:var(--muted);max-width:56ch}

/* ===== Ceramic spotlight ===== */
.ceramic{padding:0;background:var(--panel)}
.ceramic-inner{display:grid;grid-template-columns:1.05fr 1fr;gap:0;align-items:center;min-height:560px;padding:0}
.ceramic-media{position:relative;height:100%;min-height:420px}
.ceramic-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.ceramic-media::after{content:"";position:absolute;inset:0;
  box-shadow:inset -60px 0 80px -40px var(--panel)}
.ceramic-text{padding:80px 56px}
.ceramic-text h2{font-size:clamp(2.4rem,5vw,4rem);margin:6px 0 18px}
.ceramic-text p{color:var(--muted);margin-bottom:24px}
.ticks{list-style:none;margin:0 0 30px;display:grid;gap:12px}
.ticks li{padding-left:30px;position:relative;color:var(--white)}
.ticks li::before{content:"✓";position:absolute;left:0;color:var(--gold);font-weight:700}

/* ===== Gallery ===== */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:240px;gap:16px}
.g-item{position:relative;border-radius:var(--r);overflow:hidden;border:1px solid var(--line)}
.g-item img{width:100%;height:100%;object-fit:cover;transition:transform .7s}
.g-item:hover img{transform:scale(1.08)}
.g-tall{grid-row:span 2}
.g-wide{grid-column:span 2}
.g-item figcaption{position:absolute;left:0;right:0;bottom:0;padding:18px 20px;
  font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;color:var(--silver);
  background:linear-gradient(0deg,rgba(0,0,0,.85),transparent);
  transform:translateY(8px);opacity:0;transition:.35s}
.g-item:hover figcaption{transform:translateY(0);opacity:1}

/* ===== Why ===== */
.why{background:linear-gradient(180deg,var(--panel),var(--black))}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.why-step{padding:30px;border:1px solid var(--line);border-radius:4px;background:var(--panel);
  transition:border-color .35s}
.why-step:hover{border-color:var(--gold-line)}
.why-num{font-family:'Bebas Neue',sans-serif;font-size:2.4rem;color:var(--gold);opacity:.7;letter-spacing:.04em}
/* SVG hex-badge inside .why-num: drop the glyph opacity so line-art reads crisp */
.why-num .qmd-ico{width:42px;height:42px;opacity:1;margin-bottom:2px}
.why-step:hover .qmd-ico{transform:translateY(-2px)}
.qmd-ico{transition:transform .35s ease}
.why-step h3{font-size:1.5rem;margin:8px 0 8px;letter-spacing:.02em}
.why-step p{color:var(--muted);font-size:.94rem}

/* ===== Quote ===== */
.quote{padding:96px 0;text-align:center;
  background:radial-gradient(70% 120% at 50% 0%, rgba(200,169,81,.06), transparent 62%)}
.quote blockquote{max-width:860px;margin:0 auto;position:relative}
.quote blockquote::before{content:"“";font-family:'Bebas Neue',sans-serif;color:var(--gold);
  font-size:4rem;line-height:.6;display:block;margin-bottom:8px;opacity:.5}
.quote p{font-family:'Bebas Neue',sans-serif;font-size:clamp(1.9rem,4vw,3rem);line-height:1.16;
  letter-spacing:.01em;text-transform:none;color:var(--silver)}
.quote cite{display:block;margin-top:22px;color:var(--gold);font-style:normal;
  letter-spacing:.18em;text-transform:uppercase;font-size:.78rem}

/* ===== Contact ===== */
.contact{background:var(--panel)}
.contact-inner{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.contact-text h2{font-size:clamp(2.4rem,5vw,3.6rem);margin:6px 0 16px}
.contact-text p{color:var(--muted)}
.contact-list{list-style:none;margin-top:26px;display:grid;gap:14px}
.contact-list li{display:flex;flex-direction:column;border-left:2px solid var(--gold);padding-left:16px}
.contact-list strong{font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:2px}
.contact-list em{color:var(--muted);font-style:normal;font-size:.82rem}
.contact-form{background:var(--panel-2);border:1px solid var(--line);border-radius:var(--r);padding:34px}
.field{margin-bottom:14px}
.field input,.field select,.field textarea{width:100%;padding:14px 16px;border-radius:10px;
  background:#0c0c0e;border:1px solid var(--line);color:var(--white);font-family:inherit;font-size:.95rem}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--gold)}
.field textarea{resize:vertical}
.form-note{font-size:.78rem;color:var(--muted);text-align:center;margin-top:12px}

/* ===== Footer ===== */
.site-footer{padding:54px 0;text-align:center;border-top:1px solid var(--line)}
.footer-logo{height:64px;width:64px;border-radius:50%;object-fit:cover;margin:0 auto 16px;
  box-shadow:0 0 0 1px var(--gold-line)}
.footer-tag{letter-spacing:.2em;text-transform:uppercase;font-size:.8rem;color:var(--silver-2)}
.footer-contact{font-size:.9rem;color:var(--muted);margin-top:8px}
.footer-contact a{color:var(--gold);font-weight:600}

/* ===== Whimsy: restrained, on-brand micro-interactions ===== */
.btn-gold{position:relative;overflow:hidden}
.btn-gold::after{content:"";position:absolute;top:0;left:-130%;width:45%;height:100%;
  background:linear-gradient(105deg,transparent,rgba(255,255,255,.32),transparent);
  transform:skewX(-20deg);transition:left .6s ease;pointer-events:none}
.btn-gold:hover::after{left:150%}
.service-icon{transition:transform .35s ease}
.service-card:hover .service-icon,.dir-card:hover .service-icon{transform:translateY(-3px) scale(1.08)}
.price-table tbody tr{transition:background .25s}
.price-table tbody tr:hover{background:rgba(212,175,55,.06)}
@media(prefers-reduced-motion:reduce){.btn-gold::after{display:none}}
.footer-copy{font-size:.8rem;color:#6b6b73;margin-top:10px}
.footer-social{display:flex;align-items:center;justify-content:center;gap:18px;margin-top:20px}
.footer-social a{color:var(--muted);transition:color .25s}
.footer-social a:hover{color:var(--gold)}
.footer-social svg{width:22px;height:22px;display:block}

/* ===== Dropdown nav ===== */
.has-dropdown{position:relative}
.dropdown{position:absolute;top:140%;left:50%;transform:translateX(-50%) translateY(8px);
  background:rgba(14,14,16,.97);backdrop-filter:blur(14px);border:1px solid var(--line);
  border-radius:12px;padding:10px;min-width:230px;display:flex;flex-direction:column;gap:2px;
  opacity:0;visibility:hidden;transition:.25s;z-index:60}
.has-dropdown:hover .dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.dropdown a{padding:10px 14px;border-radius:8px;font-size:.9rem;color:var(--muted)}
.dropdown a:hover{background:var(--gold-soft);color:var(--white)}
.dropdown a::after{display:none}

/* =====================================================================
   INTERIOR PAGE HERO — shared editorial pattern (all 13 pages inherit)
   Full-bleed photograph, brighter than before, with the title anchored
   bottom-left behind a directional scrim. A vertical gold rule + index
   number give it the magazine-feature feel (vs the old centered block).
   ===================================================================== */
.page-hero{position:relative;min-height:clamp(520px,70vh,720px);display:flex;flex-direction:column;
  overflow:hidden;isolation:isolate}
.page-hero .hero-bg{position:absolute;inset:0;transform:scale(1.05);filter:contrast(1.03) saturate(1.05) brightness(1.05);
  background-size:cover;background-position:center;animation:slowZoom 26s ease-in-out infinite alternate}
/* directional left scrim (matches homepage hero) so the photo stays bright + readable.
   No heavy global wash — darkness is concentrated under the headline rail only. */
.page-hero .hero-overlay{position:absolute;inset:0;background:
  linear-gradient(90deg,rgba(8,8,9,.9) 0%,rgba(8,8,9,.55) 38%,rgba(8,8,9,.1) 66%,transparent 84%),
  linear-gradient(0deg,rgba(8,8,9,.82) 0%,rgba(8,8,9,.2) 34%,transparent 52%)}
/* in-flow, bottom-anchored via margin-top:auto: the hero grows with long
   headlines instead of letting the copy climb under the fixed header */
.page-hero-inner{position:relative;width:100%;
  max-width:var(--maxw-wide);margin:auto auto 0;
  padding:clamp(100px,16vh,130px) var(--gutter) clamp(48px,7vw,84px);
  border-left:2px solid var(--gold)}
.page-hero-inner{padding-left:calc(var(--gutter) + 20px)}
.page-hero .crumbs{font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-bottom:16px}
.page-hero .crumbs a{color:var(--gold)}
.page-hero h1{font-size:clamp(2.8rem,7vw,5.4rem);line-height:.96;margin-bottom:18px;max-width:18ch}
.page-hero p{color:#e4e4e7;max-width:600px;font-size:1.08rem}

/* ---- Animated hero (no photo): monthly-maintenance + fleets. Gold hexagon motion motif. ---- */
.page-hero--fx{background:
  radial-gradient(120% 100% at 82% 26%,rgba(200,169,81,.13),transparent 55%),
  radial-gradient(90% 120% at 100% 100%,rgba(200,169,81,.07),transparent 60%),
  linear-gradient(120deg,#0b0b0d 0%,#141416 55%,#0f0f11 100%)}
.page-hero--fx .hero-overlay{background:
  linear-gradient(90deg,rgba(8,8,9,.82) 0%,rgba(8,8,9,.42) 40%,rgba(8,8,9,.06) 72%,transparent 90%),
  linear-gradient(0deg,rgba(8,8,9,.6) 0%,rgba(8,8,9,.1) 34%,transparent 55%);z-index:2}
.hero-fx{position:absolute;inset:0;z-index:1;overflow:hidden;pointer-events:none}
.hero-fx-grid{position:absolute;inset:-25%;
  background-image:linear-gradient(rgba(200,169,81,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(200,169,81,.05) 1px,transparent 1px);
  background-size:66px 66px;
  -webkit-mask-image:radial-gradient(78% 78% at 78% 40%,#000,transparent 72%);
          mask-image:radial-gradient(78% 78% at 78% 40%,#000,transparent 72%);
  animation:fxGridDrift 42s linear infinite}
@keyframes fxGridDrift{to{transform:translate(66px,66px)}}
.hero-fx-glow{position:absolute;top:50%;right:6%;width:44vmax;height:44vmax;
  background:radial-gradient(circle,rgba(200,169,81,.17),rgba(200,169,81,.04) 42%,transparent 66%);
  transform:translate(28%,-50%);animation:fxGlow 7.5s ease-in-out infinite}
@keyframes fxGlow{0%,100%{opacity:.55;transform:translate(28%,-50%) scale(1)}50%{opacity:1;transform:translate(28%,-50%) scale(1.09)}}
.hero-fx-hex{position:absolute;top:50%;right:0;color:var(--gold);translate:36% -50%;transform-origin:center}
.hero-fx-hex polygon{stroke-width:1;vector-effect:non-scaling-stroke}
.hero-fx-hex.hex-a{width:min(58vmax,720px);height:min(58vmax,720px);opacity:.5;animation:fxSpin 66s linear infinite}
.hero-fx-hex.hex-b{width:min(42vmax,520px);height:min(42vmax,520px);opacity:.3;animation:fxSpinR 50s linear infinite}
.hero-fx-hex.hex-c{width:min(26vmax,320px);height:min(26vmax,320px);opacity:.72;animation:fxSpin 38s linear infinite}
@keyframes fxSpin{to{rotate:360deg}}
@keyframes fxSpinR{to{rotate:-360deg}}
.hero-fx-sweep{position:absolute;inset:0;
  background:linear-gradient(115deg,transparent 32%,rgba(230,205,134,.09) 48%,rgba(230,205,134,.02) 53%,transparent 66%);
  transform:translateX(-60%);animation:fxSweep 10s ease-in-out infinite}
@keyframes fxSweep{0%{transform:translateX(-60%)}55%,100%{transform:translateX(60%)}}
/* floating brand mark at the centre of the hexagon arc */
.hero-fx-logo{position:absolute;top:49%;right:14%;width:clamp(150px,15vw,224px);height:auto;
  translate:0 -50%;opacity:.97;z-index:2;
  animation:fxLogoFloat 6.5s ease-in-out infinite,fxLogoGlow 5.5s ease-in-out infinite}
@keyframes fxLogoFloat{0%,100%{transform:translateY(-9px)}50%{transform:translateY(9px)}}
@keyframes fxLogoGlow{0%,100%{filter:drop-shadow(0 0 15px rgba(200,169,81,.22))}50%{filter:drop-shadow(0 0 34px rgba(200,169,81,.5))}}
@media(max-width:640px){.hero-fx-logo{width:104px;right:7%;top:30%;opacity:.8}}

/* ===== Prose / content ===== */
.prose{max-width:760px}
.prose p{color:var(--muted);margin-bottom:18px}
.prose h2{font-size:clamp(2rem,4vw,3rem);margin:10px 0 18px}
.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.split.reverse>*:first-child{order:2}
.split img{border-radius:var(--r);border:1px solid var(--line);width:100%;height:100%;object-fit:cover;max-height:480px}
.bg-panel{background:var(--panel)}

/* ===== Package cards ===== */
.pkg-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.pkg-grid.three{grid-template-columns:repeat(3,1fr)}
.pkg{background:var(--panel);border:1px solid var(--line);
  border-radius:4px;padding:34px 30px;position:relative;transition:transform .35s,border-color .35s,box-shadow .35s;
  overflow:hidden}
.pkg:hover{transform:translateY(-5px);border-color:var(--gold-line);box-shadow:0 22px 44px -24px rgba(0,0,0,.8)}
/* Featured: champagne edge + thin top accent, no glowing gold halo.
   Accent is inset (left/right:0, top:0) so it never extends past the rounded
   corners or under a breaking-out badge. */
.pkg.featured{border-color:var(--gold-line)}
.pkg.featured::after{content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--gold-deep),var(--gold),var(--gold-hi))}
/* Badge sits CLEANLY INSIDE the card's top-right corner (no break-out, no clip,
   no off-screen border). Featured cards add top padding so the badge clears the
   gold accent + heading. */
.pkg.featured{padding-top:46px}
.pkg .badge{position:absolute;top:14px;right:14px;background:rgba(200,169,81,.14);
  color:var(--gold-hi);font-size:.62rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  padding:6px 12px;border-radius:2px;border:1px solid var(--gold-line);
  max-width:calc(100% - 28px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1}
.pkg h3{font-size:1.8rem;margin-bottom:6px;letter-spacing:.02em}
.pkg .pkg-sub{color:var(--gold);font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;margin-bottom:18px}
.pkg .price{font-family:'Bebas Neue',sans-serif;font-size:2.4rem;color:var(--white);margin-bottom:6px;letter-spacing:.02em}
.pkg .price small{font-size:.9rem;color:var(--muted);letter-spacing:0}
.checklist{list-style:none;margin:18px 0 26px;display:grid;gap:11px}
.checklist li{padding-left:28px;position:relative;color:#d4d4d8;font-size:.94rem}
.checklist li::before{content:"✓";position:absolute;left:0;color:var(--gold);font-weight:700}
.checklist li.no{color:#71717a}
.checklist li.no::before{content:"✕";color:#52525b}

/* ===== Pricing toggle table ===== */
/* Segmented control — sharp, editorial, not a gold pill */
.price-toggle{display:flex;gap:0;width:max-content;margin:0 auto 40px;
  border:1px solid var(--line-strong);border-radius:3px;padding:4px;background:var(--panel)}
.price-toggle button{padding:11px 30px;border-radius:2px;border:1px solid transparent;
  background:transparent;color:var(--muted);cursor:pointer;font-family:inherit;font-weight:600;
  font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;transition:.25s}
.price-toggle button.active{
  background:linear-gradient(168deg,var(--gold-hi),var(--gold) 55%,var(--gold-deep));
  color:#181203;border-color:var(--gold-deep)}
.price-toggle-wrap{display:flex;justify-content:center}
.price-table{width:100%;border-collapse:collapse;background:var(--panel);border:1px solid var(--line);border-radius:6px;overflow:hidden}
.price-table th,.price-table td{padding:16px 18px;text-align:left;border-bottom:1px solid var(--line)}
.price-table th{font-family:'Bebas Neue',sans-serif;font-size:1rem;letter-spacing:.12em;color:var(--gold);background:var(--panel-2);text-transform:uppercase}
.price-table td:not(:first-child){text-align:center;font-weight:600}
.price-table tr:last-child td{border-bottom:none}
.price-table .svc{color:#fff}
.price-note{color:var(--muted);font-size:.85rem;text-align:center;margin-top:16px}
.hidden{display:none}
/* vehicle size guide + grouped price tables */
.size-guide{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:18px}
.size-card{background:var(--panel);border:1px solid var(--line);border-radius:4px;padding:18px 20px;
  transition:border-color .3s}
.size-card:hover{border-color:var(--gold-line)}
.size-card strong{display:block;font-family:'Bebas Neue',sans-serif;font-size:1.5rem;letter-spacing:.06em;color:#fff}
.size-card span{display:block;color:var(--muted);font-size:.86rem;margin-top:2px}
.size-card em{display:inline-block;margin-top:8px;font-style:normal;font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold)}
.price-group{margin-top:40px}
.price-group h3{font-family:'Bebas Neue',sans-serif;font-size:1.7rem;color:#fff;margin-bottom:16px;letter-spacing:.08em;
  display:flex;align-items:center;gap:14px}
.price-group h3::before{content:"";width:28px;height:2px;background:var(--gold);flex:0 0 auto}
.price-table .svc strong{display:block;color:#fff;font-weight:600}
.price-table .svc span{display:block;color:var(--muted);font-size:.8rem;font-weight:400;margin-top:2px;letter-spacing:0}
.pane-lead{color:var(--muted);text-align:center;margin:0 0 4px}
@media(max-width:900px){.size-guide{grid-template-columns:1fr 1fr}}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ===== Directory cards ===== */
.dir-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.dir-card{display:block;background:var(--panel);border:1px solid var(--line);border-radius:4px;
  padding:34px 28px;transition:transform .35s,border-color .35s,box-shadow .35s;position:relative;overflow:hidden}
.dir-card::before{content:"";position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
  transform:scaleX(0);transform-origin:left;transition:transform .4s;pointer-events:none}
.dir-card:hover{transform:translateY(-5px);border-color:var(--gold-line);box-shadow:0 22px 44px -24px rgba(0,0,0,.8)}
.dir-card:hover::before{transform:scaleX(1)}
.dir-card>*{position:relative}
.dir-card .service-icon{margin-bottom:14px}
.dir-card h3{font-size:1.5rem;margin-bottom:8px;letter-spacing:.02em}
.dir-card p{color:var(--muted);font-size:.92rem;margin-bottom:14px}
.dir-card .link{color:var(--gold);font-weight:600;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase}

/* ===== FAQ ===== */
.faq{max-width:820px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{width:100%;text-align:left;background:none;border:none;color:#fff;cursor:pointer;
  font-family:inherit;font-size:1.1rem;font-weight:600;padding:24px 40px 24px 0;position:relative}
.faq-q::after{content:"+";position:absolute;right:0;top:22px;color:var(--gold);font-size:1.6rem;transition:transform .3s}
.faq-item.open .faq-q::after{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease;color:var(--muted)}
.faq-item.open .faq-a{max-height:420px}
.faq-a p{padding-bottom:24px}

/* ===== CTA band ===== */
.cta-band{padding:96px 0;text-align:center;position:relative;
  background:radial-gradient(75% 130% at 50% 0%, rgba(200,169,81,.07), transparent 62%),var(--panel)}
.cta-band::before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:clamp(120px,28vw,300px);height:1px;background:linear-gradient(90deg,transparent,var(--gold-line),transparent)}
.cta-band h2{font-size:clamp(2.4rem,5vw,3.8rem);margin-bottom:16px}
.cta-band p{color:var(--muted);max-width:540px;margin:0 auto 28px}

/* ===== Cinematic reveal (blur-to-sharp filmic rise) ===== */
.reveal{opacity:0;transform:translateY(28px);filter:blur(5px);
  transition:opacity .85s cubic-bezier(.2,.7,.2,1),transform .85s cubic-bezier(.2,.7,.2,1),filter .85s ease}
.reveal.in{opacity:1;transform:none;filter:blur(0)}

/* ===== Cinematic section divider (gold hairline + diamond) ===== */
.divider{display:flex;align-items:center;justify-content:center;padding:6px 0;gap:0;overflow:hidden}
.divider i{display:block;width:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--gold-line),transparent);
  transition:width 1.1s cubic-bezier(.6,0,.2,1)}
.divider.in i{width:120px}
.divider b{width:6px;height:6px;background:var(--gold);transform:rotate(45deg) scale(0);
  margin:0 3px;opacity:0;
  transition:transform .6s .35s cubic-bezier(.2,1.4,.4,1),opacity .5s .35s}
.divider.in b{transform:rotate(45deg) scale(1);opacity:1}

/* ===== Seamless section transitions (no hard edges) ===== */
.stats{border:none;background:linear-gradient(180deg,var(--black) 0%,var(--panel) 50%,var(--black) 100%)}
.section{position:relative}
.bg-panel{background:radial-gradient(120% 100% at 50% 0%,var(--panel) 0%,var(--black) 100%)}
.why{background:linear-gradient(180deg,var(--black),var(--panel) 40%,var(--black))}
/* parallax depth on imagery */
.split img,.g-item img,.ceramic-media img{will-change:transform}

/* ===== Responsive ===== */
@media(max-width:900px){
  .header-quote{display:none}
  .nav{position:fixed;inset:0 0 0 auto;width:80%;max-width:340px;flex-direction:column;
    justify-content:flex-start;align-items:flex-start;gap:2px;background:rgba(8,8,10,.99);
    backdrop-filter:blur(16px);transform:translateX(100%);transition:transform .35s;
    padding:92px 26px 40px;overflow-y:auto;-webkit-overflow-scrolling:touch;
    box-shadow:-24px 0 60px rgba(0,0,0,.6);overscroll-behavior:contain}
  .nav.open{transform:none}
  .nav a{font-size:1.12rem;color:var(--white);padding:11px 0;width:100%;display:block}
  .nav a::after{display:none}
  .has-dropdown{width:100%}
  .has-dropdown>a{color:var(--gold)}
  body.nav-open{overflow:hidden}
  /* backdrop-filter on .scrolled header creates a containing block that traps the
     fixed nav after scrolling — strip it while the menu is open so the panel
     re-anchors to the viewport and covers full height */
  body.nav-open .site-header{backdrop-filter:none;-webkit-backdrop-filter:none;background:transparent;border-color:transparent;transform:none;transition:none}
  .nav{z-index:55}
  .nav-toggle{display:flex;z-index:60}
  .header-cta{display:none}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:32px}
  .services-grid{grid-template-columns:1fr}
  .ceramic-inner{grid-template-columns:1fr}
  .ceramic-media{min-height:320px}
  .ceramic-text{padding:48px 24px}
  /* editorial feature band stacks: image on top, text below */
  .feature-band,.feature-band.reverse{grid-template-columns:1fr;min-height:0}
  .ab-about-grid,.ab-mission{grid-template-columns:1fr;gap:26px}
  .ab-about-head{flex-direction:column;align-items:flex-start;gap:16px}
  .ab-mission{text-align:left}
  .feature-band.reverse .fb-media{order:0}
  .fb-media{min-height:clamp(240px,52vw,360px)}
  /* cinematic hero stacks naturally (centered column already responsive) */
  .hero-stage-wrap{max-width:100%}
  /* services editorial collapses to a single column; lead un-sticks */
  .services-layout{grid-template-columns:1fr;gap:clamp(28px,6vw,44px)}
  .services-lead{position:static;top:auto}
  /* clean uniform 2x2 grid on mobile — no col/row spans (those left gaps) */
  .gallery{grid-template-columns:repeat(2,1fr);grid-auto-rows:auto;gap:12px}
  .g-item{aspect-ratio:4/3}
  .g-wide{grid-column:span 1}
  .g-tall{grid-row:span 1}
  /* touch has no hover — captions must stay visible */
  .g-item figcaption{transform:none;opacity:1;font-size:.66rem;padding:14px 14px 12px}
  .why-grid{grid-template-columns:1fr 1fr}
  .contact-inner{grid-template-columns:1fr;gap:32px}
}
@media(max-width:900px){
  .dropdown{position:static;transform:none;opacity:1;visibility:visible;background:none;
    border:none;padding:0 0 6px 16px;min-width:0;border-left:1px solid var(--line);margin:2px 0 4px}
  .has-dropdown:hover .dropdown{transform:none}
  .dropdown a{font-size:.98rem;padding:8px 14px;color:var(--muted)}
  .pkg-grid,.pkg-grid.three,.dir-grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr;gap:28px}
  .split.reverse>*:first-child{order:0}
  .price-table th,.price-table td{padding:13px 8px;font-size:.86rem}
  .price-table th:not(:first-child),.price-table td:not(:first-child){padding-left:4px;padding-right:4px}
}
@media(max-width:560px){
  /* Force the 4-col price tables to FIT (no clipping/overflow): fixed layout
     wraps the package name/description instead of pushing price columns off-screen.
     All prices + descriptions stay visible — content is unchanged. */
  .price-table{table-layout:fixed;width:100%}
  .price-table th,.price-table td{padding:11px 5px;font-size:.8rem;word-break:break-word}
  .price-table col,.price-table th:first-child,.price-table td:first-child{width:46%}
  .price-table th:not(:first-child),.price-table td:not(:first-child){width:18%}
  .price-table .svc span{font-size:.72rem;line-height:1.3}
  .price-table td:not(:first-child){font-size:.84rem}
}
@media(max-width:540px){
  .why-grid{grid-template-columns:1fr}
  .hero-title{font-size:clamp(2.6rem,11vw,3.8rem);margin:6px 0 18px;max-width:none}
  .hero-sub{font-size:1.04rem;margin-bottom:28px}
  /* the eyebrow rail is a no-wrap flex; on phones its letter-spaced label was
     forcing the whole hero-content wider than the viewport, clipping the copy.
     Let it wrap and tighten the tracking so everything stays inside the gutter. */
  .hero-eyebrow-row{flex-wrap:wrap;gap:10px 12px}
  .hero-content .eyebrow{font-size:.62rem;letter-spacing:.18em}
  .hero-eyebrow-row .rule{flex-basis:36px}
  /* on phones the photo is portrait-ish: use a stronger bottom-up scrim so the
     bottom-anchored cover line stays legible without hiding the car */
  .hero-overlay{background:linear-gradient(0deg,rgba(8,8,9,.50) 8%,rgba(8,8,9,.18) 42%,transparent 72%)}
  /* mobile: brighten video filter + lighten scrim so image isn't crushed */
  .hero-video-bg{filter:brightness(.95) contrast(1.06) saturate(.92) sepia(.04)}
  .hero-video-scrim{background:
    linear-gradient(180deg,rgba(6,6,8,.15) 0%,rgba(6,6,8,.03) 30%,rgba(6,6,8,.10) 66%,rgba(6,6,8,.60) 100%),
    radial-gradient(125% 85% at 50% 42%,transparent 55%,rgba(6,6,8,.12) 100%)}
  .page-hero .hero-overlay{background:linear-gradient(0deg,rgba(8,8,9,.28) 5%,rgba(8,8,9,.05) 40%,transparent 68%)}
  .brand{margin-left:12px}
  .page-hero-inner{border-left-width:2px}
  .page-hero h1{font-size:clamp(2.6rem,9vw,4rem)}
  .page-hero p{font-size:1rem}
  .btn{padding:14px 26px}
  .stat-num{font-size:2.6rem}
}
@media(prefers-reduced-motion:reduce){
  .hero-bg,.page-hero .hero-bg,.hero-grid,.scroll-cue span,.grain,
  .intro-logo img,.intro-ring circle,
  .hero-ember,.hero-smoke,.hero-glow,.hero-ring,
  .hero-fx-grid,.hero-fx-glow,.hero-fx-hex,.hero-fx-sweep,.hero-fx-logo{animation:none}
  .reveal{transition:none;opacity:1;transform:none;filter:none}
  .divider i{transition:none;width:120px}
  .divider b{transition:none;transform:rotate(45deg) scale(1);opacity:1}
  /* Show intro logo immediately (its reveal animation is disabled above) */
  .intro-logo img,.intro-tag{opacity:1;transform:none}
  .intro-ring circle{stroke-dashoffset:0}
  /* CINEMATIC HERO reduced-motion fallback: fully-drawn, fully-lit mark with
     no ember pulse, no smoke. The mark is instantly the centerpiece. */
  .hero-ring{stroke-dashoffset:0}
  .hero-logo-real{opacity:1;transform:none;filter:blur(0) drop-shadow(0 0 30px rgba(200,169,81,.34));transition:none}
  .hero-ember{opacity:.28}
  /* reduced-motion: no autoplaying video — show the graded poster still */
  .hero-video-bg{display:none}
  .hero-video{background:#050506 url("../assets/video/hero-poster.jpg") center 54%/cover no-repeat}
  .tl-step .tl-node::after{transform:scale(1)}
  html{scroll-behavior:auto}
}
