/* =============================================================
   VIP DETAILING SPA — luxury mobile detailing + PDR add-on
   Palette: onyx black · old gold · brushed steel
   Signature: riveted gold bezel (from the crest hardware) +
              a gold specular sweep across the hero
   ============================================================= */

:root{
  --onyx:     #07070A;   /* base background          */
  --onyx-2:   #0D0D11;   /* raised panels            */
  --onyx-3:   #141417;   /* cards                    */
  --line:     rgba(212,175,90,.14);
  --line-2:   rgba(255,255,255,.06);
  --steel:    #B7B7BE;   /* muted body text          */
  --steel-2:  #85858C;   /* dim captions             */
  --pearl:    #F3EFE6;   /* headings / bright text   */
  --gold:     #C9A227;   /* primary metal            */
  --gold-2:   #F0D27A;   /* bright highlight gold    */
  --gold-lo:  rgba(201,162,39,.14);

  --shadow:   0 24px 60px -24px rgba(0,0,0,.8);
  --r:        14px;
  --r-lg:     22px;
  --maxw:     1180px;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Montserrat', system-ui, sans-serif;
  --f-label:   'Montserrat', system-ui, sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--f-body);
  background:var(--onyx);
  color:var(--steel);
  line-height:1.7;
  font-weight:400;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ color:var(--pearl); font-family:var(--f-display); line-height:1.05; font-weight:600; }

.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:22px; }

.skip-link{
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--gold); color:#0a0a0a; padding:10px 16px; border-radius:0 0 10px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:2px solid var(--gold-2); outline-offset:3px; border-radius:4px; }

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  font-family:var(--f-label); font-size:.72rem; letter-spacing:.32em; font-weight:500;
  text-transform:uppercase; color:var(--steel);
  display:inline-flex; align-items:center; gap:.7em; margin-bottom:1.1rem;
}
.eyebrow .tick{ width:26px; height:1px; background:var(--gold); display:inline-block; }

/* ---------- buttons ---------- */
.btn{
  --pad:.72em 1.3em;
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  padding:var(--pad); border-radius:4px; font-weight:500; font-size:.9rem;
  letter-spacing:.03em;
  font-family:var(--f-body); cursor:pointer; border:1px solid transparent;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s;
  position:relative; overflow:hidden; white-space:nowrap;
}
.btn-lg{ --pad:1.05em 2.1em; font-size:1.02rem; }
.btn-full{ width:100%; }
.btn:active{ transform:translateY(1px); }

.btn-solid{
  background:linear-gradient(155deg,var(--gold-2),var(--gold) 60%); color:#0a0a0a; font-weight:700;
  box-shadow:0 6px 24px -6px rgba(201,162,39,.55);
}
.btn-solid:hover{ filter:brightness(1.1); box-shadow:0 8px 30px -6px rgba(201,162,39,.75); transform:translateY(-1px); }
/* sweeping specular highlight across solid buttons */
.btn-solid::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,.45) 48%,transparent 66%);
  transform:translateX(-120%); transition:transform .6s ease;
}
.btn-solid:hover::after{ transform:translateX(120%); }

.btn-ghost{ background:transparent; color:var(--pearl); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--gold); }
.btn-outline{ background:transparent; color:var(--pearl); border-color:var(--gold); }
.btn-outline:hover{ background:var(--gold); color:#0a0a0a; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-head{
  position:sticky; top:0; z-index:100;
  background:rgba(7,7,10,.78); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line-2);
}
.head-inner{ display:flex; align-items:center; gap:2rem; height:78px; }

.brand{ display:flex; align-items:center; }
.brand-logo{ height:46px; width:auto; }

.nav{ display:flex; gap:1.7rem; margin-left:auto; }
.nav a{
  font-size:.84rem; letter-spacing:.03em; color:var(--steel); font-weight:500;
  position:relative; padding:.2em 0; transition:color .18s;
}
.nav a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0;
  background:var(--gold); transition:width .22s ease;
}
.nav a:hover{ color:var(--pearl); }
.nav a:hover::after{ width:100%; }

.head-cta{ display:flex; align-items:center; gap:1.2rem; }
.phone-link{
  font-family:var(--f-body); font-size:.85rem; color:var(--pearl); letter-spacing:.02em;
  display:inline-flex; align-items:center; gap:.5em;
}
.phone-link .dot{
  width:6px; height:6px; border-radius:50%; background:var(--gold);
  box-shadow:0 0 0 0 var(--gold); animation:pulse 2.4s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(201,162,39,.6); }
  70%{ box-shadow:0 0 0 8px rgba(201,162,39,0); }
  100%{ box-shadow:0 0 0 0 rgba(201,162,39,0); }
}

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:0;
  cursor:pointer; padding:6px; margin-left:auto;
}
.nav-toggle span{ width:24px; height:1px; background:var(--pearl); transition:.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display:none; flex-direction:column; gap:.3rem; padding:1rem 22px 1.6rem;
  border-bottom:1px solid var(--line-2); background:var(--onyx-2);
}
.mobile-nav.open{ display:flex; }
.mobile-nav a{ padding:.7rem .2rem; color:var(--steel); border-bottom:1px solid var(--line-2); }
.mobile-nav a:last-child{ border:0; margin-top:.6rem; }

/* ===================================================================
   HERO
   =================================================================== */
.hero{ position:relative; padding:clamp(4rem,10vw,7.5rem) 0 clamp(3.5rem,7vw,5.5rem); overflow:hidden; }
.hero-bg{ position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(1200px 500px at 78% -10%, rgba(201,162,39,.16), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(150,150,160,.06), transparent 60%),
    var(--onyx);
}
/* the specular gold sweep that reads across the hero once on load */
.hero-bg .sweep{
  position:absolute; top:0; left:-40%; width:40%; height:100%;
  background:linear-gradient(105deg,transparent,rgba(240,210,122,.08) 45%,rgba(240,210,122,.16) 50%,transparent 60%);
  transform:skewX(-14deg);
  animation:heroSweep 3.2s ease-out .3s forwards;
}
@keyframes heroSweep{ to{ left:140%; } }

.hero-inner{ position:relative; z-index:1; }
.hero-title{
  font-size:clamp(2.8rem,8vw,5.9rem); font-weight:600; letter-spacing:-.01em;
  color:var(--pearl); margin-bottom:1.3rem;
}
.hero-title .accent{ color:var(--gold); font-style:italic; }
.hero-lede{ max-width:640px; font-size:1.08rem; color:var(--steel); margin-bottom:2.2rem; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:3.2rem; }

.hero-stats{ list-style:none; display:flex; gap:2.8rem; flex-wrap:wrap; }
.hero-stats li{ display:flex; flex-direction:column; gap:.3rem; }
.hero-stats .num{ font-family:var(--f-display); font-size:1.5rem; font-weight:600; color:var(--gold-2); }
.hero-stats .lbl{ font-size:.78rem; letter-spacing:.05em; color:var(--steel-2); }

/* ===================================================================
   SECTION SHELL
   =================================================================== */
.section{ padding:clamp(4.5rem,8vw,6.5rem) 0; position:relative; }
.sec-head{ max-width:640px; margin-bottom:3rem; }
.sec-title{ font-size:clamp(2rem,4vw,2.9rem); margin-bottom:1rem; }
.sec-sub{ font-size:1rem; color:var(--steel); }

/* ---------- riveted-bezel card signature ---------- */
/* four small gold "rivets" at the corners, echoing the crest hardware */
.svc-card, .step, .quote-formwrap, .pdr-panel{
  position:relative;
}
.svc-card::before, .svc-card::after,
.step::before, .step::after{
  content:""; position:absolute; width:5px; height:5px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--gold-2), var(--gold-deep, #8a6d1c) 75%);
  box-shadow:0 1px 2px rgba(0,0,0,.6);
  opacity:.85;
}
.svc-card::before, .step::before{ top:12px; left:12px; }
.svc-card::after,  .step::after { top:12px; right:12px; }

/* ---------- trust: badges + testimonials ---------- */
.trust{ padding-top:0; padding-bottom:clamp(3.5rem,7vw,5rem); }
.trust-badges{
  list-style:none; display:flex; flex-wrap:wrap; justify-content:center; gap:2.4rem 3.2rem;
  padding:1.8rem 0 3rem; border-bottom:1px solid var(--line-2); margin-bottom:3rem;
}
.trust-badges li{ display:flex; align-items:center; gap:.6em; font-size:.86rem; color:var(--steel); }
.tb-ico{ color:var(--gold-2); font-size:.9rem; letter-spacing:.05em; }

.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.testi{
  background:var(--onyx-3); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:1.8rem 1.7rem;
}
.testi-stars{ color:var(--gold-2); font-size:.85rem; letter-spacing:.1em; margin-bottom:.9rem; }
.testi blockquote{ font-family:var(--f-display); font-style:italic; font-size:1.15rem; color:var(--pearl); line-height:1.5; margin-bottom:1rem; }
.testi figcaption{ font-size:.8rem; color:var(--steel-2); }
.testi-note{ text-align:center; font-size:.78rem; color:var(--steel-2); margin-top:1.6rem; }

/* ---------- services ---------- */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.svc-card{
  background:linear-gradient(180deg,var(--onyx-3),var(--onyx-2));
  border:1px solid var(--line); border-radius:var(--r-lg);
  padding:2rem 1.7rem 1.8rem;
}
.svc-card.is-feature{
  border-color:rgba(201,162,39,.55);
  box-shadow:0 0 0 1px rgba(201,162,39,.18), var(--shadow);
}
.svc-card .tag{
  display:inline-block; font-size:.66rem; letter-spacing:.16em; text-transform:uppercase;
  color:#0a0a0a; background:linear-gradient(155deg,var(--gold-2),var(--gold));
  padding:.35em .7em; border-radius:3px; margin-bottom:1rem; font-weight:700;
}
.svc-idx{ display:block; font-family:var(--f-display); font-size:.85rem; color:var(--steel-2); letter-spacing:.1em; margin-bottom:.6rem; }
.svc-card h3{ font-size:1.5rem; margin-bottom:.3rem; }
.svc-price{ font-family:var(--f-display); font-size:1rem; color:var(--steel); margin-bottom:1rem; }
.svc-price b{ font-size:1.3rem; color:var(--gold-2); font-weight:600; }
.svc-desc{ font-size:.92rem; margin-bottom:1.2rem; }
.svc-list{ list-style:none; margin-bottom:1.5rem; }
.svc-list li{
  font-size:.86rem; padding:.5em 0; border-top:1px solid var(--line-2); color:var(--steel);
}
.svc-go{ font-size:.85rem; font-weight:600; color:var(--gold-2); letter-spacing:.02em; }
.svc-go:hover{ color:var(--gold); }

/* ---------- PDR add-on ---------- */
.pdr{ background:var(--onyx-2); border-top:1px solid var(--line-2); border-bottom:1px solid var(--line-2); }
.board{
  position:absolute; inset:0; z-index:0; opacity:.4; pointer-events:none;
  background:repeating-linear-gradient(
    100deg,
    transparent 0 46px,
    rgba(201,162,39,.05) 46px 48px
  );
  -webkit-mask-image:linear-gradient(90deg,transparent, #000 30%, #000 70%, transparent);
          mask-image:linear-gradient(90deg,transparent, #000 30%, #000 70%, transparent);
}
.pdr-grid{ position:relative; z-index:1; display:grid; grid-template-columns:1.35fr .9fr; gap:3rem; align-items:start; }
.pdr-points{ list-style:none; margin:2rem 0; }
.pdr-points li{
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  padding:.9em 0; border-top:1px solid var(--line-2);
}
.pdr-points li:last-child{ border-bottom:1px solid var(--line-2); }
.pdr-k{ color:var(--pearl); font-weight:500; }
.pdr-v{ font-family:var(--f-body); font-size:.82rem; color:var(--steel-2); }
.pdr-actions{ display:flex; flex-wrap:wrap; gap:.8rem; }

.pdr-panel{
  background:var(--onyx-3); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:1.7rem; box-shadow:var(--shadow); position:sticky; top:100px;
}
.panel-kicker{
  font-size:.68rem; letter-spacing:.24em; text-transform:uppercase; color:var(--gold-2);
  margin-bottom:1rem; font-weight:600;
}
.panel-row{
  display:flex; justify-content:space-between; align-items:baseline;
  padding:.95em 0; border-bottom:1px solid var(--line-2); font-size:.94rem;
}
.panel-row span{ color:var(--steel); }
.panel-row b{ font-family:var(--f-display); font-size:1.05rem; color:var(--pearl); }
.panel-note{ font-size:.82rem; color:var(--steel-2); margin-top:1.1rem; }

/* ---------- lease return & pre-sale positioning ---------- */
.lease-presale{ background:linear-gradient(180deg,var(--onyx),var(--onyx-2)); border-top:1px solid var(--line-2); border-bottom:1px solid var(--line-2); }
.lps-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; margin-bottom:2.8rem; }
.lps-card{
  background:var(--onyx-3); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:1.9rem; position:relative;
}
.lps-icon{ font-size:1.6rem; display:block; margin-bottom:.9rem; }
.lps-card h3{ font-size:1.25rem; margin-bottom:.8rem; }
.lps-card p{ font-size:.94rem; color:var(--steel); margin-bottom:1.2rem; }
.lps-list{ list-style:none; margin-bottom:1.5rem; }
.lps-list li{ font-size:.88rem; padding:.6em 0; border-bottom:1px solid var(--line-2); }
.lps-list li:last-child{ border:0; }
.lps-link{ font-size:.85rem; font-weight:600; color:var(--gold-2); }
.lps-link:hover{ color:var(--gold); }

.lps-cta-box{
  background:var(--onyx-3); border:1px solid rgba(201,162,39,.4); border-radius:var(--r-lg);
  padding:2rem; text-align:center;
}
.lps-cta-text{ font-size:.98rem; color:var(--steel); margin-bottom:1.4rem; }
.lps-cta-text strong{ color:var(--pearl); }

/* ---------- work / before-after ---------- */
.ba-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.ba{
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  border:1px dashed var(--line); aspect-ratio:4/3; user-select:none;
}
.ba::before{
  content:"Replace with your photo"; position:absolute; inset:0; z-index:5;
  display:flex; align-items:center; justify-content:center; text-align:center;
  padding:1rem; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase;
  color:rgba(243,239,230,.5); pointer-events:none;
}
.ba-img{ position:absolute; inset:0; }
.ba-before{ z-index:2; clip-path:inset(0 50% 0 0); } /* JS drives the 50% */
.ba-tag{
  position:absolute; bottom:12px; font-family:var(--f-body); font-size:.66rem;
  letter-spacing:.1em; text-transform:uppercase; color:#fff;
  background:rgba(0,0,0,.55); padding:.3em .6em; border-radius:3px;
}
.ba-before .ba-tag{ left:12px; }
.ba-after  .ba-tag{ right:12px; }
.ba-range{
  position:absolute; inset:0; z-index:4; width:100%; height:100%;
  opacity:0; cursor:ew-resize; margin:0;
}
.ba-handle{
  position:absolute; top:0; bottom:0; left:50%; width:1px; z-index:3;
  background:var(--gold); transform:translateX(-1px); pointer-events:none;
}
.ba-handle::after{
  content:""; position:absolute; top:50%; left:50%; width:34px; height:34px;
  transform:translate(-50%,-50%); border-radius:50%;
  background:linear-gradient(155deg,var(--gold-2),var(--gold)); border:3px solid #0a0a0a;
  box-shadow:0 4px 14px rgba(0,0,0,.5);
}
.ba figcaption{
  position:absolute; top:12px; left:12px; z-index:3;
  font-family:var(--f-body); font-size:.68rem; letter-spacing:.06em;
  color:var(--pearl); background:rgba(7,7,10,.65); padding:.3em .6em; border-radius:3px;
}
.work-note{ margin-top:1.6rem; font-size:.82rem; color:var(--steel-2); }
.work-note code{ font-family:var(--f-body); color:var(--steel); }

/* ---------- process ---------- */
.steps{ list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; }
.step{ background:var(--onyx-3); border:1px solid var(--line); border-radius:var(--r); padding:1.9rem 1.5rem; }
.step-n{ font-family:var(--f-display); font-size:1.1rem; color:var(--gold-2); letter-spacing:.05em; }
.step h3{ font-size:1.3rem; margin:.7rem 0 .6rem; }
.step p{ font-size:.9rem; }
.step::before{ top:12px; left:12px; }
.step::after{ top:12px; right:12px; }

/* ---------- quote ---------- */
.quote{ background:var(--onyx-2); border-top:1px solid var(--line-2); }
.quote-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:3.5rem; align-items:start; }
.quote-assure{ list-style:none; margin:1.6rem 0; }
.quote-assure li{ padding:.5em 0 .5em 1.7em; position:relative; color:var(--steel); }
.quote-assure li::before{
  content:""; position:absolute; left:0; top:.72em; width:14px; height:8px;
  border-left:1px solid var(--gold); border-bottom:1px solid var(--gold);
  transform:rotate(-45deg);
}
.quote-call{ margin-top:2rem; padding-top:1.6rem; border-top:1px solid var(--line); }
.quote-call span{ display:block; font-size:.75rem; letter-spacing:.16em; text-transform:uppercase; color:var(--steel-2); margin-bottom:.3rem; }
.phone-big{ font-family:var(--f-display); font-weight:600; font-size:1.9rem; color:var(--pearl); }
.phone-big:hover{ color:var(--gold-2); }

.quote-formwrap{ background:var(--onyx-3); border:1px solid var(--line); border-radius:var(--r-lg); padding:2rem; box-shadow:var(--shadow); }
.quote-form .field{ margin-bottom:1.1rem; }
.two-up{ display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
.quote-form label{ display:block; font-size:.8rem; font-weight:500; color:var(--pearl); margin-bottom:.4rem; letter-spacing:.02em; }
.quote-form input,
.quote-form select,
.quote-form textarea{
  width:100%; background:var(--onyx); border:1px solid var(--line);
  border-radius:6px; padding:.8em .9em; color:var(--pearl);
  font-family:var(--f-body); font-size:.95rem; transition:border-color .18s, background .18s;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder{ color:var(--steel-2); }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{ outline:none; border-color:var(--gold); background:#0a0a0c; }
.quote-form textarea{ resize:vertical; }
.form-fine{ font-size:.76rem; color:var(--steel-2); margin-top:.9rem; text-align:center; }
.hp{ position:absolute; left:-9999px; height:0; overflow:hidden; }

.alert{ border-radius:var(--r); padding:1.2rem 1.3rem; margin-bottom:1.4rem; border:1px solid; }
.alert b{ color:var(--pearl); display:block; margin-bottom:.3rem; }
.alert p{ font-size:.9rem; }
.alert a{ color:var(--gold-2); font-weight:600; }
.alert-ok{ background:rgba(40,180,110,.1); border-color:rgba(40,180,110,.4); }
.alert-err{ background:var(--gold-lo); border-color:rgba(201,162,39,.4); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-foot{ background:var(--onyx); border-top:1px solid var(--line); padding-top:3.5rem; }
.foot-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr 1fr; gap:2rem; padding-bottom:2.5rem; }
.foot-logo{ width:100%; max-width:260px; height:auto; margin-bottom:.8rem; }
.foot-area{ font-family:var(--f-body); font-size:.8rem; color:var(--steel-2); }
.foot-col h4{ font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; color:var(--steel-2); font-weight:500; margin-bottom:1rem; }
.foot-col p{ font-size:.92rem; margin-bottom:.6rem; }
.foot-trust{ list-style:none; }
.foot-trust li{ font-size:.86rem; color:var(--steel); padding:.35em 0; position:relative; padding-left:1.1em; }
.foot-trust li::before{ content:"✓"; position:absolute; left:0; color:var(--gold-2); }
.foot-link{ color:var(--steel); transition:color .18s; }
.foot-link:hover{ color:var(--gold-2); }
.hours div{ display:flex; justify-content:space-between; gap:1rem; padding:.35em 0; border-bottom:1px solid var(--line-2); }
.hours dt{ color:var(--steel); font-size:.88rem; }
.hours dd{ font-family:var(--f-body); font-size:.82rem; color:var(--pearl); }
.foot-book{ margin-top:1.2rem; }
.foot-base{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:1rem;
  padding:1.5rem 0; border-top:1px solid var(--line);
  font-size:.78rem; color:var(--steel-2);
}

/* ===================================================================
   REVEAL ON SCROLL
   =================================================================== */
[data-reveal]{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
[data-reveal].in{ opacity:1; transform:none; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width:960px){
  .card-grid,.ba-grid,.testi-grid,.lps-grid{ grid-template-columns:1fr 1fr; }
  .steps{ grid-template-columns:1fr 1fr; }
  .pdr-grid,.quote-grid{ grid-template-columns:1fr; gap:2.4rem; }
  .pdr-panel{ position:static; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:760px){
  .nav,.head-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .card-grid,.ba-grid,.steps,.testi-grid,.lps-grid{ grid-template-columns:1fr; }
  .two-up{ grid-template-columns:1fr; }
  .hero-stats{ gap:1.6rem 2.2rem; }
  .foot-grid{ grid-template-columns:1fr; }
  .brand-logo{ height:38px; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
  [data-reveal]{ opacity:1; transform:none; }
  .hero-bg .sweep{ display:none; }
}
