/* =============================================================
   MDS MOTOR GROUP - showroom stylesheet
   Umbrella: graphite + warm champagne. Marque rooms override --mq.
   ============================================================= */

:root{
  --ink:#0a0b0d; --ink-2:#0f1115; --ink-3:#15181d; --ink-4:#1c2027;
  --line:rgba(255,255,255,.09); --line-2:rgba(255,255,255,.16);
  --text:#eef1f5; --muted:#9aa2ad; --faint:#6b727c;
  /* MDS brand: from the logo (red swoosh + silver car on black) */
  --mds:#d3272d; --mds-2:#ec5459; --mds-deep:#1c0708;
  --silver:#ced3da; --price:#f1f4f8;
  --mq:#d3272d; --mq-deep:#1c0708; --mq-mist:#15181d; --mq-on:#0a0b0d;
  --ok:#4bbf7b; --sold:#97a1ac; --reserved:#e2a33c;
  --r:16px; --r-lg:24px; --r-sm:10px;
  --ctrl:56px;
  --shadow:0 24px 60px -24px rgba(0,0,0,.7);
  --ease:cubic-bezier(.22,.61,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
  --wrap:1200px;
  --serif:'Newsreader',Georgia,serif;
  --display:'Sora',system-ui,sans-serif;
  --body:'Hanken Grotesk',system-ui,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
[hidden]{display:none !important}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
body{
  font-family:var(--body); background:var(--ink); color:var(--text);
  line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button{font-family:inherit; cursor:pointer; border:none; background:none; color:inherit}
h1,h2,h3,h4{font-family:var(--display); font-weight:700; line-height:1.05; letter-spacing:-.02em}
::selection{background:var(--mds); color:#0a0b0d}
:focus-visible{outline:2px solid var(--mds-2); outline-offset:3px; border-radius:6px}

.wrap{width:min(100% - clamp(36px, 6vw, 88px), var(--wrap)); margin-inline:auto}
section[id]{scroll-margin-top:82px}
.eyebrow{font-family:var(--display); font-size:.74rem; font-weight:600; letter-spacing:.02em; color:var(--mds-2); text-transform:none}
.sr-only{position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0)}
.section{padding:clamp(64px,9vw,120px) 0}
.lede{color:var(--muted); font-size:clamp(1rem,1.6vw,1.15rem); max-width:56ch}

/* ---------------------------- buttons ---------------------------- */
.btn{display:inline-flex; align-items:center; gap:.55rem; padding:0 1.5rem; height:var(--ctrl);
  border-radius:999px; font-weight:600; font-family:var(--display); font-size:.95rem;
  transition:transform .3s var(--ease), background .3s, color .3s, border-color .3s; white-space:nowrap}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--mds); color:#0a0b0d}
.btn-primary:hover{background:var(--mds-2)}
.btn-ghost{border:1px solid var(--line-2); color:var(--text)}
.btn-ghost:hover{border-color:var(--mds); color:var(--mds-2)}
.btn-mq{background:var(--mq); color:var(--mq-on)}
.btn-mq:hover{filter:brightness(1.1)}
.btn svg{width:18px;height:18px}

/* ---------------------------- header ----------------------------- */
.site-header{position:fixed; inset:0 0 auto 0; z-index:60; padding:14px 0;
  transition:transform .45s var(--ease), background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom:1px solid transparent}
.site-header.scrolled{background:rgba(10,11,13,.82); backdrop-filter:blur(14px); border-color:var(--line)}
.site-header.hide{transform:translateY(-100%)}
.nav{display:flex; align-items:center; justify-content:space-between; gap:1rem}
.brand{display:flex; align-items:center; gap:.7rem; font-family:var(--display); font-weight:700; letter-spacing:-.01em}
.brand-logo{height:clamp(46px,5.2vw,58px); width:auto; display:block}
.site-footer .brand-logo{height:clamp(56px,6.5vw,70px)}
.brand .mark{width:42px; height:42px; display:grid; place-items:center; border:1px solid var(--line-2);
  border-radius:10px; color:var(--mds); font-size:.9rem; letter-spacing:.06em; background:#0a0e18; overflow:hidden; flex:none}
.mark img{width:100%; height:100%; object-fit:cover; border-radius:inherit; display:block}
.brand b{font-size:1.02rem}
.brand span{display:block; font-size:.62rem; color:var(--muted); font-weight:500; letter-spacing:.14em; text-transform:uppercase; margin-top:1px}
.nav-links{display:flex; align-items:center; gap:1.6rem}
.nav-links a{font-size:.92rem; color:var(--muted); position:relative; transition:color .25s}
.nav-links a::after{content:''; position:absolute; left:0; bottom:-6px; height:2px; width:100%; background:var(--mds); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease)}
.nav-links a:hover{color:var(--text)} .nav-links a:hover::after{transform:scaleX(1)}
.nav-cta{display:flex; align-items:center; gap:.6rem}
.hamburger{display:none; width:46px; height:46px; border:1px solid var(--line-2); border-radius:10px; place-items:center}
.hamburger span{display:block; width:20px; height:2px; background:var(--text); position:relative; transition:.3s}
.hamburger span::before,.hamburger span::after{content:''; position:absolute; left:0; width:20px; height:2px; background:var(--text); transition:.3s}
.hamburger span::before{top:-6px} .hamburger span::after{top:6px}
.hamburger.open span{background:transparent}
.hamburger.open span::before{top:0; transform:rotate(45deg)}
.hamburger.open span::after{top:0; transform:rotate(-45deg)}

/* --------------------------- hero -------------------------------- */
.hero{position:relative; min-height:100svh; display:flex; align-items:center; overflow:hidden;
  padding-bottom:clamp(48px,6vw,80px); padding-top:130px}
.hero-bg{position:absolute; inset:0; z-index:0; pointer-events:none}
.hero-bg::before{content:''; position:absolute; inset:0; transition:background .8s var(--ease);
  background:radial-gradient(90% 70% at 78% 12%, color-mix(in srgb, var(--feat, var(--mds)) 22%, transparent), transparent 55%),
             radial-gradient(70% 60% at 8% 90%, color-mix(in srgb, var(--feat, var(--mds)) 11%, transparent), transparent 60%),
             linear-gradient(180deg,#0a0b0d 0%, #0c0e12 55%, #0a0b0d 100%)}
.hero-bg::after{content:''; position:absolute; inset:0; opacity:.5;
  background:repeating-linear-gradient(115deg, transparent 0 90px, rgba(255,255,255,.014) 90px 91px)}
/* cinematic marque backplate: rendered on pure black, screened over the
   gradient so the black is mathematically invisible and only the lit badge
   survives. The car emerges OUT of the background rather than sitting on it. */
.hero-plate{position:absolute; inset:0; z-index:1; pointer-events:none;
  background-image:var(--feat-img); background-size:cover; background-position:center left;
  background-repeat:no-repeat;
  mix-blend-mode:screen; opacity:0; transition:opacity 1.2s var(--ease);
  /* The featured card owns the right side, so fade the plate out underneath it
     and let the metal read THROUGH the headline on the left instead. */
  -webkit-mask-image:linear-gradient(90deg, #000 0 52%, rgba(0,0,0,.45) 68%, transparent 84%);
          mask-image:linear-gradient(90deg, #000 0 52%, rgba(0,0,0,.45) 68%, transparent 84%)}
.hero-plate.is-in{opacity:.5}
.hero-inner{position:relative; z-index:2}
.hero-grid{display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(30px,5vw,70px); align-items:center}
.hero h1{font-size:clamp(2.5rem,6vw,5rem); line-height:1.02; max-width:15ch; padding-bottom:.08em}
.hero h1 em{font-style:normal; color:var(--mds-2)}
/* floating featured car */
.hero-feature{position:relative; border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line);
  background:var(--ink-2); box-shadow:var(--shadow); isolation:isolate}
.hero-feature{border-color:color-mix(in srgb, var(--mq) 34%, var(--line))}
.hero-feature::before{content:''; position:absolute; inset:0 0 auto 0; height:3px; z-index:3; background:linear-gradient(90deg,var(--mq),transparent)}
.hero-feature .hf-media{position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--ink-3)}
.hero-feature .hf-media img{width:100%;height:100%;object-fit:cover; transform:scale(1.04); animation:heroPan 20s var(--ease-out) forwards}
.hero-feature .hf-tag{position:absolute; top:14px; left:14px; z-index:2; display:flex; align-items:center; gap:.4rem;
  padding:.34rem .7rem; border-radius:999px; background:rgba(10,11,13,.62); backdrop-filter:blur(6px); border:1px solid var(--line); font-size:.72rem; font-family:var(--display)}
.hero-feature .hf-tag .em{width:24px;height:16px;color:var(--mq)} .hero-feature .hf-tag .em svg{width:100%;height:100%} .hero-feature .hf-tag .em .mask-em{width:100%;height:100%}
.hero-feature .hf-body{padding:18px 20px 20px}
.hero-feature .hf-body .lbl{font-size:.7rem; color:var(--mq); font-family:var(--display); letter-spacing:.08em; text-transform:uppercase; filter:brightness(1.25)}
.hero-feature .hf-body h3{font-size:1.3rem; margin:.2rem 0 .5rem}
.hero-feature .hf-body .hf-meta{display:flex; gap:1rem; flex-wrap:wrap; font-size:.82rem; color:var(--muted); margin-bottom:1rem}
.hero-feature .hf-price{display:flex; align-items:baseline; justify-content:space-between; gap:.5rem}
.hero-feature .hf-price b{font-family:var(--display); font-size:1.5rem; color:var(--price)}
.hero-feature .hf-open{position:absolute; inset:0; z-index:4}
@keyframes heroPan{to{transform:scale(1)}}
/* Telford location lockup: a UK numberplate nod instead of a live-dot pill */
.loc-lockup{display:inline-flex; align-items:center; gap:.75rem; margin-bottom:1.6rem; flex-wrap:wrap}
.plate{display:inline-flex; align-items:stretch; height:32px; border-radius:5px; overflow:hidden;
  border:1px solid rgba(0,0,0,.4); box-shadow:0 3px 10px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.25);
  font-family:var(--display); font-weight:700}
.plate-gb{background:linear-gradient(#0b3d91,#0a2f73); color:#fff; display:flex; align-items:center; justify-content:center;
  padding:0 7px; font-size:.62rem; letter-spacing:.06em; border-right:1px solid rgba(0,0,0,.3)}
.plate-reg{background:linear-gradient(#ffd400,#f4c200); color:#0a0a0a; display:flex; align-items:center;
  padding:0 11px; font-size:1.02rem; letter-spacing:.08em}
.loc-txt{font-family:var(--display); font-size:.92rem; color:var(--muted)}
.loc-txt span{color:var(--mds-2)}
.hero .kick{display:inline-flex; align-items:center; gap:.6rem; padding:.4rem .9rem; border:1px solid var(--line-2);
  border-radius:999px; font-family:var(--display); font-size:.78rem; color:var(--mds-2); margin-bottom:1.4rem; background:rgba(255,255,255,.03)}
.hero .kick .dot{width:7px; height:7px; border-radius:50%; background:var(--ok); box-shadow:0 0 0 4px rgba(75,191,123,.18)}
.hero p.lede{margin-top:1.4rem}
.hero-actions{display:flex; flex-wrap:wrap; gap:.8rem; margin-top:2rem}
.hero-stats{display:flex; gap:2.4rem; margin-top:3rem; flex-wrap:wrap}
.hero-stats .s b{font-family:var(--display); font-size:clamp(1.5rem,3vw,2.1rem); display:block; letter-spacing:-.03em}
.hero-stats .s span{font-size:.82rem; color:var(--muted)}
.reveal{opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease-out), transform .8s var(--ease-out)}
.reveal.in{opacity:1; transform:none}
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}.reveal.d4{transition-delay:.32s}

/* ---------------------- brand navigator -------------------------- */
.rooms{background:linear-gradient(180deg,var(--ink),var(--ink-2))}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:1.5rem; margin-bottom:2.6rem; flex-wrap:wrap}
.section-head h2{font-size:clamp(1.8rem,4vw,3rem)}
.rooms-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(158px,1fr)); gap:14px}
.room{position:relative; aspect-ratio:1/1.15; border-radius:var(--r); overflow:hidden; border:1px solid var(--line);
  background:var(--room-mist,#15181d); display:flex; flex-direction:column; justify-content:space-between; padding:16px;
  transition:transform .5s var(--ease), border-color .4s; isolation:isolate}
.room::before{content:''; position:absolute; inset:0; z-index:-1; opacity:.9;
  background:radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--room) 26%, transparent), transparent 60%),
            linear-gradient(180deg, var(--room-deep), var(--room-mist))}
.room:hover{transform:translateY(-6px); border-color:color-mix(in srgb,var(--room) 55%, transparent)}
.room:hover .emblem{transform:scale(1.06)}
.room .emblem{flex:1; display:grid; place-items:center; min-height:96px; margin:14px 0 4px; color:#ffffff;
  transition:transform .5s var(--ease)}
.room .emblem svg{height:clamp(54px,6.6vw,74px); width:auto; max-width:78%}
.room .emblem .mask-em{width:clamp(74px,8.6vw,96px); height:clamp(74px,8.6vw,96px)}
.mask-em{display:block; background:currentColor}
.em .mask-em{width:100%; height:100%}
.room .rname{font-family:var(--display); font-weight:700; font-size:1.08rem}
.room .rcount{font-size:.74rem; color:var(--muted)}
.room .go{position:absolute; inset:0; z-index:2}
.room[data-empty="1"]{opacity:.5}
.room .badge-live{position:absolute; top:14px; right:14px; font-size:.62rem; color:var(--room); font-weight:700; font-family:var(--display); letter-spacing:.04em; z-index:3}

/* ------------------------- collection ---------------------------- */
.filters{display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:2rem; align-items:center}
.chip{padding:.55rem 1.05rem; border-radius:999px; border:1px solid var(--line-2); font-size:.86rem;
  font-family:var(--display); font-weight:500; color:var(--muted); transition:.3s var(--ease); display:inline-flex; align-items:center; gap:.45rem}
.chip:hover{color:var(--text); border-color:var(--text)}
.chip.active{background:var(--mq); color:var(--mq-on); border-color:var(--mq)}
.chip .cdot{width:9px;height:9px;border-radius:50%; background:currentColor; opacity:.8}

.grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.view-all-row{text-align:center; margin-top:2.8rem}
.coll-head{padding-top:clamp(110px,12vw,150px); padding-bottom:clamp(20px,3vw,36px)}
.coll-head h1{font-size:clamp(2.2rem,5vw,3.6rem); line-height:1.02}
.coll-head .lede{margin-top:.8rem}
.card{position:relative; border-radius:var(--r-lg); overflow:hidden; background:var(--ink-2);
  border:1px solid var(--line); isolation:isolate; transition:transform .5s var(--ease), border-color .4s, box-shadow .5s}
.card::before{content:''; position:absolute; inset:0 0 auto 0; height:3px; z-index:3;
  background:linear-gradient(90deg,var(--mq),transparent); opacity:.9}
.card:hover{transform:translateY(-6px); border-color:color-mix(in srgb,var(--mq) 45%, var(--line)); box-shadow:var(--shadow)}
.card-media{position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--ink-3)}
.card-media img{width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease-out)}
.card:hover .card-media img{transform:scale(1.06)}
.card-media::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%, rgba(10,11,13,.65))}
.card-marque{position:absolute; top:12px; left:12px; z-index:2; display:flex; align-items:center; gap:.4rem;
  padding:.32rem .6rem .32rem .4rem; border-radius:999px; background:rgba(10,11,13,.6); backdrop-filter:blur(6px); border:1px solid var(--line)}
.card-marque .em{width:26px; height:18px; color:var(--mq)} .card-marque .em svg{width:100%;height:100%}
.card-marque b{font-size:.72rem; font-family:var(--display)}
.card-status{position:absolute; top:12px; right:12px; z-index:2; font-family:var(--display); font-weight:700;
  font-size:.66rem; letter-spacing:.05em; padding:.3rem .6rem; border-radius:999px; text-transform:uppercase}
.st-available{background:rgba(75,191,123,.16); color:#8fe6b4; border:1px solid rgba(75,191,123,.4)}
.st-sold{background:rgba(151,161,172,.14); color:#c6cdd5; border:1px solid rgba(151,161,172,.34)}
.st-reserved{background:rgba(226,163,60,.16); color:#f0cd8f; border:1px solid rgba(226,163,60,.4)}
.card-body{padding:18px 18px 20px}
.card-body .cy{font-size:.78rem; color:var(--muted); font-family:var(--display)}
.card-body h3{font-size:1.16rem; margin:.15rem 0 .5rem}
.card-price{display:flex; align-items:baseline; gap:.4rem; margin-bottom:.9rem}
.card-price b{font-family:var(--display); font-size:1.35rem; color:var(--price); letter-spacing:-.02em}
.card-price .sold{color:var(--sold); font-size:1.05rem}
.card-price small{color:var(--faint); font-size:.72rem}
.card-meta{display:flex; flex-wrap:wrap; gap:.35rem 1rem; font-size:.8rem; color:var(--muted); border-top:1px solid var(--line); padding-top:.85rem}
.card-meta span{display:inline-flex; align-items:center; gap:.35rem}
.card-meta svg{width:14px;height:14px; color:var(--mq); opacity:.9}
.card-open{position:absolute; inset:0; z-index:4}
.empty{grid-column:1/-1; text-align:center; padding:60px 20px; color:var(--muted); border:1px dashed var(--line-2); border-radius:var(--r-lg)}

/* ------------- marque room banner (themed strip) ----------------- */
.room-banner{position:relative; border-radius:var(--r-lg); overflow:hidden; padding:34px; margin-bottom:2.2rem;
  border:1px solid color-mix(in srgb,var(--mq) 35%, var(--line)); isolation:isolate;
  background:linear-gradient(120deg,var(--mq-deep),var(--mq-mist))}
.room-banner[hidden]{display:none}
.room-banner .rb-motif{position:absolute; inset:0; z-index:-1; opacity:.5}
.room-banner .rb-top{display:flex; align-items:center; gap:1rem; margin-bottom:.7rem}
.room-banner .rb-em{width:64px; height:42px; color:var(--mq)} .room-banner .rb-em svg{width:100%;height:100%}
.room-banner h3{font-size:clamp(1.6rem,3.5vw,2.4rem)}
.room-banner .rb-tag{color:var(--mds-2); font-family:var(--display); font-weight:600; margin-top:.1rem}
.room-banner p{color:var(--muted); max-width:60ch; margin-top:.6rem}
.room-banner .rb-back{margin-top:1.2rem}

/* motifs (decorative, transform/opacity friendly) */
[data-motif="mstripe"] .rb-motif{background:repeating-linear-gradient(115deg,transparent 0 40px,rgba(28,105,212,.14) 40px 52px,rgba(120,60,160,.12) 52px 64px,rgba(224,40,40,.12) 64px 76px,transparent 76px 116px)}
[data-motif="rings"] .rb-motif{background:radial-gradient(circle at 20% 60%, color-mix(in srgb,var(--mq) 20%, transparent) 0 2px, transparent 3px) 0 0/70px 70px}
[data-motif="sheen"] .rb-motif{background:linear-gradient(100deg,transparent 30%, color-mix(in srgb,var(--mq) 22%, transparent) 50%, transparent 70%)}
[data-motif="topo"] .rb-motif{background:repeating-radial-gradient(circle at 70% 40%, transparent 0 22px, color-mix(in srgb,var(--mq) 16%, transparent) 22px 24px)}
[data-motif="diamond"] .rb-motif{background:conic-gradient(from 45deg at 80% 50%, color-mix(in srgb,var(--mq) 18%, transparent), transparent 25%)}
[data-motif="blitz"] .rb-motif{background:linear-gradient(135deg, color-mix(in srgb,var(--mq) 18%, transparent), transparent 45%)}
[data-motif="default"] .rb-motif{background:radial-gradient(120% 100% at 90% 0%, color-mix(in srgb,var(--mq) 16%, transparent), transparent 60%)}

/* --------------------------- detail modal ------------------------ */
.modal{position:fixed; inset:0; z-index:120; display:none}
.modal.open{display:block}
.modal-scrim{position:absolute; inset:0; background:rgba(6,7,9,.82); backdrop-filter:blur(6px); opacity:0; transition:opacity .4s}
.modal.open .modal-scrim{opacity:1}
.modal-sheet{position:absolute; inset:0; overflow-y:auto; overscroll-behavior:contain}
.detail{width:min(100% - 32px,1040px); margin:6vh auto 8vh; background:var(--ink-2); border:1px solid var(--line);
  border-radius:var(--r-lg); overflow:hidden; transform:translateY(24px); opacity:0; transition:.5s var(--ease); isolation:isolate}
.modal.open .detail{transform:none; opacity:1}
.detail::before{content:''; position:absolute; inset:0 0 auto 0; height:4px; background:var(--mq); z-index:2}
.detail-close{position:absolute; top:14px; right:14px; z-index:6; width:44px; height:44px; border-radius:50%;
  background:rgba(10,11,13,.62); border:1px solid var(--line-2); display:grid; place-items:center; backdrop-filter:blur(8px); transition:.25s}
.detail-close:hover{background:rgba(10,11,13,.9); border-color:var(--mq)}
.detail-hero{position:relative}
.detail-gallery{display:grid; gap:6px; grid-template-columns:1fr}
.detail-gallery .main{position:relative; height:clamp(320px,56vh,600px); background:#08090b; display:flex; align-items:center; justify-content:center; overflow:hidden}
.detail-gallery .main img{max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain}
.gal-nav{position:absolute; top:50%; transform:translateY(-50%); z-index:4; width:46px; height:46px; border-radius:50%;
  background:rgba(10,11,13,.55); border:1px solid var(--line-2); color:#fff; display:grid; place-items:center;
  font-size:1.7rem; line-height:1; padding-bottom:3px; backdrop-filter:blur(6px); cursor:pointer; transition:.25s}
.gal-nav:hover{background:rgba(10,11,13,.85); border-color:var(--mq)}
.gal-prev{left:12px} .gal-next{right:12px}
.detail-thumbs{display:flex; gap:6px; padding:6px; overflow-x:auto}
.detail-thumbs img{width:96px; height:66px; object-fit:cover; border-radius:8px; border:1px solid var(--line); cursor:pointer; opacity:.6; transition:.3s}
.detail-thumbs img.active,.detail-thumbs img:hover{opacity:1; border-color:var(--mq)}
.detail-info{padding:clamp(22px,4vw,40px)}
.detail-info .em{width:72px; height:44px; color:var(--mq); margin-bottom:.6rem} .detail-info .em svg{width:100%;height:100%}
.detail-info h2{font-size:clamp(1.6rem,4vw,2.6rem)}
.detail-info .d-head{color:var(--mds-2); font-family:var(--display); font-weight:600; margin:.5rem 0 1.2rem}
.detail-price{display:flex; align-items:baseline; gap:.6rem; margin-bottom:1.4rem}
.detail-price b{font-family:var(--display); font-size:2rem; color:var(--price)}
.spec-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:.7rem 1.4rem; padding:1.3rem 0; border-block:1px solid var(--line); margin-bottom:1.4rem}
.spec-grid .sg{display:flex; flex-direction:column}
.spec-grid .sg span{font-size:.72rem; color:var(--faint); font-family:var(--display); letter-spacing:.04em}
.spec-grid .sg b{font-size:.98rem; font-weight:600}
.detail-status{position:static; display:inline-flex; align-items:center; font-family:var(--display); font-weight:700;
  font-size:.68rem; letter-spacing:.05em; text-transform:uppercase; padding:.32rem .7rem; border-radius:999px; margin-bottom:.4rem}
.detail-list{list-style:none; display:grid; gap:.55rem; margin:1rem 0 1.5rem}
.detail-list li{display:flex; gap:.6rem; align-items:flex-start; font-size:.94rem; color:var(--muted)}
.detail-list li svg{width:16px;height:16px; color:var(--mq); flex:none; margin-top:3px}
.detail-desc{color:var(--muted); margin-bottom:1.6rem}
.detail-cta{display:flex; flex-wrap:wrap; gap:.7rem}

/* --------------------------- trust ------------------------------- */
.trust{background:var(--ink-2); border-block:1px solid var(--line)}
.trust-grid{display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(28px,5vw,64px); align-items:center}
.trust-points{display:grid; gap:1.1rem; margin-top:1.6rem}
.tp{display:flex; gap:1rem; align-items:flex-start}
.tp .ic{width:44px; height:44px; border-radius:12px; border:1px solid var(--line-2); display:grid; place-items:center; color:var(--mds); flex:none; background:var(--ink-3)}
.tp .ic svg{width:20px;height:20px}
.tp b{font-family:var(--display); display:block; margin-bottom:.15rem}
.tp p{color:var(--muted); font-size:.92rem}
.trust-visual{position:relative; border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line); aspect-ratio:4/5}
.trust-visual img{width:100%;height:100%;object-fit:cover}
.trust-badge{position:absolute; left:18px; bottom:18px; right:18px; padding:16px; border-radius:var(--r);
  background:rgba(10,11,13,.7); backdrop-filter:blur(10px); border:1px solid var(--line-2)}
.trust-badge b{font-family:var(--display)}
.trust-badge p{font-size:.84rem; color:var(--muted)}

/* --------------------------- reviews ----------------------------- */
.reviews-head{display:flex; align-items:center; gap:1.4rem; flex-wrap:wrap; margin-bottom:2.4rem}
.rating-badge{display:flex; align-items:center; gap:.9rem; padding:1rem 1.3rem; border:1px solid var(--line); border-radius:var(--r); background:var(--ink-2)}
.rating-badge ; line-height:1}
.stars{display:inline-flex; gap:2px; color:var(--mds)}
.stars svg{width:16px;height:16px}
.rating-badge small{color:var(--muted); font-size:.78rem}
/* horizontal auto-flowing reviews scroller */
.reviews-scroller{overflow:hidden; padding:6px 0 10px; position:relative;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent)}
.review-track{display:flex; gap:18px; width:max-content; padding-inline:20px;
  animation:reviewMarquee var(--marquee-secs,40s) linear infinite}
.reviews-scroller:hover .review-track{animation-play-state:paused}
@keyframes reviewMarquee{from{transform:translateX(0)} to{transform:translateX(-50%)}}
.review{flex:0 0 auto; width:360px; max-width:82vw; padding:24px; border:1px solid var(--line);
  border-radius:var(--r); background:var(--ink-2); display:flex; flex-direction:column; margin:0}
.review .r-top{display:flex; align-items:center; justify-content:space-between; margin-bottom:.9rem}
.review blockquote{font-size:.96rem; margin:0 0 1.2rem; color:var(--text); line-height:1.55; flex:1}
.review .who{display:flex; align-items:center; gap:.65rem; font-size:.82rem; color:var(--muted); border-top:1px solid var(--line); padding-top:.9rem}
.review .who b{color:var(--text); font-family:var(--display); font-size:.88rem}
.review .who .av{width:36px;height:36px;border-radius:50%; background:var(--ink-4); display:grid; place-items:center; color:var(--mds); font-family:var(--display); font-weight:700; font-size:.95rem; flex:none}
.g-logo{width:18px;height:18px; vertical-align:middle}
@media (prefers-reduced-motion:reduce){
  .reviews-scroller{overflow-x:auto; scroll-snap-type:x proximity}
  .review-track{animation:none; width:max-content}
  .review{scroll-snap-align:start}
}

/* --------------------------- location ---------------------------- */
.loc-grid{display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,4vw,48px); align-items:stretch}
.loc-card{background:var(--ink-2); border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(24px,3.5vw,40px)}
.loc-row{display:flex; gap:.9rem; padding:1rem 0; border-bottom:1px solid var(--line); align-items:flex-start}
.loc-row:last-of-type{border-bottom:none}
.loc-row .ic{width:40px;height:40px;border-radius:10px; border:1px solid var(--line-2); display:grid; place-items:center; color:var(--mds); flex:none}
.loc-row .ic svg{width:18px;height:18px}
.loc-row b{font-family:var(--display); font-size:.78rem; color:var(--faint); letter-spacing:.04em; display:block}
.loc-row a,.loc-row span{font-size:1rem}
.map{border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line); min-height:340px}
.map iframe{width:100%; height:100%; min-height:340px; border:0; filter:grayscale(.3) contrast(1.05) brightness(.9)}

/* --------------------------- footer ------------------------------ */
.site-footer{background:var(--ink-2); border-top:1px solid var(--line); padding:64px 0 34px}
.foot-top{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:2rem; padding-bottom:2.4rem; border-bottom:1px solid var(--line)}
.foot-top .brand{margin-bottom:1rem}
.site-footer p{color:var(--muted); font-size:.9rem}
.foot-col h4{font-family:var(--display); font-size:.82rem; letter-spacing:.06em; color:var(--faint); text-transform:uppercase; margin-bottom:1rem}
.foot-col a{display:block; color:var(--muted); font-size:.92rem; padding:.28rem 0; transition:color .25s}
.foot-col a:hover{color:var(--mds-2)}
.foot-bottom{display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; padding-top:1.6rem; color:var(--faint); font-size:.82rem}
.foot-bottom a{color:var(--mds-2)}
.site-footer .elev8 a{color:var(--mds-2); font-weight:600}

/* --------------------------- responsive -------------------------- */
@media (max-width:1024px){
  .rooms-grid{grid-template-columns:repeat(3,1fr)}
  .grid{grid-template-columns:repeat(2,1fr)}
  .review-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr}
  .loc-grid{grid-template-columns:1fr}
  .foot-top{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .nav-links,.nav-cta .btn-ghost{display:none}
  .hamburger{display:grid}
  .nav-drawer{position:fixed; inset:0 0 0 auto; width:min(84vw,340px); z-index:70; background:var(--ink-2);
    border-left:1px solid var(--line); transform:translateX(100%); transition:transform .45s var(--ease);
    display:flex; flex-direction:column; padding:90px 28px 28px; gap:.4rem}
  .nav-drawer.open{transform:none}
  .nav-drawer a{padding:1rem 0; border-bottom:1px solid var(--line); font-family:var(--display); font-size:1.05rem}
  .nav-drawer .btn{margin-top:1.2rem; justify-content:center}
  .scrim{position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:65; opacity:0; pointer-events:none; transition:opacity .4s}
  .scrim.open{opacity:1; pointer-events:auto}
  .grid{grid-template-columns:1fr}
  .rooms-grid{grid-template-columns:repeat(2,1fr)}
  .spec-grid{grid-template-columns:1fr 1fr}
  .foot-top{grid-template-columns:1fr}
  .hero-stats{gap:1.6rem}
  .hero-grid{grid-template-columns:1fr}
  .hero{padding-top:120px; align-items:flex-start}
  .hero-feature{max-width:440px}
  /* Stacked layout: nothing covers the plate horizontally, so keep it up behind
     the big headline (which can carry it) and fade it out above the body copy. */
  .hero-plate{background-position:32% 2%; background-size:190% auto;
    -webkit-mask-image:linear-gradient(180deg, #000 0 22%, rgba(0,0,0,.3) 30%, transparent 40%);
            mask-image:linear-gradient(180deg, #000 0 22%, rgba(0,0,0,.3) 30%, transparent 40%)}
  .hero-plate.is-in{opacity:.32}
  .brand b{white-space:nowrap; font-size:.95rem}
  .brand>span:last-child>span{display:none}
  .nav-cta{gap:.4rem}
}
@media (max-width:430px){
  .nav-cta .btn-primary{display:none}
  .brand>span:last-child{display:none}
}
@media (max-width:390px){
  .wrap{width:min(100% - 28px, var(--wrap))}
  .hero{padding-top:104px}
  .rooms-grid{grid-template-columns:repeat(2,1fr); gap:10px}
  .hero-stats{gap:1.2rem}
  .btn{padding:0 1.2rem}
}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important}
  .hero-bg img{animation:none; transform:none}
  .reveal{opacity:1; transform:none}
}

/* desktop nav drawer hidden by default */
.nav-drawer{display:none}
@media (max-width:760px){.nav-drawer{display:flex}}
