/* ============================================================
   SCOLLE — DJ personal brand
   Ushuaïa energy · Chrome Hearts gothic · Saint Laurent minimal
   Black / bone / white · high contrast · grain
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Pirata+One&display=swap");

:root{
  --ink:   #0a0a0a;
  --ink-2: #141414;
  --bone:  #ECE7DE;
  --bone-d:#DED7C9;
  --white: #ffffff;
  --grey:  #8a8a8a;
  --chrome-1:#f4f6f8;
  --chrome-2:#b9bfc6;
  --chrome-3:#7d858e;

  --disp: "Archivo", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, sans-serif;
  --goth: "Pirata One", "Inter", serif;

  --wipe: cubic-bezier(0.76, 0, 0.24, 1);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1360px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background:var(--ink); color:var(--white);
  font-family:var(--body); font-weight:300;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
em{ font-style:italic; }

/* ---------- grain ---------- */
.grain{
  position:fixed; inset:0; z-index:9000; pointer-events:none; opacity:.055;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shared bits ---------- */
.cross{ font-style:normal; }
.chrome{
  background:linear-gradient(180deg,var(--chrome-1) 0%,var(--chrome-2) 48%,var(--chrome-3) 52%,var(--chrome-1) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.gothic{ font-family:var(--goth); font-weight:400; }
.kicker{
  font-family:var(--body); font-weight:500; font-size:11px;
  text-transform:uppercase; letter-spacing:.34em; color:var(--grey);
}
.section-tag{
  font-family:var(--body); font-weight:600; font-size:11px;
  text-transform:uppercase; letter-spacing:.3em; color:var(--grey);
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--body); font-weight:600; font-size:12px;
  text-transform:uppercase; letter-spacing:.18em; padding:15px 26px;
  border:1px solid transparent; cursor:pointer; transition:all .35s var(--ease);
  border-radius:2px;
}
.btn .cross{ font-size:11px; opacity:.8; }
.btn--white{ background:var(--white); color:var(--ink); }
.btn--white:hover{ background:transparent; color:var(--white); border-color:var(--white); }
.btn--ghost{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.4); }
.btn--ghost:hover{ background:var(--white); color:var(--ink); }
.btn--dark{ background:var(--ink); color:var(--white); }
.btn--dark:hover{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn--wide{ width:100%; justify-content:center; padding:17px; }

.link-underline{
  font-family:var(--body); font-weight:500; font-size:12px;
  text-transform:uppercase; letter-spacing:.16em; display:inline-flex; gap:8px;
  padding-bottom:4px; border-bottom:1px solid currentColor; align-items:center;
  transition:gap .3s var(--ease), opacity .3s;
}
.link-underline:hover{ gap:14px; opacity:.7; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:8000;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px clamp(20px,4vw,52px); transition:background .45s var(--ease), padding .45s var(--ease), border-color .45s var(--ease);
  border-bottom:1px solid transparent;
  /* top scrim so white nav is always legible over any hero */
  background:linear-gradient(180deg, rgba(6,6,6,.6) 0%, rgba(6,6,6,.18) 55%, transparent 100%);
}
.nav.is-stuck{
  padding-top:13px; padding-bottom:13px;
  background:rgba(9,9,9,.86); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  border-bottom-color:rgba(245,240,232,.12);
}
/* light-header pages (e.g. shop): dark nav until stuck */
.nav--onlight:not(.is-stuck){ background:linear-gradient(180deg, rgba(236,231,222,.85) 0%, rgba(236,231,222,.2) 60%, transparent 100%); }
.nav--onlight:not(.is-stuck) .nav__logo img{ filter:invert(1); }
.nav--onlight:not(.is-stuck) .nav__links a{ color:var(--ink); }
.nav--onlight:not(.is-stuck) .nav__cta{ border-color:var(--ink); color:var(--ink) !important; }
.nav__logo{ display:flex; align-items:center; }
.nav__links{ display:flex; align-items:center; gap:clamp(16px,2.4vw,34px); }
.nav__links a{
  font-family:var(--body); font-weight:500; font-size:11px;
  text-transform:uppercase; letter-spacing:.2em; color:var(--white); opacity:.9;
  transition:opacity .3s, color .3s;
}
.nav__links a:hover{ opacity:1; }
.nav.is-stuck .nav__links a{ color:var(--white); }
.nav__cta{ border:1px solid var(--white); padding:9px 16px; opacity:1 !important; border-radius:2px; }
.nav.is-stuck .nav__cta{ border-color:var(--white); color:var(--white) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; min-height:100svh; display:flex; align-items:flex-end; overflow:hidden; }
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__media img{
  width:100%; height:100%; object-fit:cover; object-position:center 40%;
  filter:grayscale(1) contrast(1.12) brightness(.92);
  animation:kenburns 26s ease-out infinite alternate;
}
@keyframes kenburns{ from{ transform:scale(1.04); } to{ transform:scale(1.14); } }
.hero__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.15) 32%, rgba(10,10,10,.35) 62%, rgba(10,10,10,.92) 100%);
}
.hero__inner{
  position:relative; z-index:2; width:100%; max-width:var(--wrap);
  margin:0 auto; padding:0 clamp(20px,4vw,52px) clamp(60px,10vh,120px);
}
.hero .kicker{ color:rgba(255,255,255,.72); margin-bottom:20px; }
.hero__word{
  font-family:var(--disp); font-weight:400;
  font-size:clamp(84px,20vw,300px); line-height:.82; letter-spacing:.02em;
  text-transform:uppercase;
  text-shadow:0 6px 50px rgba(0,0,0,.5);
}
.hero__tag{
  font-family:var(--body); font-weight:300; font-size:clamp(17px,2.4vw,30px);
  margin-top:22px; letter-spacing:.01em;
}
.hero__tag .chrome{ font-weight:500; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:36px; }
.hero__foot{
  position:absolute; z-index:2; bottom:26px; left:0; right:0;
  max-width:var(--wrap); margin:0 auto; padding:0 clamp(20px,4vw,52px);
  display:flex; justify-content:space-between;
  font-family:var(--body); font-size:10px; text-transform:uppercase;
  letter-spacing:.28em; color:rgba(255,255,255,.55);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker{ background:var(--white); color:var(--ink); overflow:hidden; padding:16px 0; border-top:1px solid var(--ink); border-bottom:1px solid var(--ink); }
.ticker__track{ display:flex; width:max-content; animation:marquee 34s linear infinite; }
.ticker__track span{
  font-family:var(--disp); font-size:clamp(24px,3.4vw,42px); text-transform:uppercase;
  letter-spacing:.02em; white-space:nowrap; padding-right:28px;
}
.ticker .cross{ color:var(--grey); margin:0 6px; font-size:.7em; vertical-align:middle; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ============================================================
   TWO WORLDS
   ============================================================ */
.worlds{ display:grid; grid-template-columns:1fr 1fr; }
.world{ position:relative; display:flex; flex-direction:column; min-height:88vh; }
.world--dark{ background:var(--ink); color:var(--white); }
.world--light{ background:var(--bone); color:var(--ink); }
.world__media{ position:relative; overflow:hidden; flex:1 1 auto; min-height:56vh; }
.world__media img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(1) contrast(1.06);
  transition:transform 1.4s var(--ease), filter .8s;
}
.world:hover .world__media img{ transform:scale(1.05); }
.world--dark .world__media img{ brightness:.9; }
.world__body{ padding:clamp(30px,4vw,56px); position:relative; }
.world__no{
  position:absolute; top:-.55em; right:clamp(30px,4vw,56px);
  font-family:var(--disp); font-size:clamp(70px,9vw,140px);
  opacity:.10; line-height:1;
}
.world__title{
  font-family:var(--disp); font-weight:400; text-transform:uppercase;
  font-size:clamp(46px,6.4vw,104px); line-height:.84; letter-spacing:.01em;
}
.world__body p{
  font-family:var(--body); font-weight:300; font-size:15px; line-height:1.72;
  max-width:38ch; margin:22px 0 26px; opacity:.85;
}

/* ============================================================
   STRIP
   ============================================================ */
.strip{ background:var(--white); color:var(--ink); padding:clamp(60px,10vw,130px) clamp(20px,5vw,64px); }
.strip__line{
  max-width:1100px; margin:0 auto; text-align:center;
  font-family:var(--body); font-weight:300; font-size:clamp(24px,4vw,52px);
  line-height:1.25; letter-spacing:-.01em;
}
.strip__line em{ font-family:var(--goth); font-style:normal; }

/* ============================================================
   BOOKINGS
   ============================================================ */
.book{ background:var(--ink); padding:clamp(80px,12vw,160px) clamp(20px,4vw,52px); }
.book__grid{
  max-width:var(--wrap); margin:0 auto;
  display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(40px,7vw,110px); align-items:start;
}
.book__title{
  font-family:var(--disp); font-weight:400; text-transform:uppercase;
  font-size:clamp(58px,9vw,150px); line-height:.84; margin:18px 0 24px;
}
.book__lede{ font-family:var(--body); font-weight:300; font-size:clamp(16px,1.8vw,20px); line-height:1.6; max-width:40ch; opacity:.85; }
.book__types{ list-style:none; margin-top:38px; }
.book__types li{
  font-family:var(--body); font-weight:400; font-size:15px; letter-spacing:.02em;
  padding:16px 0; border-top:1px solid rgba(255,255,255,.14);
  display:flex; gap:14px; align-items:center;
}
.book__types .cross{ color:var(--grey); }

.book__form{ display:grid; gap:18px; }
.book__form label{
  display:flex; flex-direction:column; gap:8px;
  font-family:var(--body); font-weight:500; font-size:11px;
  text-transform:uppercase; letter-spacing:.2em; color:var(--grey);
}
.book__form input, .book__form textarea{
  background:transparent; border:none; border-bottom:1px solid rgba(255,255,255,.28);
  padding:12px 2px; font-family:var(--body); font-weight:300; font-size:16px;
  color:var(--white); resize:none;
}
.book__form input::placeholder, .book__form textarea::placeholder{ color:rgba(255,255,255,.35); }
.book__form input:focus, .book__form textarea:focus{ outline:none; border-bottom-color:var(--white); }
.book__form button{ margin-top:8px; }

/* ============================================================
   SHOP / UNIFORM
   ============================================================ */
.shop{ background:var(--bone); color:var(--ink); padding:clamp(80px,12vw,150px) clamp(20px,4vw,52px); }
.shop__head{ max-width:var(--wrap); margin:0 auto clamp(40px,6vw,70px); }
.shop__title{
  font-family:var(--disp); font-weight:400; text-transform:uppercase;
  font-size:clamp(52px,8vw,130px); line-height:.86; margin:16px 0 18px;
}
.shop__title .gothic{ text-transform:none; }
.shop__sub{ font-family:var(--body); font-weight:300; font-size:clamp(15px,1.7vw,19px); max-width:44ch; opacity:.75; }
.shop__grid{
  max-width:var(--wrap); margin:0 auto;
  display:grid; grid-template-columns:1.4fr 1fr; gap:clamp(30px,4vw,60px); align-items:end;
}
.product__media{ position:relative; background:var(--bone-d); overflow:hidden; }
.product__media img{ width:100%; aspect-ratio:4/5; object-fit:cover; transition:transform 1.2s var(--ease); }
.product:hover .product__media img{ transform:scale(1.03); }
.product__badge{
  position:absolute; top:16px; left:16px;
  font-family:var(--body); font-weight:600; font-size:10px; text-transform:uppercase;
  letter-spacing:.2em; background:var(--ink); color:var(--white); padding:7px 12px; border-radius:2px;
}
.product__row{
  display:flex; align-items:flex-end; justify-content:space-between; gap:20px;
  padding-top:22px; border-top:1px solid rgba(10,10,10,.18); margin-top:22px;
}
.product__row h3{ font-family:var(--body); font-weight:600; font-size:19px; letter-spacing:.01em; }
.product__meta{ font-family:var(--body); font-weight:300; font-size:13px; opacity:.6; margin-top:4px; }
.product__buy{ display:flex; align-items:center; gap:18px; }
.product__price{ font-family:var(--disp); font-size:30px; }

.shop__note{ padding-bottom:8px; }
.shop__note .gothic{ font-size:clamp(40px,6vw,88px); line-height:1; }
.shop__note p:last-child{ font-family:var(--body); font-weight:300; font-size:15px; line-height:1.7; max-width:34ch; margin-top:18px; opacity:.8; }

/* ============================================================
   THE LIST
   ============================================================ */
.list{ background:var(--ink); padding:clamp(90px,14vw,190px) clamp(20px,4vw,52px); text-align:center; }
.list__inner{ max-width:760px; margin:0 auto; }
.list .kicker{ margin-bottom:20px; }
.list__title{
  font-family:var(--disp); font-weight:400; text-transform:uppercase;
  font-size:clamp(48px,9vw,130px); line-height:.86;
}
.list__sub{ font-family:var(--body); font-weight:300; font-size:clamp(15px,1.8vw,19px); margin-top:20px; opacity:.75; }
.list__form{ display:flex; gap:12px; max-width:520px; margin:40px auto 0; }
.list__form input{
  flex:1; background:transparent; border:1px solid rgba(255,255,255,.3);
  padding:15px 18px; font-family:var(--body); font-size:15px; color:var(--white); border-radius:2px;
}
.list__form input::placeholder{ color:rgba(255,255,255,.4); }
.list__form input:focus{ outline:none; border-color:var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot{ background:#050505; padding:clamp(40px,6vw,64px) clamp(20px,4vw,52px) 30px; }
.foot__top{
  max-width:var(--wrap); margin:0 auto; display:flex; align-items:center; justify-content:space-between;
  padding-bottom:30px; border-bottom:1px solid rgba(255,255,255,.12); flex-wrap:wrap; gap:20px;
}
.foot__logo{ font-family:var(--disp); font-size:clamp(40px,7vw,96px); letter-spacing:.03em; }
.foot__social{ display:flex; gap:26px; }
.foot__social a{
  font-family:var(--body); font-weight:500; font-size:12px; text-transform:uppercase;
  letter-spacing:.16em; opacity:.75; transition:opacity .3s; padding-bottom:3px; border-bottom:1px solid transparent;
}
.foot__social a:hover{ opacity:1; border-bottom-color:var(--white); }
.foot__bottom{
  max-width:var(--wrap); margin:22px auto 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-family:var(--body); font-size:11px; letter-spacing:.06em; color:var(--grey);
}
.foot__by a{ color:var(--white); border-bottom:1px solid transparent; transition:border-color .3s; }
.foot__by a:hover{ border-bottom-color:var(--white); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero__media img{ animation:none; }
  .ticker__track{ animation-duration:80s; }
  html{ scroll-behavior:auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:860px){
  .nav__links a:not(.nav__cta){ display:none; }
  .worlds{ grid-template-columns:1fr; }
  .world{ min-height:auto; }
  .world__media{ min-height:52vh; }
  .book__grid{ grid-template-columns:1fr; gap:48px; }
  .shop__grid{ grid-template-columns:1fr; gap:40px; align-items:start; }
  .product__media img{ aspect-ratio:3/4; }
}
@media (max-width:520px){
  .hero__foot .hero__loc{ display:none; }
  .list__form{ flex-direction:column; }
  .product__row{ flex-direction:column; align-items:flex-start; gap:16px; }
  .foot__top{ flex-direction:column; align-items:flex-start; }
}

/* ============================================================
   MULTIPAGE ADDITIONS
   ============================================================ */

/* footer nav (injected) */
.foot__nav{ display:flex; gap:22px; flex-wrap:wrap; }
.foot__nav a{
  font-family:var(--body); font-weight:500; font-size:12px; text-transform:uppercase;
  letter-spacing:.16em; opacity:.7; transition:opacity .3s; padding-bottom:3px;
  border-bottom:1px solid transparent;
}
.foot__nav a:hover{ opacity:1; border-bottom-color:var(--white); }
.nav__links a[data-active]{ opacity:1; }
.nav__links a[data-active]:not(.nav__cta){ border-bottom:1px solid currentColor; padding-bottom:3px; }

/* worlds as links on home */
a.world{ color:inherit; }

/* ---------- PAGE HEADER ---------- */
.phead{ position:relative; overflow:hidden; padding:clamp(140px,18vh,220px) clamp(20px,4vw,52px) clamp(50px,7vw,90px); }
.phead--dark{ background:var(--ink); color:var(--white); }
.phead--light{ background:var(--bone); color:var(--ink); }
.phead--img{ color:var(--white); }
.phead__bg{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 35%;
  filter:grayscale(1) contrast(1.1) brightness(.5); z-index:0;
}
.phead--img::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(10,10,10,.4),rgba(10,10,10,.85)); z-index:1; }
.phead__inner{ position:relative; z-index:2; max-width:var(--wrap); margin:0 auto; }
.phead__title{
  font-family:var(--disp); font-weight:400; text-transform:uppercase;
  font-size:clamp(56px,11vw,180px); line-height:.84; margin:16px 0 20px; letter-spacing:.01em;
}
.phead__title .gothic, .phead__title .chrome{ text-transform:none; }
.phead__sub{ font-family:var(--body); font-weight:300; font-size:clamp(16px,1.9vw,21px); max-width:46ch; line-height:1.55; opacity:.82; }
.phead__bag{
  position:absolute; z-index:2; top:clamp(90px,12vh,120px); right:clamp(20px,4vw,52px);
  font-family:var(--disp); font-size:22px; min-width:40px; height:40px; border:1px solid currentColor;
  border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:.25;
}
.phead__bag.show{ opacity:1; }

/* ---------- FEATURED (home) ---------- */
.feature{ display:grid; grid-template-columns:1fr 1fr; background:var(--bone); color:var(--ink); }
.feature__media{ background:var(--bone-d); }
.feature__media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:1/1; }
.feature__body{ padding:clamp(40px,6vw,90px); display:flex; flex-direction:column; justify-content:center; }
.feature__title{ font-family:var(--disp); font-weight:400; text-transform:uppercase; font-size:clamp(44px,6vw,92px); line-height:.86; margin:14px 0 20px; }
.feature__title .gothic{ text-transform:none; }
.feature__lede{ font-family:var(--body); font-weight:300; font-size:16px; line-height:1.7; max-width:40ch; opacity:.8; }
.feature__row{ display:flex; align-items:center; gap:26px; margin-top:32px; }
.feature__price{ font-family:var(--disp); font-size:38px; }

/* ---------- PDP (featured product) ---------- */
.pdp{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(30px,5vw,80px); background:var(--bone); color:var(--ink); padding:clamp(40px,6vw,90px) clamp(20px,4vw,52px); align-items:start; }
.pdp__media{ position:relative; background:var(--bone-d); overflow:hidden; }
.pdp__media img{ width:100%; aspect-ratio:4/5; object-fit:cover; }
.pdp__badge{ position:absolute; top:16px; left:16px; font-family:var(--body); font-weight:600; font-size:10px; text-transform:uppercase; letter-spacing:.2em; background:var(--ink); color:var(--white); padding:7px 12px; border-radius:2px; }
.pdp__cat{ font-family:var(--body); font-weight:500; font-size:11px; text-transform:uppercase; letter-spacing:.28em; opacity:.55; }
.pdp__name{ font-family:var(--disp); font-weight:400; text-transform:uppercase; font-size:clamp(40px,5.5vw,78px); line-height:.86; margin:12px 0 10px; }
.pdp__name .gothic{ text-transform:none; }
.pdp__price{ font-family:var(--disp); font-size:34px; margin-bottom:22px; }
.pdp__desc{ font-family:var(--body); font-weight:300; font-size:15px; line-height:1.72; max-width:46ch; opacity:.82; }
.pdp__opt{ margin:30px 0 24px; }
.pdp__optlabel{ font-family:var(--body); font-weight:600; font-size:11px; text-transform:uppercase; letter-spacing:.2em; opacity:.6; display:block; margin-bottom:12px; }
.sizes{ display:flex; gap:10px; flex-wrap:wrap; }
.size{ font-family:var(--body); font-weight:500; font-size:14px; width:48px; height:48px; border:1px solid rgba(10,10,10,.3); background:transparent; color:var(--ink); cursor:pointer; transition:all .25s var(--ease); border-radius:2px; }
.size:hover{ border-color:var(--ink); }
.size.is-sel{ background:var(--ink); color:var(--white); border-color:var(--ink); }
.pdp__meta{ list-style:none; margin-top:28px; }
.pdp__meta li{ font-family:var(--body); font-weight:300; font-size:13px; padding:11px 0; border-top:1px solid rgba(10,10,10,.14); display:flex; gap:12px; align-items:center; opacity:.8; }
.pdp__meta .cross{ color:var(--grey); }
.btn.is-added{ background:#1b7d3f !important; color:#fff !important; border-color:#1b7d3f !important; }

/* ---------- WARDROBE grid ---------- */
.wardrobe{ background:var(--ink); color:var(--white); padding:clamp(70px,10vw,130px) clamp(20px,4vw,52px); }
.wardrobe__head{ max-width:var(--wrap); margin:0 auto clamp(36px,5vw,56px); }
.wardrobe__title{ font-family:var(--disp); font-weight:400; text-transform:uppercase; font-size:clamp(44px,7vw,110px); line-height:.86; }
.wardrobe__title .chrome{ text-transform:none; }
.wardrobe__head p{ font-family:var(--body); font-weight:300; font-size:16px; opacity:.7; margin-top:16px; max-width:44ch; }
.wardrobe__grid{ max-width:var(--wrap); margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.card__media{ background:var(--ink-2); overflow:hidden; aspect-ratio:4/5; }
.card__media img{ width:100%; height:100%; object-fit:cover; transition:transform 1.1s var(--ease); }
.card:hover .card__media img{ transform:scale(1.04); }
.card__soon{ display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.12); }
.card__soon .gothic{ font-size:clamp(30px,4vw,52px); color:rgba(255,255,255,.4); }
.card--soon{ opacity:.72; }
.card__row{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; padding-top:16px; border-top:1px solid rgba(255,255,255,.14); margin-top:16px; }
.card__row h3{ font-family:var(--body); font-weight:600; font-size:15px; }
.card__meta{ font-family:var(--body); font-weight:300; font-size:12px; opacity:.55; margin-top:3px; }
.card__buy{ display:flex; align-items:center; gap:12px; }
.card__price{ font-family:var(--disp); font-size:20px; }
.btn--sm{ padding:9px 14px; font-size:10px; }

/* ---------- CROSS-SELL ---------- */
.crossell{ background:var(--bone); color:var(--ink); padding:clamp(70px,10vw,130px) clamp(20px,4vw,52px); text-align:center; }
.crossell--dark{ background:var(--ink); color:var(--white); }
.crossell__inner{ max-width:640px; margin:0 auto; }
.crossell__inner h2{ font-family:var(--disp); font-weight:400; text-transform:uppercase; font-size:clamp(34px,5vw,68px); line-height:.9; }
.crossell__inner p{ font-family:var(--body); font-weight:300; font-size:17px; margin:16px 0 30px; opacity:.8; }

/* ---------- SETS page rows ---------- */
.setrow{ display:grid; grid-template-columns:1fr 1fr; align-items:stretch; }
.setrow--dark{ background:var(--ink); color:var(--white); }
.setrow--light{ background:var(--bone); color:var(--ink); }
.setrow--rev .setrow__media{ order:2; }
.setrow__media{ overflow:hidden; min-height:60vh; }
.setrow__media img{ width:100%; height:100%; object-fit:cover; filter:grayscale(1) contrast(1.06); transition:transform 1.4s var(--ease); }
.setrow:hover .setrow__media img{ transform:scale(1.05); }
.setrow__body{ padding:clamp(40px,6vw,90px); display:flex; flex-direction:column; justify-content:center; position:relative; }
.setrow__no{ font-family:var(--disp); font-size:clamp(60px,8vw,120px); opacity:.1; line-height:1; }
.setrow__body h2{ font-family:var(--disp); font-weight:400; text-transform:uppercase; font-size:clamp(44px,6vw,96px); line-height:.86; margin:6px 0 20px; }
.setrow__body p{ font-family:var(--body); font-weight:300; font-size:16px; line-height:1.72; max-width:42ch; opacity:.84; }
.tags{ list-style:none; display:flex; flex-wrap:wrap; gap:10px; margin:26px 0 30px; }
.tags li{ font-family:var(--body); font-weight:500; font-size:11px; text-transform:uppercase; letter-spacing:.16em; border:1px solid rgba(255,255,255,.3); padding:8px 14px; border-radius:2px; }
.tags--dark li{ border-color:rgba(10,10,10,.3); }

/* ---------- VENUES ---------- */
.venues{ background:var(--white); color:var(--ink); padding:clamp(70px,10vw,140px) clamp(20px,4vw,52px); }
.venues__title{ font-family:var(--disp); font-weight:400; text-transform:uppercase; font-size:clamp(44px,7vw,110px); line-height:.86; max-width:var(--wrap); margin:0 auto clamp(30px,4vw,50px); }
.venues__title .gothic{ text-transform:none; }
.venues__list{ list-style:none; max-width:var(--wrap); margin:0 auto; }
.venues__list li{ display:flex; align-items:baseline; justify-content:space-between; gap:20px; padding:22px 0; border-top:1px solid rgba(10,10,10,.16); }
.venues__list li span{ font-family:var(--disp); font-size:clamp(24px,3.6vw,48px); text-transform:uppercase; }
.venues__list li em{ font-family:var(--body); font-style:normal; font-weight:500; font-size:12px; text-transform:uppercase; letter-spacing:.2em; opacity:.55; }
.venues__note{ max-width:var(--wrap); margin:34px auto 0; font-family:var(--goth); font-size:clamp(20px,3vw,34px); }

/* ---------- BOOKINGS ---------- */
.btypes{ background:var(--ink); color:var(--white); display:grid; grid-template-columns:repeat(4,1fr); max-width:var(--wrap); margin:0 auto; }
.btype{ padding:clamp(34px,4vw,54px) clamp(20px,2vw,32px); border-left:1px solid rgba(255,255,255,.14); }
.btype:first-child{ border-left:none; }
.btype__no{ font-family:var(--disp); font-size:24px; color:var(--grey); }
.btype h3{ font-family:var(--body); font-weight:600; font-size:19px; margin:14px 0 10px; letter-spacing:.01em; }
.btype p{ font-family:var(--body); font-weight:300; font-size:14px; line-height:1.66; opacity:.72; }
.bform{ background:var(--ink); color:var(--white); padding:clamp(50px,8vw,120px) clamp(20px,4vw,52px) clamp(80px,12vw,150px); }
.bform__grid{ max-width:var(--wrap); margin:0 auto; display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(40px,7vw,110px); align-items:start; }
.bform__left h2{ font-family:var(--disp); font-weight:400; text-transform:uppercase; font-size:clamp(46px,7vw,110px); line-height:.84; }
.bform__left p{ font-family:var(--body); font-weight:300; font-size:16px; line-height:1.7; margin-top:22px; max-width:34ch; opacity:.82; }
.bform__how{ list-style:none; margin-top:34px; }
.bform__how li{ font-family:var(--body); font-weight:300; font-size:14px; padding:13px 0; border-top:1px solid rgba(255,255,255,.14); display:flex; gap:12px; align-items:center; opacity:.82; }
.bform__how .cross{ color:var(--grey); }
.bform__form{ display:grid; gap:18px; }
.bform__two{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.bform__form label{ display:flex; flex-direction:column; gap:8px; font-family:var(--body); font-weight:500; font-size:11px; text-transform:uppercase; letter-spacing:.2em; color:var(--grey); }
.bform__form input, .bform__form textarea, .bform__form select{ background:transparent; border:none; border-bottom:1px solid rgba(255,255,255,.28); padding:12px 2px; font-family:var(--body); font-weight:300; font-size:16px; color:var(--white); resize:none; }
.bform__form select{ appearance:none; cursor:pointer; }
.bform__form option{ background:var(--ink); }
.bform__form input::placeholder, .bform__form textarea::placeholder{ color:rgba(255,255,255,.35); }
.bform__form input:focus, .bform__form textarea:focus, .bform__form select:focus{ outline:none; border-bottom-color:var(--white); }

/* ---------- LIST page ---------- */
.listpage{ min-height:86vh; display:flex; align-items:center; justify-content:center; text-align:center; background:var(--ink); padding:clamp(140px,20vh,220px) clamp(20px,4vw,52px) clamp(80px,12vw,140px); }
.listpage__inner{ max-width:760px; }
.listpage__title{ font-family:var(--disp); font-weight:400; text-transform:uppercase; font-size:clamp(56px,12vw,170px); line-height:.82; margin:18px 0 0; }
.listpage__sub{ font-family:var(--body); font-weight:300; font-size:clamp(16px,2vw,20px); margin-top:24px; opacity:.78; max-width:44ch; margin-left:auto; margin-right:auto; }
.listpage__form{ display:flex; gap:12px; max-width:520px; margin:40px auto 0; }
.listpage__form input{ flex:1; background:transparent; border:1px solid rgba(255,255,255,.3); padding:16px 18px; font-family:var(--body); font-size:15px; color:var(--white); border-radius:2px; }
.listpage__form input::placeholder{ color:rgba(255,255,255,.4); }
.listpage__form input:focus{ outline:none; border-color:var(--white); }
.listpage__perks{ display:flex; gap:26px; justify-content:center; flex-wrap:wrap; margin-top:34px; font-family:var(--body); font-weight:500; font-size:11px; text-transform:uppercase; letter-spacing:.16em; color:var(--grey); }
.listpage__perks .cross{ color:var(--white); margin-right:6px; }

/* ---------- responsive additions ---------- */
@media (max-width:860px){
  .feature{ grid-template-columns:1fr; }
  .feature__media img{ aspect-ratio:4/5; }
  .pdp{ grid-template-columns:1fr; }
  .wardrobe__grid{ grid-template-columns:repeat(2,1fr); }
  .setrow{ grid-template-columns:1fr; }
  .setrow--rev .setrow__media{ order:0; }
  .setrow__media{ min-height:48vh; }
  .btypes{ grid-template-columns:1fr 1fr; }
  .btype:nth-child(3), .btype:nth-child(4){ border-top:1px solid rgba(255,255,255,.14); }
  .btype:nth-child(3){ border-left:none; }
  .bform__grid{ grid-template-columns:1fr; gap:44px; }
}
@media (max-width:520px){
  .wardrobe__grid{ grid-template-columns:1fr; }
  .btypes{ grid-template-columns:1fr; }
  .btype{ border-left:none; border-top:1px solid rgba(255,255,255,.14); }
  .btype:first-child{ border-top:none; }
  .bform__two{ grid-template-columns:1fr; }
  .listpage__form{ flex-direction:column; }
  .venues__list li span{ font-size:26px; }
}

/* ============================================================
   V2 ELEVATION — award-tier layer
   ============================================================ */

/* Archivo needs heavier weights to carry display like Anton did */
.nav__logo, .hero__word, .world__title, .book__title, .shop__title, .list__title,
.phead__title, .feature__title, .pdp__name, .pdp__price, .wardrobe__title,
.crossell__inner h2, .setrow__body h2, .setrow__no, .venues__title, .venues__list li span,
.btype__no, .bform__left h2, .listpage__title, .foot__logo, .ticker__track span,
.product__price, .card__price, .world__no{ font-weight:900 !important; letter-spacing:.005em; }

/* ---------- LOGO images ---------- */
.nav__logo img{ height:20px; width:auto; display:block; transition:height .5s var(--ease); }
.nav.is-stuck .nav__logo img{ height:17px; }
.foot__logo img{ height:clamp(30px,5vw,64px); width:auto; }
.hero__logo{ margin:0; line-height:0; }
.hero__logo img{ width:min(680px,86vw); height:auto; filter:drop-shadow(0 10px 40px rgba(0,0,0,.6)); }

/* ---------- INTRO LOADER (home only) ---------- */
.loader{
  position:fixed; inset:0; z-index:10000; background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  transition:transform .7s var(--wipe) .55s;
}
.loader.done{ transform:translateY(-100%); }
.loader img{ width:min(460px,70vw); animation:loaderIn .8s var(--ease) forwards; }
@keyframes loaderIn{ from{ transform:scale(1.9); opacity:0; filter:blur(8px); } to{ transform:scale(1); opacity:1; filter:blur(0);} }

/* ---------- CUSTOM CURSOR ---------- */
@media (hover:hover) and (pointer:fine){
  body{ cursor:none; }
  a, button, input, textarea, select, .media-card, .player__wave{ cursor:none; }
}
.c-dot, .c-ring{ position:fixed; top:0; left:0; z-index:9999; pointer-events:none; border-radius:50%;
  transform:translate(-50%,-50%); mix-blend-mode:difference; }
.c-dot{ width:6px; height:6px; background:var(--bone); }
.c-ring{ width:34px; height:34px; border:1px solid rgba(245,240,232,.7); z-index:9998;
  transition:width .28s var(--ease), height .28s var(--ease), border-color .28s, background .28s; }
body.cur-hover .c-ring{ width:54px; height:54px; border-color:var(--bone); }
body.cur-media .c-ring{ width:76px; height:76px; background:rgba(245,240,232,.08); }
body.cur-media .c-ring::after{ content:"PLAY"; font-family:var(--body); font-size:9px; letter-spacing:.22em; color:var(--bone); }
.c-ring::after{ display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
@media (hover:none){ .c-dot,.c-ring{ display:none; } }

/* ---------- PAGE WIPE (Firefox / no-VTA fallback) ---------- */
.page-wipe{ position:fixed; inset:0; z-index:9700; background:var(--ink); pointer-events:none;
  transform:translateY(100%); }
.page-wipe.entering{ animation:wipeIn .42s var(--wipe) forwards; }
.page-wipe.leaving{ animation:wipeOut .5s var(--wipe) forwards; }
@keyframes wipeIn{ from{ transform:translateY(100%);} to{ transform:translateY(0);} }
@keyframes wipeOut{ from{ transform:translateY(0);} to{ transform:translateY(-100%);} }

/* Native cross-document View Transitions */
@media (prefers-reduced-motion:no-preference){
  ::view-transition-old(root){ animation:.42s var(--wipe) both vtOut; }
  ::view-transition-new(root){ animation:.42s var(--wipe) both vtIn; }
}
@keyframes vtOut{ to{ opacity:0; transform:translateY(-14px); } }
@keyframes vtIn{ from{ opacity:0; transform:translateY(16px); } }

/* ---------- ANIMATED GRAIN (upgrade) ---------- */
.grain{
  opacity:.045;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:220px 220px; animation:grainShift .16s steps(1) infinite;
}
@keyframes grainShift{ 0%{background-position:0 0}25%{background-position:-44px -32px}50%{background-position:36px -60px}75%{background-position:-22px 44px} }

/* ---------- PERSISTENT WAVEFORM PLAYER ---------- */
.player{ position:fixed; left:0; right:0; bottom:0; z-index:8500; height:52px;
  display:flex; align-items:center; gap:16px; padding:0 clamp(16px,3vw,32px);
  background:rgba(10,10,10,.86); -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
  border-top:1px solid rgba(245,240,232,.18); transform:translateY(100%); transition:transform .6s var(--ease); }
.player.up{ transform:translateY(0); }
.player__toggle{ flex:0 0 auto; width:30px; height:30px; border:1px solid rgba(245,240,232,.5); background:transparent;
  color:var(--bone); border-radius:50%; font-size:11px; display:flex; align-items:center; justify-content:center; transition:all .3s var(--ease); }
.player__toggle:hover{ background:var(--bone); color:var(--ink); }
.player__title{ flex:0 0 auto; font-family:var(--body); font-weight:500; font-size:10px; text-transform:uppercase; letter-spacing:.22em; color:var(--bone); white-space:nowrap; }
.player__title b{ color:var(--grey); font-weight:500; }
/* small oscilloscope — the "vibration" */
.player__wave{ flex:0 0 58px; width:58px; height:26px; opacity:.9; }
/* seek bar takes the rest — click / drag to choose the second */
.player__seek{ flex:1 1 auto; position:relative; align-self:stretch; cursor:pointer; touch-action:none; }
.player__seek::before{ content:""; position:absolute; left:0; right:0; top:50%; height:2px; transform:translateY(-50%); background:rgba(245,240,232,.22); }
.player__fill{ position:absolute; left:0; top:50%; height:2px; width:0; transform:translateY(-50%); background:var(--bone); }
.player__fill::after{ content:""; position:absolute; right:0; top:50%; width:9px; height:9px; border-radius:50%; background:var(--bone); transform:translate(50%,-50%); box-shadow:0 0 8px rgba(245,240,232,.5); }
.player__seek:hover .player__fill{ background:var(--white); }
.player__time{ flex:0 0 auto; font-family:var(--body); font-size:10px; letter-spacing:.14em; color:var(--grey); font-variant-numeric:tabular-nums; min-width:34px; text-align:right; }
@media (max-width:560px){ .player__title{ display:none; } }

/* hero oscilloscope */
.hero__wave{ position:relative; z-index:2; width:min(680px,86vw); height:60px; margin-top:20px; opacity:.9; }

/* ---------- KINETIC LINE REVEAL ---------- */
.lines{ }
.line{ display:block; overflow:hidden; }
.line > span{ display:block; transform:translateY(110%); transition:transform .8s var(--ease); }
.line.in > span{ transform:translateY(0); }

/* chrome shimmer sweep on hover of hero tagline chrome */
.chrome{ background-size:100% 100%; }

/* view-transition names */
.nav__logo img{ view-transition-name:brandmark; }

/* native cross-document View Transitions opt-in */
@media (prefers-reduced-motion:no-preference){ @view-transition{ navigation:auto; } }

/* ---------- MOVEMENT manifesto ---------- */
.movement{ background:var(--ink); color:var(--white); padding:clamp(80px,13vw,180px) clamp(20px,4vw,52px); }
.movement__inner{ max-width:var(--wrap); margin:0 auto; }
.movement__title{ font-family:var(--disp); font-weight:900; text-transform:uppercase;
  font-size:clamp(48px,9.5vw,155px); line-height:.82; letter-spacing:.005em; margin:18px 0 clamp(34px,5vw,64px); }
.movement__title em{ font-style:normal; text-transform:none; color:var(--bone); }
.movement__body{ display:grid; grid-template-columns:.82fr 1.18fr; gap:clamp(30px,5vw,72px); align-items:center; }
.movement__img{ overflow:hidden; }
.movement__img img{ width:100%; aspect-ratio:4/5; object-fit:cover; filter:grayscale(1) contrast(1.06);
  transition:transform 1.3s var(--ease), filter .8s; }
.movement__img:hover img{ transform:scale(1.04); filter:grayscale(0) contrast(1); }
.movement__cols{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,3vw,48px); }
.movement__cols p{ font-family:var(--body); font-weight:300; font-size:clamp(15px,1.5vw,19px); line-height:1.62;
  color:rgba(245,240,232,.82); border-top:1px solid rgba(245,240,232,.16); padding-top:20px; }
@media (max-width:860px){ .movement__body{ grid-template-columns:1fr; } .movement__img img{ aspect-ratio:16/10; } }
@media (max-width:560px){ .movement__cols{ grid-template-columns:1fr; } }
