/* HOUSE RULES: no rounded corners, no shadows, no glass/blur.
   Everything below is square-edged and flat by design. */
/* =========================================================================
   SUB. — Home (v2). Self-contained: this file styles index.html only.
   Other pages keep assets/css/site.css untouched.
   ========================================================================= */

@font-face{
  font-family:'Switzer';
  src:url('../fonts/Switzer-Variable.woff2') format('woff2-variations');
  font-weight:100 900; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Fraunces';
  src:url('../fonts/Fraunces-Variable.woff2') format('woff2-variations');
  font-weight:100 900; font-style:normal; font-display:swap;
}

:root{
  --ink:#16181C;
  --ink-2:#4B505A;
  --ink-3:#8C919C;
  --paper:#FFFFFF;

  --cream:#FDF6DA;          /* hero / light sections */
  --cream-2:#FCF0BE;        /* stripe yellow */
  --peri:#AFC6EA;           /* signature band */
  --peri-deep:#8FA8D4;
  --peri-ink:#A3BCE4;       /* headings on cream */
  --peri-700:#46578A;
  --lav:#E7E4F3;            /* footer */
  --lav-2:#D5CFEC;

  --sans:'Switzer','Noto Sans Thai','Kanit',system-ui,-apple-system,'Segoe UI',sans-serif;
  --display:'Fraunces','Noto Sans Thai','Kanit',Georgia,serif;

  --wrap:1240px;
  --gutter:clamp(1.15rem,4vw,2.5rem);
  --r:14px;

  /* scallop unit — one arch is --sc wide and --sc/2 tall */
  --sc:32px;
  --sc-h:16px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--cream);color:var(--ink);
  font-family:var(--sans);font-size:15px;line-height:1.6;
  font-variation-settings:'wght' 400;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;                 /* never overflow-x:hidden — it kills sticky */
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
input{font:inherit}
.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}
.skip{position:absolute;left:-999px;top:0;z-index:99;background:var(--ink);color:#fff;padding:.6rem 1rem}
.skip:focus{left:.5rem;top:.5rem}
:focus-visible{outline:2px solid var(--peri-700);outline-offset:3px;}

.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gutter)}

/* ---------- logo (masked PNG → inherits currentColor) ------------------- */
.logo{display:inline-flex;position:relative;line-height:0;vertical-align:middle}
.logo__mark,.logo__dot{
  display:block;
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-size:contain;mask-size:contain;
  -webkit-mask-position:center;mask-position:center;
}
.logo__mark{
  width:var(--logo-w,72px);aspect-ratio:673/266;background:currentColor;
  -webkit-mask-image:url('../img/logo-mark.png');mask-image:url('../img/logo-mark.png');
}
.logo__dot{
  position:absolute;inset:0;width:var(--logo-w,72px);aspect-ratio:673/266;
  background:var(--dot,#D8B02C);
  -webkit-mask-image:url('../img/logo-dot.png');mask-image:url('../img/logo-dot.png');
}

/* ---------- scallop trims ----------------------------------------------- */
/* Radii are explicit — a bare radial-gradient() sizes to farthest-corner and
   the whole tile comes out opaque (i.e. a solid bar, not a scallop). */

/* valance: solid bar + domes hanging below it (sits under the nav) */
.trim{
  position:relative;height:calc(var(--sc-h) + 8px);background:var(--trim,var(--peri));
  -webkit-mask-image:radial-gradient(circle var(--sc-h) at 50% 0,#000 98%,#0000 100%),linear-gradient(#000,#000);
          mask-image:radial-gradient(circle var(--sc-h) at 50% 0,#000 98%,#0000 100%),linear-gradient(#000,#000);
  -webkit-mask-size:var(--sc) var(--sc-h),100% 8px;
          mask-size:var(--sc) var(--sc-h),100% 8px;
  -webkit-mask-repeat:repeat-x,no-repeat;
          mask-repeat:repeat-x,no-repeat;
  -webkit-mask-position:0 8px,0 0;
          mask-position:0 8px,0 0;
}
.trim--dots::after{
  content:'';position:absolute;left:0;right:0;top:100%;height:13px;pointer-events:none;
  background:radial-gradient(circle 2.5px at 50% 6px,var(--trim,var(--peri)) 98%,#0000 100%)
             0 0/var(--sc) 13px repeat-x;
}
/* band edge bulging UP into the section above */
.scallop-up{
  height:var(--sc-h);background:var(--trim,var(--peri));margin-bottom:-1px;
  -webkit-mask-image:radial-gradient(circle var(--sc-h) at 50% 100%,#000 98%,#0000 100%);
          mask-image:radial-gradient(circle var(--sc-h) at 50% 100%,#000 98%,#0000 100%);
  -webkit-mask-size:var(--sc) var(--sc-h);mask-size:var(--sc) var(--sc-h);
  -webkit-mask-repeat:repeat-x;mask-repeat:repeat-x;
}
/* band edge bulging DOWN into the section below */
.scallop-down{
  height:var(--sc-h);background:var(--trim,var(--peri));margin-top:-1px;
  -webkit-mask-image:radial-gradient(circle var(--sc-h) at 50% 0,#000 98%,#0000 100%);
          mask-image:radial-gradient(circle var(--sc-h) at 50% 0,#000 98%,#0000 100%);
  -webkit-mask-size:var(--sc) var(--sc-h);mask-size:var(--sc) var(--sc-h);
  -webkit-mask-repeat:repeat-x;mask-repeat:repeat-x;
}

/* ---------- buttons ----------------------------------------------------- */
.pill{
  display:inline-flex;align-items:center;justify-content:center;gap:.4rem;padding:.5rem 1.15rem;font-size:.8125rem;
  font-variation-settings:'wght' 600;letter-spacing:.01em;white-space:nowrap;
  transition:transform .18s ease,background-color .18s ease,color .18s ease;
}
.pill:hover{transform:translateY(-1px)}
.pill--ink{background:var(--ink);color:#fff}
.pill--ink:hover{background:#000}
.pill--light{background:#fff;color:var(--ink);}
.pill--peri{background:#566FA8;color:#fff}
.pill--peri:hover{background:#46598C}
.pill--sm{padding:.36rem .85rem;font-size:.75rem}
.pill--pink{background:#E8859E;color:#fff}
.pill--pink:hover{background:#DE7290}
.pill--red{background:#D42A32;color:#fff}
.pill--red:hover{background:#BE1F27}

/* ---------- search overlay ---------------------------------------------- */
.searchbox{position:fixed;inset:0;z-index:90;background:rgb(22 24 28 / .34);
  display:grid;place-items:start center;padding:clamp(3rem,10vh,7rem) var(--gutter) 2rem}
.searchbox[hidden]{display:none}
.searchbox__panel{width:min(560px,100%);background:var(--cream);
  overflow:hidden;}
.searchbox__bar{display:flex;align-items:center;gap:.7rem;padding:.9rem 1.1rem;
  border-bottom:1px solid rgb(22 24 28 / .1)}
.searchbox__bar>svg{width:18px;height:18px;flex:0 0 auto;color:var(--ink-3)}
.searchbox__bar input{flex:1 1 auto;min-width:0;border:0;background:none;font-size:.9375rem;color:var(--ink)}
.searchbox__bar input:focus{outline:none}
.searchbox__bar button{width:30px;height:30px;display:grid;place-items:center;color:var(--ink-2);flex:0 0 auto}
.searchbox__bar button svg{width:16px;height:16px}
.searchbox__results{list-style:none;margin:0;padding:.4rem;max-height:min(52vh,420px);overflow:auto}
.searchbox__results li[hidden]{display:none}
.searchbox__results a{display:flex;align-items:baseline;justify-content:space-between;gap:1rem;
  padding:.6rem .75rem;font-size:.875rem}
.searchbox__results a:hover,.searchbox__results a:focus-visible{background:rgb(175 198 234 / .35)}
.searchbox__results em{font-style:normal;font-size:.6875rem;color:var(--ink-3);flex:0 0 auto}
.searchbox__empty{padding:1.4rem .9rem;text-align:center;font-size:.8125rem;color:var(--ink-2)}
.searchbox__empty[hidden]{display:none}

/* ---------- nav --------------------------------------------------------- */
.hnav{position:sticky;top:0;z-index:60;background:var(--cream)}
.hnav__inner{
  max-width:var(--wrap);margin-inline:auto;padding:.7rem var(--gutter);
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:1rem;
}
.hnav__l{display:flex;align-items:center;gap:1.25rem;min-width:0}
.hnav__r{display:flex;align-items:center;gap:.9rem;justify-content:flex-end}
.hnav a.hnav__lnk{font-size:.75rem;font-variation-settings:'wght' 500;color:var(--ink-2)}
.hnav a.hnav__lnk:hover{color:var(--ink)}
.hnav__logo{color:var(--peri-deep);--logo-w:64px;--dot:#D8B02C}
.hnav__ic{display:grid;place-items:center;width:30px;height:30px;color:var(--ink)}
.hnav__ic svg{width:17px;height:17px}
.burger{display:grid;gap:4px;width:26px;padding:4px 0}
.burger span{display:block;height:1.6px;background:var(--ink);transition:transform .25s,opacity .2s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(5.6px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-5.6px) rotate(-45deg)}

.drawer{
  position:fixed;inset:0 0 0 auto;width:min(88vw,340px);background:var(--cream);z-index:80;
  transform:translateX(100%);transition:transform .32s cubic-bezier(.4,0,.2,1);
  padding:5rem 1.75rem 2rem;display:flex;flex-direction:column;gap:.3rem;
}
.drawer[data-open="true"]{transform:none}
.drawer a{padding:.7rem 0;font-size:1.05rem;font-variation-settings:'wght' 600;border-bottom:1px solid rgb(22 24 28 / .08)}
.drawer__x{position:absolute;top:1.1rem;right:1.25rem;width:34px;height:34px;display:grid;place-items:center}
.drawer__x svg{width:18px;height:18px}
.scrim{position:fixed;inset:0;background:rgb(22 24 28 / .32);z-index:70;opacity:0;pointer-events:none;transition:opacity .3s}
.scrim[data-open="true"]{opacity:1;pointer-events:auto}

/* ---------- hero -------------------------------------------------------- */
.hero{background:var(--cream);padding-bottom:clamp(1.5rem,4vw,3rem)}
.hero__grid{
  max-width:var(--wrap);margin-inline:auto;padding:clamp(1.25rem,3vw,2.25rem) var(--gutter) 0;
  display:grid;grid-template-columns:1fr minmax(280px,440px) 1fr;
  align-items:start;gap:clamp(1rem,3vw,2.5rem);
}
.hero__eyebrow{
  margin:0;color:var(--peri-ink);font-size:clamp(.95rem,1.5vw,1.25rem);
  font-variation-settings:'wght' 500;letter-spacing:.01em;
}
.hero__title{
  margin:.25rem 0 0;color:var(--peri-ink);
  font-size:clamp(2.4rem,5.6vw,4.6rem);line-height:.95;
  font-variation-settings:'wght' 800;letter-spacing:-.02em;text-transform:uppercase;
}
.hero__copy{
  margin:.35rem 0 0;font-size:clamp(.62rem,.78vw,.75rem);line-height:1.75;color:var(--ink-2);
  max-width:34ch;justify-self:end;
}
.hero__copy b{font-variation-settings:'wght' 700;color:var(--ink)}

.hanger{position:relative;width:100%;container-type:inline-size;
  filter:) )}
.hanger img{
  width:100%;height:auto;display:block;
  /* the shot's own paper is a hair off the hero cream, so feather the frame
     away instead of leaving a visible rectangle floating on the section */
  -webkit-mask-image:linear-gradient(to right,#0000 0,#000 13%,#000 87%,#0000 100%),
                     linear-gradient(to bottom,#0000 0,#000 10%,#000 90%,#0000 100%);
          mask-image:linear-gradient(to right,#0000 0,#000 13%,#000 87%,#0000 100%),
                     linear-gradient(to bottom,#0000 0,#000 10%,#000 90%,#0000 100%);
  -webkit-mask-composite:source-in;mask-composite:intersect;
}
.hanger__logo{
  position:absolute;left:50%;top:62%;transform:translate(-50%,-50%);
  color:#C6D3EA;--logo-w:clamp(58px,25cqw,116px);--dot:#E4D9A8;
}

/* ---------- section heads ----------------------------------------------- */
.shead{padding:clamp(1.75rem,4vw,3rem) 0 clamp(1rem,2.4vw,1.6rem)}
.shead__t{
  margin:0;font-size:clamp(1.5rem,3.1vw,2.5rem);line-height:1.05;
  font-variation-settings:'wght' 800;color:var(--peri-ink);
}
.shead__t--caps{text-transform:uppercase;letter-spacing:.06em}
.shead__t--white{color:#fff}
.shead__s{margin:.45rem 0 0;font-size:.8125rem;color:var(--ink-2);font-variation-settings:'wght' 500}
.shead--center{text-align:center}

/* ---------- best seller (periwinkle band) ------------------------------- */
.best{background:var(--peri);--trim:var(--peri);color:#fff}
.best .shead__s{color:rgb(255 255 255 / .82)}
.best__rail{position:relative;padding-bottom:clamp(2rem,5vw,3.5rem)}
.best__track{
  display:grid;grid-auto-flow:column;grid-auto-columns:minmax(0,1fr);
  gap:clamp(1rem,2.4vw,2rem);
  overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;
  padding-inline:clamp(2.5rem,5vw,4rem);
}
.best__track::-webkit-scrollbar{display:none}
.bcard{scroll-snap-align:center;color:#fff;text-align:center}
.bcard__media{
  position:relative;display:block;overflow:hidden;
  aspect-ratio:4/5;background:rgb(255 255 255 / .18);
}
.bcard__media img{width:100%;height:100%;object-fit:cover;object-position:50% 14%;transition:transform .5s cubic-bezier(.2,.7,.3,1)}
.bcard:hover .bcard__media img{transform:scale(1.035)}
.bcard__chips{position:absolute;top:.7rem;left:50%;transform:translateX(-50%);display:flex;gap:.4rem}
.bcard__chips i{
  width:30px;height:30px;display:block;
  background:var(--sw,#fff) center/cover no-repeat;
}
.bcard__price-xl{
  position:absolute;left:1rem;bottom:1rem;font-size:clamp(1.4rem,3vw,2.2rem);
  font-variation-settings:'wght' 800;color:#fff;text-shadow:0 2px 14px rgb(0 0 0 / .3);
  letter-spacing:-.01em;
}
.bcard__name{display:block;margin:.75rem 0 0;font-size:.9375rem;font-variation-settings:'wght' 600}
.bcard__cost{display:block;margin:.15rem 0 .7rem;font-size:.8125rem;color:rgb(255 255 255 / .85)}
.best__arw{
  position:absolute;top:calc(50% - 2rem);transform:translateY(-50%);z-index:3;
  width:38px;height:38px;display:grid;place-items:center;color:#fff;
  transition:background-color .2s,opacity .2s;
}
.best__arw:hover{background:rgb(255 255 255 / .22)}
.best__arw[disabled]{opacity:.3;cursor:default}
.best__arw svg{width:26px;height:26px}
.best__arw--p{left:0}
.best__arw--n{right:0}

/* ---------- campaign banner --------------------------------------------- */
.promo{position:relative;display:block;overflow:hidden}
.promo img{width:100%;height:clamp(360px,44vw,620px);object-fit:cover;object-position:50% 30%}
.promo::after{content:'';position:absolute;inset:auto 0 0;height:56%;pointer-events:none;
  background:linear-gradient(to top,rgb(60 44 78 / .42),rgb(60 44 78 / 0))}
.promo__in{
  z-index:2;position:absolute;inset:auto 0 clamp(2rem,7vw,4.5rem);text-align:center;color:#fff;
  display:grid;justify-items:center;gap:.5rem;padding-inline:var(--gutter);
  text-shadow:0 2px 18px rgb(0 0 0 / .28);
}
.promo__eyebrow{display:block;font-size:.75rem;letter-spacing:.22em;text-transform:uppercase;font-variation-settings:'wght' 600;margin:0}
.promo__t{
  display:block;margin:0;font-family:var(--display);font-style:italic;
  font-size:clamp(1.9rem,4.6vw,3.4rem);line-height:1.05;
  font-variation-settings:'wght' 500,'SOFT' 40,'WONK' 1,'opsz' 144;
}
.promo__in .pill{margin-top:.55rem;text-shadow:none}

/* ---------- find your collection ---------------------------------------- */
.collect{background:var(--cream);padding-bottom:clamp(2rem,5vw,3.5rem)}
.cgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(.8rem,1.8vw,1.5rem)}
.ccard{display:block}
.ccard__media{display:block;position:relative;overflow:hidden;aspect-ratio:4/5;background:#EDE7DA}
.ccard__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s cubic-bezier(.2,.7,.3,1)}
.ccard:hover .ccard__media img{transform:scale(1.04)}
.ccard__cta{position:absolute;left:50%;bottom:1rem;transform:translateX(-50%)}
.ccard__cap{
  display:block;margin:.6rem 0 0;text-align:center;font-family:var(--display);font-style:italic;
  font-size:.8125rem;color:var(--ink-2);
  font-variation-settings:'wght' 400,'SOFT' 40,'opsz' 20;
}

/* ---------- pick your mood ---------------------------------------------- */
.mood{background:var(--cream)}
.mood__band{background:var(--peri);--trim:var(--peri);padding-block:clamp(1rem,2.4vw,1.75rem)}
.mgrid{display:grid;grid-template-columns:repeat(5,1fr);gap:clamp(.4rem,1vw,.85rem)}
.mcard{display:block;color:#fff;text-align:center}
.mcard__media{display:block;overflow:hidden;aspect-ratio:2/5;background:rgb(255 255 255 / .2)}
.mcard__media img{width:100%;height:100%;object-fit:cover;object-position:50% 10%;transition:transform .5s cubic-bezier(.2,.7,.3,1)}
.mcard:hover .mcard__media img{transform:scale(1.05)}
.mcard__n{display:block;margin-top:.45rem;font-size:.6875rem;color:rgb(255 255 255 / .9);font-variation-settings:'wght' 500}
.mood__foot{text-align:center;padding-block:clamp(1.4rem,3.4vw,2.4rem)}

/* ---------- detail / editorial ------------------------------------------
   The model is a cut-out PNG standing free on the cream, not a photo in a
   card, and the sparkles sit behind everything — as in the client mockup. */
.detail{position:relative;background:var(--cream);padding-block:clamp(2rem,5vw,4rem);overflow:clip}
.detail__in{
  position:relative;z-index:1;
  display:grid;grid-template-columns:minmax(0,.32fr) minmax(0,1fr);
  gap:clamp(.6rem,1.6vw,1.5rem);align-items:end;
}
.detail__model{margin:0;align-self:end;justify-self:center;width:100%}
.detail__model img{display:block;margin-inline:auto;width:auto;height:auto;
  max-width:100%;max-height:clamp(360px,40vw,580px)}
.dgrid{
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;grid-template-rows:1fr 1fr;
  gap:clamp(.45rem,1.1vw,.9rem);align-self:center;
}
.dtile{position:relative;overflow:hidden;background:#EDE7DA;aspect-ratio:1;margin:0}
.dtile img{width:100%;height:100%;object-fit:cover}
.dtile--tall{grid-row:span 2;aspect-ratio:auto}
.dtile__ic{
  position:absolute;top:.5rem;left:.5rem;width:27px;height:27px;
  background:rgb(233 227 250 / .94);display:grid;place-items:center;color:#6A5AA8;
}
.dtile__ic svg{width:14px;height:14px}
.star{position:absolute;z-index:0;color:var(--peri);pointer-events:none}
.star--a{right:-3%;top:4%;width:clamp(110px,17vw,260px)}
.star--b{left:-6%;bottom:2%;width:clamp(150px,26vw,400px)}
.star svg{width:100%;height:auto;display:block}

/* ---------- SUB WOMEN --------------------------------------------------- */
.women{
  background:url('../img/stripes.svg') 0 0/92px 260px repeat, var(--cream-2);
  padding-block:clamp(2rem,5vw,3.5rem);text-align:center;
}
.women__t{
  margin:0 0 clamp(1rem,2.6vw,1.8rem);font-size:clamp(1.5rem,3.1vw,2.5rem);
  font-variation-settings:'wght' 800;letter-spacing:.06em;text-transform:uppercase;color:var(--ink);
}
.women__frame{
  position:relative;display:block;max-width:min(940px,100%);margin-inline:auto;
  aspect-ratio:16/9;overflow:hidden;background:#000;
}
.women__frame img{width:100%;height:100%;object-fit:cover;object-position:50% 8%;opacity:.82;transition:opacity .3s,transform .6s}
.women__frame:hover img{opacity:.7;transform:scale(1.02)}
.women__play{
  position:absolute;inset:0;display:grid;place-items:center;color:#fff;
}
.women__play span{
  width:clamp(48px,6vw,64px);aspect-ratio:1;
  border:2px solid rgb(255 255 255 / .9);display:grid;place-items:center;transition:transform .25s,background-color .25s;
}
.women__frame:hover .women__play span{transform:scale(1.06);background:rgb(255 255 255 / .16)}
.women__play svg{width:20px;height:20px;margin-left:3px}
.women__note{margin:.9rem 0 0;font-size:.75rem;color:var(--ink-2)}

/* ---------- footer ------------------------------------------------------ */
.foot{background:var(--lav);--trim:var(--lav);color:var(--ink);padding-bottom:0}
.foot__mark{text-align:center;padding-top:clamp(1.75rem,4vw,2.75rem)}
.foot__mark .logo{color:var(--peri-deep);--logo-w:86px;--dot:#D8B02C}
.foot__tag{margin:.5rem 0 0;text-align:center;font-size:.75rem;color:var(--ink-2)}

.news{
  margin:clamp(1.25rem,3vw,2rem) auto 0;max-width:840px;background:var(--lav-2);padding:.7rem 1rem;display:flex;align-items:center;gap:1rem;flex-wrap:wrap;
}
.news__ic{
  width:38px;height:38px;background:#fff;display:grid;place-items:center;
  color:var(--peri-700);flex:0 0 auto;
}
.news__ic svg{width:19px;height:19px}
.news__txt{flex:1 1 220px;min-width:0}
.news__txt b{display:block;font-size:.8125rem;font-variation-settings:'wght' 700}
.news__txt span{display:block;font-size:.6875rem;color:var(--ink-2);line-height:1.5}
.news__form{display:flex;gap:.5rem;flex:0 1 320px}
.news__form input{
  flex:1 1 auto;min-width:0;border:0;padding:.55rem 1rem;
  background:#fff;font-size:.8125rem;color:var(--ink);
}
.news__form input::placeholder{color:var(--ink-3)}
.news__msg{flex:1 0 100%;margin:.15rem 0 0;font-size:.6875rem;color:var(--peri-700);text-align:right}
.news__msg:empty{display:none}

.acc{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0 clamp(1rem,3vw,2.5rem);
  margin-top:clamp(1.5rem,3.5vw,2.5rem);
}
.acc__i{border-top:1px solid rgb(22 24 28 / .12)}
.acc__b{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:.5rem;
  padding:.9rem 0;font-size:.8125rem;font-variation-settings:'wght' 600;text-align:left;
}
.acc__b svg{width:14px;height:14px;flex:0 0 auto;transition:transform .25s}
.acc__b[aria-expanded="true"] svg{transform:rotate(180deg)}
.acc__p{display:grid;grid-template-rows:0fr;transition:grid-template-rows .3s ease}
.acc__b[aria-expanded="true"]+.acc__p{grid-template-rows:1fr}
.acc__p>div{overflow:hidden}
.acc__p ul{list-style:none;margin:0;padding:0 0 1rem}
.acc__p li{padding:.22rem 0;font-size:.75rem;color:var(--ink-2)}
.acc__p a:hover{color:var(--ink);text-decoration:underline}
.acc__p .soon{color:var(--ink-3)}

.follow{text-align:center;padding-top:clamp(1.5rem,3.5vw,2.25rem)}
.follow p{margin:0 0 .7rem;font-size:.75rem;font-variation-settings:'wght' 600}
.socials{display:flex;gap:.55rem;justify-content:center}
.socials a{
  width:34px;height:34px;background:#8FA8D4;color:#fff;
  display:grid;place-items:center;transition:transform .2s,background-color .2s;
}
.socials a:hover{transform:translateY(-2px);background:#6E86BF}
.socials svg{width:17px;height:17px}

.foot__bar{
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  padding:clamp(1.25rem,3vw,2rem) 0 clamp(1rem,2.4vw,1.5rem);
  font-size:.6875rem;color:var(--ink-2);
}
.foot__edge{background:var(--lav)}

/* ---------- motion ------------------------------------------------------ */
[data-reveal]{opacity:0;transform:translateY(14px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.3,1)}
[data-reveal].in{opacity:1;transform:none}

/* ---------- responsive --------------------------------------------------- */
@media (max-width:1080px){
  .mgrid{grid-template-columns:repeat(3,1fr);row-gap:1rem}
  .mcard__media{aspect-ratio:3/5.4}
}
@media (max-width:900px){
  :root{--sc:24px;--sc-h:12px}
  .hero__grid{grid-template-columns:1fr;justify-items:center;text-align:center;gap:1.25rem}
  .hero__copy{justify-self:center;max-width:52ch;font-size:.8125rem;order:3}
  .hanger{max-width:320px;order:2}
  .hero__head{order:1}
  .cgrid{grid-template-columns:repeat(2,1fr);gap:1rem}
  .detail__in{grid-template-columns:1fr;align-items:center}
  .detail__model{max-width:230px}
  .acc{grid-template-columns:repeat(2,1fr)}
  .best__track{grid-auto-columns:72%;padding-inline:var(--gutter)}
  .best__arw{display:none}
}
@media (max-width:620px){
  .hnav__l .hnav__lnk{display:none}
  .mgrid{grid-template-columns:repeat(2,1fr)}
  .mcard__media{aspect-ratio:3/4.4}
  .dgrid{grid-template-columns:1fr 1fr}
  .dgrid{grid-template-columns:repeat(3,1fr);grid-template-rows:auto}
  .dtile--tall{grid-row:span 1;aspect-ratio:1}
  .news{justify-content:center;text-align:center}
  .news__txt{flex-basis:100%}
  .news__form{flex-basis:100%}
  .news__msg{text-align:center}
  .acc{grid-template-columns:1fr}
  .foot__bar{justify-content:center;text-align:center}
  .best__track{grid-auto-columns:84%}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  [data-reveal]{opacity:1;transform:none}
}

/* ---- version switcher (v1 / v2 / v3 home designs) ---------------------- */
.hnav__vers{display:inline-flex;align-items:center;gap:.5rem;margin-right:.2rem}
.hnav__vers a{font-size:.6875rem;font-variation-settings:'wght' 600;letter-spacing:.08em;
  text-transform:uppercase;color:var(--ink-2);opacity:.7;transition:opacity .2s}
.hnav__vers a:hover{opacity:1;text-decoration:underline;text-underline-offset:3px}
.hnav__vers [aria-current]{opacity:1;color:var(--ink);text-decoration:underline;text-underline-offset:3px}
@media (max-width:560px){.hnav__vers{display:none}}

/* ---- films: real clips replace the old poster + dead play button -------
   Square edges, no shadow, no blur — house rules. preload="none" so a
   36MB-of-video page never downloads anything until someone asks. */
.women__s{margin:0 0 clamp(1rem,2.4vw,1.6rem);font-size:.8125rem;color:var(--ink-2)}
.films{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(.6rem,1.6vw,1.25rem);max-width:min(760px,100%);margin-inline:auto}
.film{margin:0}
.film video{width:100%;height:auto;display:block;background:#000;aspect-ratio:608/1080}
.film figcaption{margin-top:.55rem;font-size:.6875rem;color:var(--ink-2);text-align:left}
@media (max-width:560px){ .films{grid-template-columns:1fr} }
