/* =========================================================
   6AM
   Black and white. One grotesque. No accent colour.
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root{
  --black:#000;
  --ink:#111;
  --text:#333;
  --text-2:#5c5c5c;
  --text-3:#767676;

  --line:#e6e6e6;
  --line-2:#d4d4d4;

  --bg:#fff;
  --bg-2:#f4f4f4;

  --font:"Archivo","Helvetica Neue",Helvetica,Arial,sans-serif;

  --fs-xs:.6875rem;
  --fs-sm:.8125rem;
  --fs-base:1rem;
  --fs-h2:clamp(1.05rem,1.7vw,1.375rem);
  --fs-h1:clamp(1.9rem,4.6vw,4.25rem);
  --fs-banner:clamp(1.6rem,3.4vw,2.75rem);

  --gutter:clamp(1.25rem,4vw,4rem);
  --maxw:1600px;
  --head-h:64px;

  --ease:cubic-bezier(.19,1,.22,1);
}

/* ---------- 2. Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  caret-color:var(--ink);
  scrollbar-color:#c9c9c9 var(--bg);
  scrollbar-width:thin;
}
::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background:var(--bg); }
::-webkit-scrollbar-thumb{ background:#c9c9c9; }
::-webkit-scrollbar-thumb:hover{ background:#a5a5a5; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  font-size:var(--fs-base);
  font-weight:400;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{ display:block; max-width:100%; }
h1,h2,h3,p,ul,figure{ margin:0; }
ul{ padding:0; list-style:none; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
input{ font:inherit; color:inherit; }
::selection{ background:var(--black); color:#fff; }
:focus-visible{ outline:1px solid var(--ink); outline-offset:2px; }
a,button{ text-underline-offset:.3em; }

.sr{
  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:1rem; top:-4rem; z-index:300;
  background:var(--ink); color:#fff; padding:.7rem 1.1rem;
  font-size:var(--fs-xs); letter-spacing:.16em; text-transform:uppercase;
  transition:top .25s var(--ease);
}
.skip:focus{ top:1rem; }

/* ---------- 3. Type ---------- */
.sec-title{
  font-size:var(--fs-h2);
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--ink);
}

.link{
  display:inline-block;
  font-size:var(--fs-xs);
  font-weight:500;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--ink);
  border-bottom:1px solid currentColor;
  padding-bottom:.34rem;
  transition:opacity .3s var(--ease);
}
.link:hover{ opacity:.5; }
.link--light{ color:#fff; }

/* ---------- 4. Header ---------- */
.header{
  position:sticky; top:0; z-index:100;
  background:var(--bg);
  border-bottom:1px solid var(--line);
}
.header__bar{
  position:relative;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center;
  height:var(--head-h);
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding-inline:var(--gutter);
}

.nav{ display:flex; gap:clamp(.9rem,2.1vw,2.1rem); justify-self:start; }
.nav a{
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink);
}
.nav a:hover{ text-decoration:underline; text-decoration-thickness:1px; }

.logo{
  justify-self:center;
  font-size:clamp(1.05rem,1.5vw,1.3rem);
  font-weight:600; letter-spacing:.38em; text-indent:.38em;
  text-transform:uppercase; color:var(--ink);
}

.utils{ display:flex; gap:clamp(.9rem,1.9vw,1.8rem); justify-self:end; }
.util{
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink);
}
.util:hover{ text-decoration:underline; text-decoration-thickness:1px; }

.burger{
  display:none; flex-direction:column; gap:5px;
  width:26px; padding:.5rem 0; justify-self:start;
}
.burger span{ display:block; width:22px; height:1px; background:var(--ink); }

.searchbar{
  border-top:1px solid var(--line);
  background:var(--bg);
}
.searchbar__form{
  display:flex; align-items:center; gap:1rem;
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding:clamp(.9rem,2vw,1.4rem) var(--gutter);
}
.searchbar__form input{
  flex:1; background:none; border:0; outline:none;
  font-size:clamp(.95rem,1.6vw,1.15rem); letter-spacing:.04em; color:var(--ink);
  padding:.3rem 0;
}
.searchbar__form input::placeholder{ color:var(--text-3); }
.searchbar__x{
  display:grid; place-items:center; width:34px; height:34px; color:var(--ink);
  transition:opacity .3s var(--ease);
}
.searchbar__x:hover{ opacity:.5; }
.searchbar__x svg{ width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.2; stroke-linecap:round; }

/* ---------- 5. Hero carousel ----------
   Three slides, crossfading. Each slide carries its own caption so the markup
   still reads correctly with JS off: the first slide ships with .is-active and
   the other two sit at opacity 0.

   Slide 1 is the cream campaign shot, so it keeps dark type. Slides 2 and 3 are
   photographic and carry .hero__slide--dark, which lays a scrim and switches the
   type to white. The controls live outside the slides, so JS puts .is-dark on
   the hero itself to carry that switch up to them.                        */
.hero{
  position:relative;
  height:max(620px, calc(100vh - var(--head-h)));
  height:max(620px, calc(100svh - var(--head-h)));
  overflow:hidden;
  background:#eae2d9;
}

.hero__slides{ position:absolute; inset:0; }

.hero__slide{
  position:absolute; inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity 1.15s var(--ease);
}
.hero__slide.is-active{ opacity:1; pointer-events:auto; }

.hero__slide--dark::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.12) 52%, rgba(0,0,0,.3) 100%);
}

/* <picture> is only a wrapper, so let the img sit in the slide's own layout */
.hero picture{ display:contents; }
.hero__img,
.hero__plate{
  display:block;
  width:100%; height:100%;
  object-fit:cover;
  /* the pinstripe is top-anchored so the model's head is never cut */
  object-position:50% 0%;
  /* Chrome paints the alt text inside the box until the frame arrives. This is
     a full-bleed campaign shot with its title right beside it, so that flash is
     pure noise. Transparent keeps the alt in the a11y tree, out of the layout. */
  color:transparent;
}
.hero__slide:not(:first-child) .hero__img{ object-position:50% 50%; }

/* The film opens on a title card, and the word in the source clip is misspelled.
   .hero__plate is Mosky's corrected card, laid over the clip while that title is
   on screen and then handed back to the footage.
   It shares the geometry rule above on purpose: it must crop and scale exactly
   like the video underneath it, at every viewport, or the two would drift apart.
   It is a positioned element, so it paints above the static <video>; it comes
   before the slide's ::after scrim, so the scrim darkens it by the same amount
   it darkens the clip. That keeps the hand-off invisible. */
.hero__plate{
  position:absolute; inset:0;
  pointer-events:none;
  opacity:1;
}
/* Only the fade-out is animated, and it is deliberately short. The film cuts
   hard from its card to the room, so a long dissolve here would visibly rewrite
   that edit. Clearing the class is instant, so the card is already on screen the
   moment its slide comes back round. */
.hero__plate.is-gone{
  opacity:0;
  transition:opacity .18s linear;
}

.hero__caption{
  position:absolute; left:var(--gutter); bottom:clamp(4.4rem,7.5vw,6.4rem);
  z-index:2;
  /* the model sits between 33% and 63% of the source width, so the caption is
     capped short of that band and can never land on the trousers */
  max-width:min(36rem,36vw);
}
.hero__caption > *{
  opacity:0; transform:translateY(16px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
.hero__slide.is-active .hero__caption > *{ opacity:1; transform:none; }
.hero__slide.is-active .hero__caption > *:nth-child(1){ transition-delay:.16s; }
.hero__slide.is-active .hero__caption > *:nth-child(2){ transition-delay:.28s; }
.hero__slide.is-active .hero__caption > *:nth-child(3){ transition-delay:.42s; }

.hero__eyebrow{
  margin-bottom:1rem;
  font-size:var(--fs-xs); font-weight:500;
  letter-spacing:.2em; text-transform:uppercase;
  color:rgba(0,0,0,.5);
  transition:color .6s var(--ease);
}
.hero__title{
  margin-bottom:1.5rem;
  font-size:var(--fs-h1);
  font-weight:500;
  line-height:1.02;
  letter-spacing:.005em;
  text-transform:uppercase;
  color:var(--ink);
  transition:color .6s var(--ease);
}
.hero__slide--dark .hero__eyebrow{ color:rgba(255,255,255,.68); }
.hero__slide--dark .hero__title{ color:#fff; }

/* --- controls --- */
.hero__ui{
  position:absolute; left:var(--gutter); right:var(--gutter);
  bottom:clamp(1.5rem,3.4vw,2.6rem);
  z-index:3;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.hero__dots{ display:flex; gap:1.15rem; }
.hero__dot{
  padding-bottom:.35rem;
  border-bottom:1px solid transparent;
  font-size:var(--fs-xs); font-weight:500;
  letter-spacing:.14em;
  color:rgba(0,0,0,.42);
  transition:color .45s var(--ease), border-color .45s var(--ease);
}
.hero__dot:hover{ color:var(--ink); }
.hero__dot.is-active{ color:var(--ink); border-bottom-color:var(--ink); }

.hero__toggle{
  display:grid; place-items:center;
  width:38px; height:38px;
  border:1px solid rgba(0,0,0,.26); border-radius:999px;
  color:var(--ink);
  transition:border-color .45s var(--ease), color .45s var(--ease);
}
.hero__toggle:hover{ border-color:var(--ink); }
.hero__icon{
  width:14px; height:14px;
  fill:none; stroke:currentColor; stroke-width:1.4; stroke-linecap:round;
}
.hero__icon--play{ fill:currentColor; stroke:none; display:none; }
.hero__toggle.is-paused .hero__icon--pause{ display:none; }
.hero__toggle.is-paused .hero__icon--play{ display:block; }

.hero__track{
  position:absolute; left:0; right:0; bottom:0; height:2px; z-index:3;
  background:rgba(0,0,0,.1);
  transition:background .6s var(--ease);
}
.hero__track span{
  display:block; height:100%; width:100%;
  background:var(--ink);
  transform:scaleX(0); transform-origin:0 50%;
  transition:background .6s var(--ease);
}

/* light controls while a dark slide is up */
.hero.is-dark .hero__dot{ color:rgba(255,255,255,.5); }
.hero.is-dark .hero__dot:hover{ color:#fff; }
.hero.is-dark .hero__dot.is-active{ color:#fff; border-bottom-color:#fff; }
.hero.is-dark .hero__toggle{ border-color:rgba(255,255,255,.38); color:#fff; }
.hero.is-dark .hero__toggle:hover{ border-color:#fff; }
.hero.is-dark .hero__track{ background:rgba(255,255,255,.22); }
.hero.is-dark .hero__track span{ background:#fff; }

/* ---------- 7. Campaign banner ---------- */
.banner{
  position:relative;
  height:clamp(440px,70svh,720px);
  overflow:hidden;
  margin-block:clamp(3rem,6vw,5.5rem);
  background:var(--ink);
}
.banner__media{
  position:absolute; inset:0;
  background-image:url("../img/campaign-winter-26.jpg");
  background-repeat:no-repeat;
  background-size:cover; background-position:50% 6%;
  filter:grayscale(1) contrast(1.1) brightness(.72);
}
.banner__caption{
  position:absolute; left:var(--gutter); bottom:clamp(1.6rem,4vw,3.2rem);
}
.banner__title{
  font-size:var(--fs-banner);
  font-weight:500; line-height:1.05; letter-spacing:.02em;
  text-transform:uppercase; color:#fff;
  margin-bottom:1.2rem;
}

/* ---------- 8. Product grid (shop page) ---------- */
.products{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:clamp(.75rem,1.6vw,1.5rem);
}
.product{ display:block; }
.product__link{ display:block; }
.product__add{
  margin-top:.75rem;
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.14em;
  text-transform:uppercase; color:var(--text-3);
  border-bottom:1px solid transparent; padding-bottom:.12rem;
  transition:color .25s var(--ease), border-color .25s var(--ease);
}
.product__add:hover{ color:var(--ink); border-bottom-color:var(--ink); }
.product__media{
  position:relative; display:block; overflow:hidden;
  aspect-ratio:4/5;
  background-color:var(--bg-2);
}
.product__media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.2s var(--ease);
}
.product:hover .product__media img{ transform:scale(1.04); }

.product__name{
  display:block; margin-top:.95rem;
  font-size:var(--fs-sm); font-weight:400; letter-spacing:.04em;
  color:var(--ink);
}
.product:hover .product__name{ text-decoration:underline; text-decoration-thickness:1px; }
.product__spec{
  display:block; margin-top:.32rem;
  font-size:var(--fs-xs); font-weight:400; letter-spacing:.06em;
  color:var(--text-3);
}
.product__price{
  display:block; margin-top:.5rem;
  font-size:var(--fs-sm); font-weight:400; color:var(--text-2);
}

/* ---------- 9. Sign up ---------- */
.signup{ background:var(--bg-2); padding-block:clamp(3rem,5.5vw,4.5rem); }
.signup__inner{
  width:100%; max-width:min(40rem,100%); margin-inline:auto;
  padding-inline:var(--gutter); text-align:center;
}
.signup__text{
  margin-top:.9rem; font-size:var(--fs-base); color:var(--text-2);
}
.signup__form{
  display:flex; align-items:flex-end; gap:1.1rem;
  margin-top:1.9rem;
}
.signup__form input{
  flex:1; min-width:0; background:none; border:0; outline:none;
  border-bottom:1px solid var(--ink);
  padding:.55rem 0; font-size:.9375rem; line-height:1.4;
  letter-spacing:.03em; color:var(--ink);
}
.signup__form input::placeholder{ color:var(--text-3); }
.btn{
  flex:none;
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase;
  padding:.95rem 1.7rem;
  background:var(--ink); color:#fff; border:1px solid var(--ink);
  transition:background .3s var(--ease), color .3s var(--ease);
}
.btn:hover{ background:var(--bg); color:var(--ink); }
.btn--dark{ background:var(--black); border-color:var(--black); }
.btn--dark:hover{ background:var(--bg); color:var(--black); }
.btn--full{ width:100%; }
.signup__msg{
  margin-top:.9rem; min-height:1.3em;
  font-size:var(--fs-sm); color:var(--ink);
}
.signup__msg.is-err{ color:#8a2b1f; }

/* ---------- 9b. Where to buy ---------- */
.apply{
  background:var(--black); color:#fff;
  padding-block:clamp(3.5rem,7vw,6rem);
}
.apply__inner{
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding-inline:var(--gutter);
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(2rem,6vw,6rem); align-items:start;
}
.sec-title--light{ color:#fff; }
/* The application stands on its own now, no heading and no copy column */
.apply__inner--single{ grid-template-columns:1fr; }
.apply__inner--single .apply__form{
  width:100%; max-width:52rem; margin-inline:auto;
}
.apply__text{
  margin-top:1.1rem; max-width:34rem;
  font-size:var(--fs-base); color:#b9b9b9;
}
.apply__form{
  display:grid; grid-template-columns:1fr 1fr;
  gap:1.05rem 1.6rem;
}
.field{ display:flex; flex-direction:column; gap:.4rem; }
.field--full{ grid-column:1 / -1; }
.field label{
  font-size:var(--fs-xs); letter-spacing:.16em;
  text-transform:uppercase; color:#8f8f8f;
}
.field label span{
  text-transform:none; letter-spacing:.06em; color:#6f6f6f;
}
.field input,
.field textarea{
  width:100%; background:none; border:0;
  border-bottom:1px solid #3a3a3a;
  padding:.45rem 0; font-family:inherit; font-size:var(--fs-base);
  line-height:1.4; color:#fff; outline:none; resize:vertical;
  transition:border-color .3s var(--ease);
}
.field input:focus,
.field textarea:focus{ border-bottom-color:#fff; }
.field input::placeholder,
.field textarea::placeholder{ color:#6f6f6f; }
.apply__form .btn{ grid-column:1 / -1; justify-self:start; margin-top:.7rem; }
.btn--light{ background:#fff; color:var(--black); border-color:#fff; }
.btn--light:hover{ background:transparent; color:#fff; }
.btn[disabled]{ opacity:.55; cursor:default; }
.btn[disabled]:hover{ background:#fff; color:var(--black); }
.apply__msg{
  grid-column:1 / -1; margin-top:.1rem; min-height:1.3em;
  font-size:var(--fs-sm); color:#fff;
}
.apply__msg.is-err{ color:#e8a08e; }
.hp{
  position:absolute; width:1px; height:1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;
}

/* ---------- 10. Footer ---------- */
.footer{ background:var(--black); color:#fff; border-top:1px solid #262626; }
.footer__grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:clamp(1.5rem,4vw,3rem);
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding:clamp(3rem,6vw,5rem) var(--gutter) clamp(2.5rem,5vw,4rem);
}
.footer__col h3{
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:#fff; margin-bottom:1rem;
}
.footer__col a{
  display:block; width:fit-content;
  font-size:var(--fs-sm); color:#b9b9b9; padding-block:.22rem;
  transition:color .25s var(--ease);
}
.footer__col a:hover{ color:#fff; }
.footer__base{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; flex-wrap:wrap;
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding:1.4rem var(--gutter);
  border-top:1px solid #262626;
}
.footer__base p,
.footer__legal a,
.region{
  font-size:var(--fs-xs); letter-spacing:.1em; color:#b9b9b9;
}
.footer__legal{ display:flex; align-items:center; gap:clamp(1rem,2.4vw,2rem); flex-wrap:wrap; }
.footer__legal a:hover,.region:hover{ color:#fff; }

/* ---------- 11. Panels ---------- */
.panel{ position:fixed; inset:0; z-index:200; }
.panel[hidden]{ display:none; }
.panel__scrim{
  position:absolute; inset:0; background:rgba(0,0,0,.5);
  opacity:0; transition:opacity .4s var(--ease);
}
.panel.is-open .panel__scrim{ opacity:1; }

.drawer{
  position:absolute; right:0; top:0; bottom:0;
  width:min(420px,100%);
  display:flex; flex-direction:column;
  background:var(--bg); border-left:1px solid var(--line);
  transform:translateX(100%);
  transition:transform .5s var(--ease);
}
.panel--bag.is-open .drawer,
.panel--checkout.is-open .drawer{ transform:translateX(0); }
.drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  padding:1.3rem var(--gutter);
  border-bottom:1px solid var(--line);
}
.drawer__head h2{
  font-size:var(--fs-sm); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink);
}
.drawer__x{
  display:grid; place-items:center; width:32px; height:32px;
  color:var(--ink); transition:opacity .3s var(--ease);
}
.drawer__x:hover{ opacity:.5; }
.drawer__x svg{ width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.2; stroke-linecap:round; }
.drawer__body{ flex:1; overflow-y:auto; padding:var(--gutter); }
.drawer__empty{ text-align:center; padding-top:clamp(2.5rem,10vh,5rem); }
.drawer__empty p{ font-size:var(--fs-sm); color:var(--text-2); }
.drawer__foot{
  padding:1.3rem var(--gutter) 1.6rem;
  border-top:1px solid var(--line);
}
.drawer__sum{
  display:flex; justify-content:space-between; align-items:baseline;
  margin-bottom:1.1rem;
}
.drawer__sum span:first-child{
  font-size:var(--fs-xs); letter-spacing:.16em; text-transform:uppercase; color:var(--text-2);
}
.drawer__sum span:last-child{ font-size:var(--fs-base); color:var(--ink); }

.bagitem{
  display:grid; grid-template-columns:64px 1fr auto;
  gap:1rem; align-items:start;
  padding-bottom:1.1rem; margin-bottom:1.1rem;
  border-bottom:1px solid var(--line);
}
.bagitem__thumb{
  display:block; width:64px; height:80px;
  object-fit:cover; background-color:var(--bg-2);
}
.bagitem__info h3{
  font-size:var(--fs-sm); font-weight:400; letter-spacing:.04em; color:var(--ink);
  line-height:1.4;
}
.bagitem__spec{
  display:block; margin-top:.25rem;
  font-size:var(--fs-xs); letter-spacing:.06em; color:var(--text-3);
}
.bagitem__price{ display:block; margin-top:.4rem; font-size:var(--fs-sm); color:var(--text-2); }
.bagitem__x{
  display:grid; place-items:center; width:26px; height:26px; color:var(--text-3);
  transition:color .3s var(--ease);
}
.bagitem__x:hover{ color:var(--ink); }
.bagitem__x svg{ width:14px; height:14px; fill:none; stroke:currentColor; stroke-width:1.3; stroke-linecap:round; }

.panel--menu .menu{
  position:absolute; inset:0; background:var(--bg);
  display:flex; flex-direction:column; justify-content:center;
  padding:var(--gutter);
  opacity:0; transition:opacity .35s var(--ease);
}
.panel--menu.is-open .menu{ opacity:1; }
.menu__x{ position:absolute; right:var(--gutter); top:1.3rem; }
.menu__nav{ display:flex; flex-direction:column; }
.menu__nav a{
  font-size:clamp(1.4rem,7vw,2.1rem); font-weight:500;
  letter-spacing:.04em; text-transform:uppercase; color:var(--ink);
  padding:.55rem 0; border-bottom:1px solid var(--line);
}
.menu__nav a:hover{ opacity:.5; }
.menu__nav .menu__wip{
  font-size:.42em; letter-spacing:.14em; color:var(--text-3);
}
.menu__foot{
  display:flex; gap:1.6rem; margin-top:2rem;
}
.menu__foot button{
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--text-2);
}
.menu__foot button:hover{ color:var(--ink); }

/* ---------- 11b. Checkout ---------- */
.drawer--wide{ width:min(560px,100%); }

.checkout{ display:grid; gap:clamp(1.5rem,3vw,2.1rem); }
.checkout__h{
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--text-3);
  margin-bottom:.9rem;
}
.checkout__items{ display:grid; gap:.85rem; }
.checkout__item{
  display:grid; grid-template-columns:44px 1fr auto;
  gap:.85rem; align-items:center;
}
.checkout__item img{
  width:44px; height:55px; object-fit:cover; background-color:var(--bg-2);
}
.checkout__item h4{
  font-size:var(--fs-sm); font-weight:400; letter-spacing:.04em;
  color:var(--ink); line-height:1.35;
}
.checkout__item em{
  display:block; margin-top:.2rem; font-style:normal;
  font-size:var(--fs-xs); letter-spacing:.06em; color:var(--text-3);
}
.checkout__item b{ font-size:var(--fs-sm); font-weight:400; color:var(--text-2); }

.checkout__form{ display:grid; grid-template-columns:1fr 1fr; gap:1rem 1.1rem; }
.co-field{ display:flex; flex-direction:column; gap:.35rem; }
.co-field--full{ grid-column:1 / -1; }
.co-field label{
  font-size:var(--fs-xs); letter-spacing:.14em;
  text-transform:uppercase; color:var(--text-3);
}
.co-field label span{ text-transform:none; letter-spacing:.05em; }
.co-field input,
.co-field textarea{
  width:100%; background:none; border:0;
  border-bottom:1px solid var(--line-2);
  padding:.42rem 0; font-family:inherit; font-size:var(--fs-base);
  line-height:1.4; color:var(--ink); outline:none; resize:vertical;
  transition:border-color .3s var(--ease);
}
.co-field input:focus,
.co-field textarea:focus{ border-bottom-color:var(--ink); }
.co-field input::placeholder,
.co-field textarea::placeholder{ color:#b0b0b0; }

.checkout__msg{
  grid-column:1 / -1; margin:0; min-height:1.3em;
  font-size:var(--fs-sm); color:var(--ink);
}
.checkout__msg.is-err{ color:#8a2b1f; }

.checkout__done{ text-align:center; padding:clamp(1.5rem,7vh,3.5rem) 0; }
.checkout__done h3{
  font-size:var(--fs-h2); font-weight:500; letter-spacing:.18em;
  text-transform:uppercase; color:var(--ink); margin-bottom:1.1rem;
}
.checkout__done p{
  max-width:26rem; margin-inline:auto;
  font-size:var(--fs-sm); color:var(--text-2);
}
.checkout__ref{
  display:inline-block; margin-top:1.5rem; padding:.62rem 1.05rem;
  border:1px solid var(--line-2);
  font-size:var(--fs-xs); letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink);
}

/* ---------- 11c. Nav dropdown ---------- */
.nav__item{ position:relative; }
.nav__link{
  display:inline-flex; align-items:center; gap:.45rem;
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink); padding-block:.4rem;
}
.nav__link:hover{ text-decoration:underline; text-decoration-thickness:1px; }
.nav__link span{ color:var(--text-3); letter-spacing:.1em; }
.nav__caret{
  width:8px; height:8px; fill:none; stroke:currentColor; stroke-width:1.4;
  transition:transform .3s var(--ease);
}
.nav__item.is-open .nav__caret{ transform:rotate(180deg); }

.dropdown{
  position:absolute; top:calc(100% + .95rem); left:-1.2rem; z-index:20;
  min-width:14.5rem; padding:.9rem 0;
  background:var(--bg); border:1px solid var(--line);
  box-shadow:0 20px 44px -28px rgba(0,0,0,.45);
  opacity:0; transform:translateY(-6px);
  transition:opacity .28s var(--ease), transform .28s var(--ease);
}
.dropdown[hidden]{ display:none; }
.nav__item.is-open .dropdown{ opacity:1; transform:none; }
.dropdown a{
  display:block; padding:.52rem 1.4rem;
  font-size:var(--fs-sm); letter-spacing:.06em; color:var(--text);
  transition:background .2s var(--ease), color .2s var(--ease);
}
.dropdown a:hover{ color:var(--ink); background:var(--bg-2); }
.dropdown__all{
  margin-top:.5rem; padding-top:.9rem;
  border-top:1px solid var(--line);
  font-size:var(--fs-xs); letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink);
}

/* ---------- 11d. MEN / FEMALES split ---------- */
.split{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(.6rem,1.3vw,1.2rem);
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding:clamp(.9rem,2.2vw,1.8rem) var(--gutter) 0;
}
.split__panel{
  position:relative; display:block; overflow:hidden;
  border-radius:clamp(12px,1.8vw,26px);
  aspect-ratio:4/5;
  background:var(--bg-2);
}
.split__panel img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover;
  transition:transform 1.5s var(--ease);
}
.split__panel:hover img{ transform:scale(1.04); }
.split__panel::after{
  content:""; position:absolute; inset:auto 0 0 0; height:64%;
  background:linear-gradient(to top, rgba(0,0,0,.74) 0%, rgba(0,0,0,.3) 42%, rgba(0,0,0,0) 100%);
  pointer-events:none;
}
.split__body{
  position:absolute; left:0; right:0; bottom:clamp(1.5rem,3.6vw,2.8rem);
  z-index:1; padding-inline:1rem; text-align:center;
}
.split__label{
  display:block; margin-bottom:1.05rem;
  font-size:clamp(1.3rem,3vw,2.05rem); font-weight:600;
  letter-spacing:.2em; text-indent:.2em;
  text-transform:uppercase; color:#fff;
}
.split__label em{
  font-style:normal; font-size:.46em; letter-spacing:.16em;
  text-indent:0; opacity:.75;
}
.split__cta{
  display:inline-block; padding:.85rem 1.55rem;
  border:1px solid rgba(255,255,255,.72); border-radius:999px;
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:#fff;
  transition:background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.split__panel:hover .split__cta{
  background:#fff; color:var(--black); border-color:#fff;
}

/* ---------- 11e. Statement ---------- */
.statement{
  width:100%; max-width:min(58rem,100%); margin-inline:auto;
  padding:clamp(4rem,10vw,8.5rem) var(--gutter);
  text-align:center;
}
.statement__text{
  font-size:clamp(1.15rem,2.4vw,1.85rem);
  font-weight:400; line-height:1.45; letter-spacing:.002em;
  color:var(--ink);
}

/* ---------- 11f. Feature (text + image) ---------- */
.feature{
  display:grid; grid-template-columns:1fr 1fr;
  align-items:center; gap:clamp(1.8rem,6vw,6rem);
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding:clamp(2.5rem,6vw,5rem) var(--gutter);
}
.feature--flip .feature__media{ order:2; }
.feature__media{
  position:relative; overflow:hidden;
  aspect-ratio:3/2; background:var(--bg-2);
}
.feature__media img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.12);
}
.feature__copy{ max-width:32rem; }
.feature__copy p{
  margin-top:1.15rem; font-size:var(--fs-base); color:var(--text-2);
}

/* ---------- 11g. Duo ---------- */
.duo{
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding:clamp(2.5rem,6vw,5rem) var(--gutter);
}
.duo__head{
  display:flex; flex-wrap:wrap; align-items:baseline;
  justify-content:space-between; gap:1.4rem;
  margin-bottom:clamp(1.6rem,3.2vw,2.6rem);
}
.duo__text{
  max-width:38rem; font-size:var(--fs-base); color:var(--text-2);
}
.duo__grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(.6rem,1.4vw,1.3rem);
}
.duo__item{
  overflow:hidden; aspect-ratio:3/2; background:var(--bg-2);
}
.duo__item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.5s var(--ease);
}
.duo__item:hover img{ transform:scale(1.04); }

/* ---------- 11h. Shop ---------- */
.shop{
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding:clamp(2.5rem,5.5vw,4.5rem) var(--gutter) clamp(4rem,8vw,7rem);
}
.shop__note{
  margin-top:.9rem; max-width:min(680px,100%);
  font-size:var(--fs-sm); color:var(--text-2);
}
.shop__filters{
  display:flex; flex-wrap:wrap; gap:clamp(.9rem,2.2vw,1.7rem);
  margin-top:1.5rem;
}
.shop__filter{
  font-size:var(--fs-xs); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--text-3);
  padding-bottom:.32rem; border-bottom:1px solid transparent;
  transition:color .25s var(--ease), border-color .25s var(--ease);
}
.shop__filter:hover{ color:var(--ink); }
.shop__filter[aria-current="true"]{
  color:var(--ink); border-bottom-color:var(--ink);
}
.shop__count{
  margin-top:clamp(1.6rem,3vw,2.4rem);
  font-size:var(--fs-xs); letter-spacing:.14em;
  text-transform:uppercase; color:var(--text-3);
}
.product.is-hidden{ display:none; }

/* ---------- 12. Responsive ---------- */
@media (max-width:1024px){
  .header__bar{ display:flex; align-items:center; justify-content:space-between; }
  .nav{ display:none; }
  .burger{ display:flex; }
  .logo{ position:absolute; left:50%; transform:translateX(-50%); }
  .util--search{ display:none; }
  .products{ grid-template-columns:repeat(2,1fr); }
  .feature{ grid-template-columns:1fr; gap:1.8rem; }
  .feature--flip .feature__media{ order:0; }
  .feature__copy{ max-width:none; }
  .apply__inner{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:repeat(2,1fr); gap:2rem; }
}
@media (max-width:640px){
  :root{ --head-h:56px; }
  /* Phone hero: a fixed 3:4 frame with the slides absolutely positioned inside
     it, so the carousel mechanics stay identical to desktop. The caption now
     overlays, which means every slide needs a scrim and light type, including
     the cream one. */
  .hero{ height:auto; aspect-ratio:3/4; background:var(--ink); }
  .hero__slide::after{
    content:""; position:absolute; inset:0; pointer-events:none;
    background:linear-gradient(to top, rgba(0,0,0,.66) 0%, rgba(0,0,0,.08) 58%);
  }
  .hero__caption{
    right:var(--gutter); bottom:clamp(4.6rem,17vw,6rem);
    max-width:none;
  }
  .hero__eyebrow{ color:rgba(255,255,255,.72); }
  .hero__title{ color:#fff; }
  .hero .link{ color:#fff; }
  .hero__dot{ color:rgba(255,255,255,.5); }
  .hero__dot:hover,
  .hero__dot.is-active{ color:#fff; border-bottom-color:#fff; }
  .hero__toggle{ border-color:rgba(255,255,255,.38); color:#fff; }
  .hero__track{ background:rgba(255,255,255,.22); }
  .hero__track span{ background:#fff; }
  .footer__grid{ grid-template-columns:1fr; gap:1.8rem; }
  .footer__base{ flex-direction:column; align-items:flex-start; }
  .signup__form{ flex-direction:column; border-bottom:0; }
  .signup__form input{ border-bottom:1px solid var(--ink); }
  .btn{ width:100%; margin-top:.8rem; }
  .apply__form{ grid-template-columns:1fr; }
  .checkout__grid{ grid-template-columns:1fr; gap:1.4rem; }
  .checkout__foot .btn{ margin-top:0; }
  .split{ grid-template-columns:1fr; gap:.6rem; }
  .split__panel{ aspect-ratio:5/6; }
  .duo__grid{ grid-template-columns:1fr; }
  .statement{ padding-block:clamp(3rem,12vw,4.5rem); }
}

/* ---------- 13. Motion preference ---------- */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .hero__img{ animation:none; }
  .hero__caption{ animation:none; }
}
