/* ============================================================
   SOCRAT ROAD STAR — "ATELIER NOIR"
   Bespoke ultra-minimal editorial homepage. Scoped to body.atelier.
   Loads after style.css (reuses header/footer/modal/buttons base).
   Pairs with js/atelier.js (smooth scroll + scroll-driven motion).
   ============================================================ */

body.atelier{
  --ink:#080706;        /* canvas */
  --ink-2:#0c0b09;
  --bone:#ece7db;       /* primary text */
  --bone-dim:#8c8576;   /* muted */
  --gold:#c8a061;
  --gold-lite:#e7cd92;
  --line:rgba(236,231,219,.13);
  --line-2:rgba(236,231,219,.07);
  --e:cubic-bezier(.19,1,.22,1);     /* expo-out, the signature ease */
  --e2:cubic-bezier(.83,0,.17,1);
  --serif:"Playfair Display",Georgia,serif;
  --sans:"Inter",-apple-system,BlinkMacSystemFont,sans-serif;
  --pad:clamp(22px,6vw,90px);
  /* --- warm-light section palette (day) --- */
  --cream:#f3efe6;            /* primary light section bg */
  --cream-2:#ece5d7;          /* alt band */
  --cream-card:#fbf8f1;       /* raised cards on cream */
  --ink-on-light:#1a1814;     /* headings + body on cream */
  --ink-dim-light:#5f594d;    /* muted text on cream */
  --line-light:rgba(26,24,20,.14);
  --gold-deep:#835f24;        /* gold TEXT/LINKS on cream — AA-safe (5:1 on cream) */
  --ink-surface:#14110d;      /* big dark panels — espresso, not void */
  --bone-body:#cfc7b8;        /* paragraph text on dark */
  background:var(--ink); color:var(--bone);
  font-family:var(--sans);
}
body.atelier.lock{ overflow:hidden; }

/* native scroll (the old transform-based smooth-scroll mode is unused; no will-change
   so we don't permanently GPU-promote the whole <main>) */

/* ---------- type ---------- */
.atelier ::selection{ background:var(--gold); color:#0b0a08; }
.atelier h1,.atelier h2,.atelier h3{ font-family:var(--serif); font-weight:400; line-height:.98; letter-spacing:-.018em; color:var(--bone); }
.label{ font-family:var(--sans); font-size:.66rem; font-weight:500; letter-spacing:.34em; text-transform:uppercase; color:var(--bone-dim); }
.label--gold{ color:var(--gold); }
.idx{ font-family:var(--serif); font-style:italic; font-size:.95rem; color:var(--gold); letter-spacing:0; }
.amp{ font-style:italic; color:var(--gold); }
.atelier .stage{ position:relative; min-height:100svh; display:flex; flex-direction:column; justify-content:center; padding:clamp(96px,14vh,180px) var(--pad); }
.atelier .blk{ padding:clamp(110px,16vh,220px) var(--pad); position:relative; }
.measure{ max-width:1500px; margin-inline:auto; width:100%; }

/* ---------- heading reveal (whole-block rise + fade; natural wrapping) ---------- */
/* atelier.js tags every [data-split] heading with .split for the reveal; style.css
   also defines .split as a 2-col grid layout. Force block here so headings wrap
   naturally instead of dropping inline <span class="amp"> words into grid cells. */
body.atelier .split{ display:block; }
.split{ opacity:0; transform:translateY(30px); transition:opacity 1.1s var(--e),transform 1.1s var(--e); will-change:opacity,transform; }
.split.is-in{ opacity:1; transform:none; }
.atelier [data-reveal]{ opacity:0; transform:translateY(26px); transition:opacity 1.1s var(--e),transform 1.1s var(--e); }
.atelier [data-reveal].is-in{ opacity:1; transform:none; }
.atelier [data-reveal][data-d="1"]{ transition-delay:.12s; }
.atelier [data-reveal][data-d="2"]{ transition-delay:.24s; }
.atelier [data-reveal][data-d="3"]{ transition-delay:.36s; }
.atelier [data-reveal][data-d="4"]{ transition-delay:.48s; }
.hr{ height:1px; background:var(--line); transform:scaleX(0); transform-origin:left; transition:transform 1.4s var(--e); }
.hr.is-in{ transform:scaleX(1); }

/* ---------- clip-reveal media + parallax drift ---------- */
.media{ position:relative; overflow:hidden; background:#000; }
.media img,.media video{ display:block; width:100%; height:100%; object-fit:cover; }
.media__fig{ position:absolute; inset:0; clip-path:inset(100% 0 0 0); transition:clip-path 1.35s var(--e2); }
.media.is-in .media__fig{ clip-path:inset(0 0 0 0); }
.media__fig img,.media__fig video{ transform:scale(1.18); transition:transform 1.8s var(--e); }
.media.is-in .media__fig img,.media.is-in .media__fig video{ transform:scale(1); }
[data-drift]{ will-change:transform; }

/* ============================================================
   HEADER — minimal, transparent over hero
   ============================================================ */
body.atelier .header{ position:fixed; top:0; left:0; right:0; width:100%; background:transparent; backdrop-filter:none; -webkit-backdrop-filter:none;
  border-bottom:1px solid transparent; padding:clamp(18px,2.4vw,30px) var(--pad); transition:background .5s var(--e),padding .5s var(--e),border-color .5s; }
body.atelier .header.shrink{ background:rgba(10,9,8,.9); backdrop-filter:blur(16px) saturate(1.1); -webkit-backdrop-filter:blur(16px) saturate(1.1); border-bottom-color:var(--line); padding-block:13px; }
/* when the mobile overlay is open, kill the header blur so the fixed nav escapes its containing block */
body.atelier.menu-open .header{ backdrop-filter:none; -webkit-backdrop-filter:none; background:transparent; border-bottom-color:transparent; }
body.atelier .header__logo img{ height:46px; }
body.atelier .header.shrink .header__logo img{ height:40px; }
body.atelier .nav{ gap:clamp(18px,2vw,32px); }
body.atelier .nav__links{ gap:clamp(15px,1.7vw,26px); }
body.atelier .nav__links a{ font-size:.71rem; letter-spacing:.16em; opacity:.88; transition:color .3s var(--e),opacity .3s var(--e); text-shadow:0 1px 10px rgba(0,0,0,.4); }
body.atelier .header.shrink .nav__links a{ text-shadow:none; opacity:.82; }
body.atelier .nav__links a:hover{ color:var(--gold-lite); opacity:1; }
body.atelier .nav .btn-gold{ background:linear-gradient(135deg,var(--gold-lite),var(--gold)); border:0; color:#15110a; letter-spacing:.14em; padding:.92em 1.65em; box-shadow:0 10px 26px -14px rgba(200,160,97,.8); transition:transform .3s var(--e),box-shadow .3s var(--e),background .3s var(--e); }
body.atelier .nav .btn-gold:hover{ background:var(--gold-lite); color:#15110a; transform:translateY(-1px); box-shadow:0 14px 30px -12px rgba(200,160,97,.95); }

/* ============================================================
   HERO
   ============================================================ */
.ah{ position:relative; min-height:clamp(640px,95svh,960px); display:flex; align-items:flex-start; padding:clamp(148px,21vh,232px) var(--pad) clamp(64px,9vh,110px); overflow:hidden; }
.ah__bg{ position:absolute; inset:0; z-index:0; }
.ah__bg video,.ah__bg img{ width:100%; height:100%; object-fit:cover; object-position:center 58%; filter:brightness(1.06) contrast(1.04) saturate(1.04); transform:scale(1.08); animation:ahzoom 18s var(--e) forwards; }
@keyframes ahzoom{ to{ transform:scale(1); } }
/* asymmetric scrim: dark wedge on the lower-left where the copy sits; car + sky stay luminous on the right */
.ah__bg::after{ content:""; position:absolute; inset:0; background:
   linear-gradient(180deg, rgba(8,7,6,.9) 0%, rgba(8,7,6,.72) 30%, rgba(8,7,6,.46) 54%, rgba(8,7,6,.2) 76%, rgba(8,7,6,.06) 100%),
   linear-gradient(100deg, rgba(8,7,6,.66) 0%, rgba(8,7,6,.26) 44%, rgba(8,7,6,0) 70%); }
.ah__grain{ position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.22; mix-blend-mode:overlay;
  background-image:radial-gradient(rgba(255,255,255,.04) 1px,transparent 1px); background-size:3px 3px; }
.ah__top{ position:absolute; top:clamp(94px,12vh,132px); left:var(--pad); right:var(--pad); z-index:2; display:flex; justify-content:space-between; gap:20px; }
.ah__top .label{ color:var(--bone); text-shadow:0 1px 12px rgba(0,0,0,.6); }
.ah__in{ position:relative; z-index:2; max-width:880px; }
.ah__kick{ margin-bottom:22px; display:inline-block; }
.ah h1{ font-size:clamp(3.2rem,7vw,6.4rem); line-height:.98; letter-spacing:-.025em; text-shadow:0 2px 34px rgba(8,7,6,.5); }
.ah h1 .amp{ color:var(--gold-lite); font-style:italic; }
.ah__lead{ max-width:48ch; margin-top:26px; color:#fff; font-size:clamp(1.04rem,1.3vw,1.22rem); line-height:1.66; text-shadow:0 1px 18px rgba(8,7,6,.62); }
.ah__rule{ display:block; width:66px; height:2px; background:var(--gold); margin-top:30px; transform:scaleX(0); transform-origin:left; transition:transform 1.15s var(--e) .55s; }
body.atelier.loaded .ah__rule{ transform:scaleX(1); }
.ah__cta{ margin-top:clamp(30px,4vh,42px); display:flex; gap:15px; flex-wrap:wrap; align-items:center; }
/* ---------- primary phone-call CTA — restrained, lux ---------- */
.ah__call{ display:inline-flex; align-items:center; gap:15px; padding:16px 34px; border-radius:7px;
  background:linear-gradient(180deg,var(--gold-lite) 0%,var(--gold) 100%); color:#1c1408;
  box-shadow:0 20px 46px -22px rgba(0,0,0,.62);
  transition:transform .55s var(--e), box-shadow .55s var(--e), filter .55s var(--e); }
.ah__call:hover{ transform:translateY(-2px); filter:brightness(1.03); box-shadow:0 28px 56px -22px rgba(200,160,97,.5); }
.ah__call-ic{ flex:none; width:21px; height:21px; opacity:.9; }
.ah__call-tx{ display:flex; flex-direction:column; line-height:1.08; text-align:left; }
.ah__call-tx b{ font-family:var(--sans); font-size:.62rem; font-weight:600; letter-spacing:.26em; text-transform:uppercase; opacity:.68; }
.ah__call-tx i{ font-style:normal; font-family:var(--sans); font-weight:600; font-size:1.18rem; letter-spacing:.015em; margin-top:5px; font-variant-numeric:tabular-nums; }
@media (prefers-reduced-motion:reduce){ .ah__call{ transition:none; } }

/* ============================================================
   MANIFESTO — one large statement
   ============================================================ */
.amf{ }
.amf__head{ display:flex; align-items:baseline; gap:20px; margin-bottom:clamp(40px,7vh,80px); }
.amf__head .hr{ flex:1; }
.amf h2{ font-size:clamp(1.8rem,3.8vw,3.3rem); line-height:1.12; max-width:26ch; letter-spacing:-.015em; }
.amf h2 .dim{ color:var(--bone-dim); }
.amf__sub{ margin-top:clamp(34px,5vh,56px); max-width:46ch; color:var(--bone-dim); font-size:1.02rem; line-height:1.75; }

/* ============================================================
   FLEET — editorial hover-image index
   ============================================================ */
.afleet__head{ display:flex; align-items:baseline; gap:20px; margin-bottom:clamp(30px,5vh,56px); }
.afleet__head .hr{ flex:1; }
.findex{ border-top:1px solid var(--line); }
.frow{ display:grid; grid-template-columns:1fr auto auto; align-items:center; gap:clamp(14px,3vw,46px);
  padding:clamp(22px,3.4vw,40px) 0; border-bottom:1px solid var(--line); position:relative; color:var(--bone);
  transition:padding-left .55s var(--e), color .45s var(--e); }
.frow__no{ font-family:var(--serif); font-style:italic; font-size:.9rem; color:var(--gold); opacity:.7; transition:opacity .4s; }
.frow__name{ font-family:var(--serif); font-size:clamp(1.5rem,4vw,3.1rem); line-height:1; letter-spacing:-.02em; transition:transform .55s var(--e); }
.frow__meta{ font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--bone-dim); text-align:right; }
.frow__price{ font-family:var(--serif); font-size:clamp(1.05rem,1.6vw,1.5rem); color:var(--bone); white-space:nowrap; min-width:5ch; text-align:right; }
.frow__thumb{ display:none; }
.frow__tag{ position:absolute; left:0; top:50%; width:6px; height:6px; border-radius:50%; background:var(--gold); transform:translate(-18px,-50%) scale(0); transition:transform .5s var(--e); }
@media (hover:hover) and (min-width:861px){
  .frow:hover{ padding-left:34px; }
  .frow:hover .frow__name{ color:var(--gold-lite); }
  .frow:hover .frow__no{ opacity:1; }
  .frow:hover .frow__tag{ transform:translate(-18px,-50%) scale(1); }
  .findex.hovering .frow:not(:hover){ color:var(--bone-dim); }
  .findex.hovering .frow:not(:hover) .frow__name{ color:var(--bone-dim); opacity:.4; }
}
.fcursor{ position:fixed; top:0; left:0; z-index:60; width:clamp(220px,22vw,360px); aspect-ratio:4/5; pointer-events:none;
  border-radius:3px; overflow:hidden; opacity:0; transform:translate(-50%,-50%) scale(.92); transition:opacity .45s var(--e),transform .55s var(--e); will-change:transform; }
.fcursor.on{ opacity:1; transform:translate(-50%,-50%) scale(1); }
.fcursor__i{ position:absolute; inset:0; }
.fcursor__i img,.fcursor__i video{ width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .4s var(--e); }
.fcursor__i.show img,.fcursor__i.show video{ opacity:1; }
.fcursor__b{ position:absolute; inset:0; border:1px solid rgba(231,205,146,.4); border-radius:3px; }
.afleet__foot{ margin-top:clamp(40px,6vh,72px); display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; }

/* ============================================================
   FULL-BLEED EXPERIENCE
   ============================================================ */
.aexp{ position:relative; min-height:100svh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; padding:var(--pad); }
.aexp .media{ position:absolute; inset:0; }
.aexp .media__fig{ clip-path:inset(0); }
/* .aexp image filter is defined once in the redesign block below (brightness .55) */
.aexp::after{ content:""; position:absolute; inset:0; background:
  radial-gradient(110% 78% at 50% 50%, rgba(8,7,6,.5) 0%, rgba(8,7,6,.55) 42%, rgba(8,7,6,.84) 100%); z-index:1; }
.aexp__in{ position:relative; z-index:2; max-width:24ch; }
.aexp h2{ font-size:clamp(2rem,5.2vw,4.6rem); line-height:1.04; }
.aexp .label{ margin-bottom:26px; display:inline-block; }

/* ============================================================
   LONG-TERM RENTAL — minimal editorial split
   ============================================================ */
.alt{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(40px,6vw,100px); align-items:center; }
.alt__media{ aspect-ratio:5/6; width:100%; }
.alt h2{ font-size:clamp(1.9rem,4.4vw,3.6rem); line-height:1.05; }
.alt p{ margin-top:24px; max-width:42ch; color:var(--bone-dim); line-height:1.75; }
.alt__cta{ margin-top:38px; }

/* ============================================================
   CONTACT / CLOSING
   ============================================================ */
.acta{ text-align:center; }
.acta h2{ font-size:clamp(3rem,11vw,10rem); line-height:.92; letter-spacing:-.03em; }
.acta__row{ margin-top:clamp(34px,5vh,60px); display:flex; gap:clamp(20px,4vw,60px); justify-content:center; flex-wrap:wrap; }
.acta__row a{ font-size:clamp(1rem,1.4vw,1.3rem); color:var(--bone); border-bottom:1px solid var(--line); padding-bottom:5px; transition:border-color .4s,color .4s; }
.acta__row a:hover{ color:var(--gold-lite); border-color:var(--gold); }

/* ---------- link with wipe underline ---------- */
.xlink{ display:inline-flex; align-items:center; gap:.7em; font-size:.72rem; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--bone); position:relative; padding-bottom:6px; }
.xlink::after{ content:""; position:absolute; left:0; bottom:0; width:100%; height:1px; background:var(--gold); transform:scaleX(0); transform-origin:right; transition:transform .5s var(--e); }
.xlink:hover{ color:var(--gold-lite); } .xlink:hover::after{ transform:scaleX(1); transform-origin:left; }
.xlink svg{ width:16px; height:16px; transition:transform .45s var(--e); } .xlink:hover svg{ transform:translateX(5px); }

/* ============================================================
   FOOTER — minimal
   ============================================================ */
body.atelier .footer{ border-top:1px solid var(--line); background:var(--ink); }
body.atelier .footer__col h5{ color:var(--gold); }

/* Concierge launcher uses the shared gold style from style.css (inviting on dark + light sections). */

/* ============================================================
   CUSTOM CURSOR (desktop, fine pointer)
   ============================================================ */
.cur{ display:none; }
@media (hover:hover) and (pointer:fine) and (min-width:1025px){
  body.atelier.cursor-on,body.atelier.cursor-on a,body.atelier.cursor-on button,body.atelier.cursor-on .frow{ cursor:none; }
  .cur{ display:block; position:fixed; top:0; left:0; z-index:9000; width:9px; height:9px; margin:-4.5px 0 0 -4.5px; border-radius:50%; background:#fff; mix-blend-mode:difference; pointer-events:none; transition:width .3s var(--e),height .3s var(--e),margin .3s var(--e),background .3s,border-color .3s,opacity .3s; }
  body.atelier.cur-grow .cur{ width:52px; height:52px; margin:-26px 0 0 -26px; background:transparent; border:1.4px solid #fff; }
}

/* ============================================================
   PROGRESS line (top)
   ============================================================ */
.aprog{ position:fixed; top:0; left:0; height:2px; width:0; background:linear-gradient(90deg,var(--gold),var(--gold-lite)); z-index:300; }

/* ============================================================
   LOADER
   ============================================================ */
.aload{ position:fixed; inset:0; z-index:5000; background:var(--ink); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:28px; transition:opacity .9s var(--e),visibility .9s var(--e); }
.aload__c{ font-family:var(--serif); font-style:italic; font-size:clamp(2.4rem,7vw,4.5rem); color:var(--bone); }
.aload__c b{ color:var(--gold); font-style:normal; }
.aload__bar{ width:min(260px,52vw); height:1px; background:var(--line); position:relative; overflow:hidden; }
.aload__bar i{ position:absolute; inset:0; transform-origin:left; transform:scaleX(0); background:var(--gold); }
body.atelier.loaded .aload{ opacity:0; visibility:hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:860px){
  .atelier .blk{ padding-block:clamp(54px,9vh,84px); }
  .alt{ grid-template-columns:1fr; gap:28px; }
  .alt__media{ width:100%; max-width:480px; aspect-ratio:4/5; margin-inline:auto; }
  .aexp{ min-height:72svh; }
  /* heading sizes so words pair up (avoid one-word-per-line towers) */
  .amf h2{ font-size:clamp(1.5rem,6vw,2rem); }
  .aexp h2{ font-size:clamp(1.7rem,7.4vw,2.4rem); }
  .alt h2{ font-size:clamp(1.55rem,6.6vw,2.1rem); }
  .acta h2{ font-size:clamp(2.6rem,13vw,4rem); }
  /* fleet = full-width image cards on mobile (no hover on touch) */
  .findex{ border-top:0; }
  .frow{ display:block; padding:0 0 28px; margin-bottom:28px; border-bottom:1px solid var(--line); }
  .frow:last-child{ margin-bottom:0; padding-bottom:0; border-bottom:0; }
  .frow__thumb{ display:block; width:100%; aspect-ratio:16/10; object-fit:cover; border-radius:4px; margin-bottom:15px; }
  .frow__no{ display:inline-block; font-size:.82rem; color:var(--gold); margin-right:10px; vertical-align:middle; }
  .frow__name{ display:inline-block; font-size:clamp(1.4rem,6.2vw,2.1rem); vertical-align:middle; color:var(--bone); }
  .frow__meta{ display:block; margin-top:9px; font-size:.66rem; letter-spacing:.16em; color:var(--bone-dim); text-align:left; }
  .frow__price{ display:block; margin-top:5px; color:var(--gold-lite); font-size:1.05rem; text-align:left; }
  .frow__tag{ display:none; }
  .ah{ align-items:flex-start; padding-top:clamp(116px,17vh,152px); padding-bottom:clamp(40px,6vh,72px); }
  /* smooth top-down scrim on mobile so the copy reads over the photo and blends into the car below */
  .ah__bg::after{ background:
    linear-gradient(180deg, rgba(8,7,6,.92) 4%, rgba(8,7,6,.76) 34%, rgba(8,7,6,.46) 58%, rgba(8,7,6,.2) 80%, rgba(8,7,6,.28) 100%); }
  .ah h1{ font-size:clamp(2.7rem,9.6vw,3.7rem); }
  .ah__lead{ font-size:1.02rem; margin-top:18px; }
  .ah__cta{ flex-direction:column; align-items:stretch; width:100%; gap:12px; }
  .ah__cta .btn{ width:100%; }
  .ah__call{ width:100%; justify-content:center; padding:16px 24px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  .split{ transform:none!important; opacity:1!important; }
  .atelier [data-reveal]{ opacity:1!important; transform:none!important; }
  .media__fig{ clip-path:inset(0)!important; } .media__fig img,.media__fig video{ transform:none!important; }
  .hr{ transform:scaleX(1)!important; }
  .aload{ display:none!important; }
  .ah__bg video,.ah__bg img{ transform:none!important; animation:none!important; }
  .ah__rule{ transform:scaleX(1)!important; transition:none!important; }
  .asvc__card,.agal__i img{ transition:none!important; }
}

/* ============================================================
   DAY / NIGHT RHYTHM  — warm light sections (added in redesign)
   Full-bleed light band; inner .measure caps content width.
   ============================================================ */
.blk--light{ background:var(--cream); color:var(--ink-on-light); }
.blk--light-2{ background:var(--cream-2); color:var(--ink-on-light); }
.blk--light h1,.blk--light h2,.blk--light h3,.blk--light h4,
.blk--light-2 h1,.blk--light-2 h2,.blk--light-2 h3,.blk--light-2 h4{ color:var(--ink-on-light); }
.blk--light p,.blk--light-2 p{ color:var(--ink-dim-light); }
.blk--light .label,.blk--light-2 .label{ color:var(--ink-dim-light); }
.blk--light .label--gold,.blk--light-2 .label--gold,
.blk--light .idx,.blk--light-2 .idx,
.blk--light .amp,.blk--light-2 .amp{ color:var(--gold-deep); }
.blk--light .hr,.blk--light-2 .hr{ background:var(--line-light); }
.blk--light .xlink,.blk--light-2 .xlink{ color:var(--ink-on-light); }
.blk--light .xlink::after,.blk--light-2 .xlink::after{ background:var(--gold-deep); }
.blk--light .xlink:hover,.blk--light-2 .xlink:hover{ color:var(--gold-deep); }
.blk--light ::selection,.blk--light-2 ::selection{ background:var(--gold-deep); color:#fff; }

/* shared section head (kicker row) */
.ahead{ display:flex; align-items:baseline; gap:18px; margin-bottom:clamp(24px,3.4vh,40px); }
.ahead .idx{ font-family:var(--serif); font-style:italic; font-size:.95rem; }
.ahead .hr{ flex:1; height:1px; }

/* ---------- TRUST STRIP (light) ---------- */
.atrust{ padding-block:clamp(48px,7.5vh,92px)!important; }
.atrust__row{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.atrust__i{ display:flex; flex-direction:column; gap:11px; padding:4px clamp(20px,2.6vw,44px); }
.atrust__i + .atrust__i{ border-left:1px solid var(--line-light); }
.atrust__i:first-child{ padding-left:0; }
.atrust__ic{ width:30px; height:30px; color:var(--gold-deep); }
.atrust__ic svg{ width:100%; height:100%; display:block; }
.atrust__t{ font-family:var(--serif); font-size:1.22rem; line-height:1.12; color:var(--ink-on-light); }
.atrust__d{ font-size:.85rem; line-height:1.55; color:var(--ink-dim-light); }

/* ---------- SERVICES (light) ---------- */
.asvc__top{ display:grid; grid-template-columns:1.05fr .95fr; gap:24px clamp(40px,5vw,80px); align-items:end; margin-bottom:clamp(34px,4.6vh,58px); }
.asvc__top h2{ font-size:clamp(1.9rem,4vw,3.1rem); line-height:1.04; letter-spacing:-.015em; max-width:16ch; }
.asvc__intro{ font-size:1.02rem; line-height:1.72; }
.asvc__grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(14px,1.5vw,22px); }
.asvc__card{ background:var(--cream-card); border:1px solid var(--line-light); border-radius:6px; padding:clamp(26px,2.7vw,40px); position:relative; overflow:hidden;
  display:flex; flex-direction:column; align-items:flex-start;
  transition:transform .55s var(--e),box-shadow .55s var(--e),border-color .55s var(--e); }
.asvc__card::before{ content:""; position:absolute; left:0; top:0; width:100%; height:2px; background:linear-gradient(90deg,var(--gold),var(--gold-lite)); transform:scaleX(0); transform-origin:left; transition:transform .55s var(--e); }
.asvc__card:hover{ transform:translateY(-6px); box-shadow:0 34px 56px -38px rgba(26,24,20,.45); border-color:rgba(154,114,51,.45); }
.asvc__card:hover::before{ transform:scaleX(1); }
.asvc__no{ font-family:var(--serif); font-style:italic; color:var(--gold-deep); font-size:.95rem; }
.asvc__ic{ display:block; flex:none; width:40px; height:40px; color:var(--gold-deep); margin:18px 0 18px; }
.asvc__ic svg{ width:40px; height:40px; display:block; }
.asvc__card h3{ font-size:1.45rem; line-height:1.1; color:var(--ink-on-light); }
.asvc__card p{ margin-top:11px; font-size:.95rem; line-height:1.66; color:var(--ink-dim-light); }

/* ---------- FLEET (dark) — heading + intro + note added ---------- */
.afleet__title{ font-size:clamp(1.9rem,4vw,3.2rem); line-height:1.05; letter-spacing:-.015em; max-width:20ch; margin-bottom:16px; }
.afleet__intro{ max-width:62ch; color:var(--bone-body); font-size:1.02rem; line-height:1.7; margin-bottom:clamp(28px,4vh,50px); }
.frow__price .u{ color:var(--bone-dim); font-size:.74em; font-weight:400; }
.afleet__note{ margin-top:24px; font-size:.82rem; color:var(--bone-dim); }

/* ---------- WHY US (light, editorial split) ---------- */
.awhy{ display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(34px,5vw,84px); align-items:center; }
.awhy__media{ aspect-ratio:4/5; width:100%; border-radius:4px; }
.awhy__text h2{ font-size:clamp(1.9rem,4vw,3.3rem); line-height:1.06; letter-spacing:-.015em; margin:14px 0 clamp(22px,3vh,38px); max-width:18ch; }
.awhy__list{ list-style:none; display:grid; }
.awhy__list li{ padding:21px 0; border-top:1px solid var(--line-light); }
.awhy__list li:last-child{ border-bottom:1px solid var(--line-light); }
.awhy__list h3{ font-family:var(--serif); font-size:1.3rem; line-height:1.1; color:var(--ink-on-light); }
.awhy__list p{ margin-top:7px; font-size:.95rem; line-height:1.6; color:var(--ink-dim-light); max-width:50ch; }

/* ---------- EXPERIENCE (dark beat) — lift + supporting line ---------- */
.aexp .media img,.aexp .media video{ filter:brightness(.5) grayscale(.05) contrast(1.04); transform:scale(1.04); }
.aexp__in{ max-width:640px; }
.aexp__sub{ margin-top:22px; margin-inline:auto; max-width:46ch; color:#fff; font-size:1.04rem; line-height:1.72; }

/* ---------- HOW IT WORKS + GALLERY (light) ---------- */
.ahow__head h2{ font-size:clamp(1.9rem,4vw,3.1rem); line-height:1.05; max-width:18ch; }
.ahow__steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(24px,3vw,52px); margin-top:clamp(30px,4.4vh,54px); }
.ahow__step{ padding-top:22px; border-top:2px solid var(--gold-deep); }
.ahow__no{ font-family:var(--serif); font-style:italic; font-size:2.5rem; line-height:1; color:var(--gold-deep); }
.ahow__step h3{ font-size:1.34rem; margin-top:12px; color:var(--ink-on-light); }
.ahow__step p{ margin-top:9px; font-size:.95rem; line-height:1.62; color:var(--ink-dim-light); }
.agal{ margin-top:clamp(46px,7vh,92px); }
.agal__head{ display:flex; justify-content:space-between; align-items:baseline; gap:20px; margin-bottom:20px; flex-wrap:wrap; }
.agal__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(10px,1.1vw,15px); }
.agal__i{ display:block; aspect-ratio:4/3; overflow:hidden; border-radius:4px; background:#0c0b0a; }
.agal__i img{ width:100%; height:100%; object-fit:cover; transition:transform .9s var(--e); }
.agal__i:hover img{ transform:scale(1.06); }

/* ---------- FINAL CTA (dark) — sentence sizing ---------- */
.acta h2{ font-size:clamp(2.1rem,5.6vw,4.6rem); line-height:1.06; letter-spacing:-.02em; max-width:20ch; margin-inline:auto; }
.acta__lead{ margin-top:22px; margin-inline:auto; max-width:50ch; color:var(--bone-body); font-size:1.05rem; line-height:1.7; }
.acta__cta{ margin-top:clamp(26px,3.6vh,40px); }

/* ---------- RESPONSIVE (new components) ---------- */
@media (max-width:860px){
  .atrust__row{ grid-template-columns:repeat(2,1fr); gap:30px 0; }
  .atrust__i{ padding:4px clamp(16px,4vw,26px); }
  .atrust__i:nth-child(odd){ padding-left:0; }
  .atrust__i:nth-child(even){ border-left:0; }
  .asvc__top{ grid-template-columns:1fr; gap:14px; }
  .asvc__top h2,.afleet__title,.awhy__text h2,.ahow__head h2{ max-width:none; }
  .asvc__grid{ grid-template-columns:1fr; }
  .awhy{ grid-template-columns:1fr; gap:30px; }
  .awhy__media{ max-width:440px; margin-inline:auto; order:-1; }
  .ahow__steps{ grid-template-columns:1fr; gap:0; }
  .ahow__step{ padding:22px 0; border-top:1px solid var(--line-light); }
  .ahow__step:first-child{ border-top:2px solid var(--gold-deep); }
  .agal__grid{ grid-template-columns:repeat(2,1fr); }
  /* comfortable tap targets on touch */
  .acta__row a{ padding:10px 4px; }
  .footer__col a{ display:inline-block; padding-block:6px; }
}
