/* ===== ZHESTAR — Drop preview ===== */

:root{
  --black: #14110d;
  --black-soft: #1c1712;
  --panel: #1f1a14;
  --line: rgba(255,255,255,.1);
  --cream: #f2efe6;
  --grey: #a8a69c;
  --lime: #a8b356;
  --lime-dim: #7c8646;
  --pink: #d99aa6;
  --sand: #cdb89a;

  --paper: #f3f1ea;
  --paper-2: #ffffff;
  --ink: #14130f;
  --ink-grey: #706e64;
  --ink-line: rgba(20,19,15,.14);

  --f-display: 'Roboto Condensed', sans-serif;
  --f-head: 'Roboto Condensed', sans-serif;
  --f-body: 'Roboto Condensed', sans-serif;
  --f-serif: 'Cormorant Garamond', serif;

  --container: 1180px;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  background: var(--black);
  color: var(--cream);
  font-family: var(--f-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img{ display:block; max-width:100%; }

a{ color:inherit; text-decoration:none; }

section{ position: relative; }

::selection{ background: var(--lime); color:#0a0a09; }

/* scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--black); }
::-webkit-scrollbar-thumb{ background:#2a2a22; border-radius:10px; }

/* ===== Loader ===== */
.loader{
  position:fixed; inset:0; z-index:999;
  background:var(--black);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.done{ opacity:0; visibility:hidden; }
.loader-mark{
  width: 56px; height: 60px;
  object-fit: contain;
  animation: pulseScale 1.1s ease-in-out infinite;
}
@keyframes pulseScale{
  0%,100%{ transform:scale(1); opacity:.7; }
  50%{ transform:scale(1.15); opacity:1; }
}

/* ===== Nav ===== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding: 7px clamp(20px, 5vw, 64px);
  background: var(--black);
  border-bottom: 1px solid var(--line);
}
.nav-actions{ justify-self:end; display:flex; gap:28px; }
.nav-actions a{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  transition: color .25s ease;
}
.nav-actions a:hover{ color: var(--cream); }
.logo-icon{
  width: 18px; height: 19px;
  object-fit: contain;
  margin-right: 9px;
  flex-shrink: 0;
  vertical-align: -3px;
}

.nav-logo{
  display:flex; align-items:center;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--cream);
}
.nav-logo .dot{ color: var(--lime); }
.nav-links{
  display:flex; gap:36px;
  transition: opacity .2s ease, visibility .2s ease;
}
.nav-links.hidden-by-search{ opacity:0; visibility:hidden; pointer-events:none; }

.search-bar{
  position:absolute; top:100%; right: clamp(20px, 5vw, 64px); left:auto;
  display:flex; align-items:center;
  width: min(360px, 92vw);
  max-height:0; overflow:hidden;
  opacity:0;
  background: var(--black);
  border: 1px solid var(--line); border-top:none;
  padding: 0 18px;
  transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
}
.search-bar.open{
  max-height:70px;
  opacity:1;
  padding: 16px 18px;
}
.search-bar input{
  flex:1;
  background:none; border:none; border-bottom:1px solid var(--line);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: .3px;
  padding: 6px 0;
  outline:none;
}
.search-bar input::placeholder{ color: var(--grey); }
.search-bar input:focus{ border-bottom-color: var(--lime); }
.search-close{
  background:none; border:none; color: var(--grey);
  font-size: 22px; line-height:1; cursor:pointer;
  margin-left: 14px; padding: 0 4px;
  transition: color .2s ease;
}
.search-close:hover{ color: var(--lime); }

@media (max-width: 900px){
  .search-bar{ right: 20px; width: min(300px, 88vw); }
}
.nav-links a{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  position:relative;
  padding-bottom:4px;
  transition: color .25s ease;
}
.nav-links a:hover{ color: var(--cream); }
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0;
  width:0; height:1px; background:var(--lime);
  transition: width .25s ease;
}
.nav-links a:hover::after{ width:100%; }

.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--lime);
  color:#0a0a09;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(168,179,86,.5);
  transition: background .25s ease, box-shadow .3s ease, transform .25s ease, letter-spacing .25s ease;
}
.nav-cta i{
  font-style:normal;
  display:inline-block;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.nav-cta:hover{
  background:#dcf05a;
  letter-spacing: 2px;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px -2px rgba(168,179,86,.55);
}
.nav-cta:hover i{ transform: translateX(3px); }
.nav-cta:active{ transform: translateY(0); }

.nav-burger{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:8px;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span{
  width:22px; height:2px; background:var(--cream); display:block;
}
.nav-icons{
  display:none;
  align-items:center; gap:18px;
}
.nav-icons a{
  color: var(--cream);
  -webkit-tap-highlight-color: transparent;
}
.nav-icons svg{ width:21px; height:21px; display:block; }

.mobile-menu{
  position:fixed; inset:0; height:100svh;
  background: var(--black);
  z-index:250;
  display:flex; flex-direction:column;
  padding: 24px 28px 40px;
  opacity:0; visibility:hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.open{ opacity:1; visibility:visible; }
.mobile-menu-close{
  align-self:flex-end;
  background:none; border:none; color: var(--cream);
  font-size: 34px; line-height:1; cursor:pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-main{
  display:flex; flex-direction:column;
  margin-top: 40px;
}
.mobile-menu-main a{
  display:flex; align-items:center; justify-content:space-between;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-main a i{ font-style:normal; color: var(--grey); font-size: 26px; }
.mobile-menu-secondary{
  display:flex; flex-direction:column; gap:20px;
  margin-top: auto;
}
.mobile-menu-secondary a{
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
}

/* ===== Single-image hero ===== */
.hero-single{
  position:relative;
  height: 100svh;
  overflow:hidden;
}
.hero-single-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position: center top;
  transform: scale(1.25) translateY(-6%);
  filter: grayscale(1) contrast(1.04) brightness(1) blur(.3px);
}
.hero-single-tint{
  position:absolute; inset:0;
  background: #4a3826;
  mix-blend-mode: color;
  opacity: .85;
}
.hero-single-grain{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%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)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .5;
}
.hero-single-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(140% 100% at 50% 45%, transparent 35%, rgba(15,12,9,.75) 100%),
    linear-gradient(to top, rgba(15,12,9,.75) 0%, rgba(15,12,9,.1) 32%, transparent 55%);
}
.hero-single-headline{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  z-index:3;
  font-family: 'Reenie Beanie', cursive;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 110px);
  line-height: 1;
  letter-spacing: .5px;
  text-align:center;
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  transition: color .2s ease, transform .15s cubic-bezier(.34,1.56,.64,1);
}
@media (hover: hover) and (pointer: fine){
  .hero-single-headline:hover{
    color: var(--lime);
    transform: translate(-50%,-50%) scale(1.03);
  }
}
.hero-single-headline:active{
  color: var(--lime);
  transform: translate(-50%,-50%) scale(.94) rotate(-1deg);
}

/* ===== Split hero — Represent-style dual panel ===== */
.split-hero{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  height: 100svh;
}
.split-shop-btn{
  position:absolute; left:50%; bottom: clamp(30px,6vw,64px); transform: translateX(-50%);
  z-index:5;
  background: var(--cream); color:#0a0a09;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 44px;
  white-space:nowrap;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  transition: background .2s ease, transform .15s cubic-bezier(.34,1.56,.64,1);
}
.split-shop-btn:hover{ background: var(--lime); transform: translateX(-50%) translateY(-2px); }
.split-shop-btn:active{ background: var(--lime); transform: translateX(-50%) scale(.95); }
.split-panel{
  position:relative;
  display:block;
  overflow:hidden;
  background: var(--black-soft);
}
.split-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(.25) contrast(1.05) brightness(.85);
}
.split-overlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(10,10,9,.9) 0%, rgba(10,10,9,.35) 45%, rgba(10,10,9,.15) 100%);
}
.split-content{
  position:absolute; left: clamp(20px,4vw,48px); bottom: clamp(110px,14vw,150px);
  z-index:2;
}
.split-content-right{
  left:auto; right: clamp(20px,4vw,48px);
  text-align:right;
}
.split-eyebrow{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}
.split-title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 0;
}
.split-ctas{ display:flex; gap:10px; }
.btn-primary-sm, .btn-ghost-sm{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-primary-sm{ background: var(--lime); color:#0a0a09; }
.btn-ghost-sm{ border:1px solid rgba(242,239,230,.4); color: var(--cream); }
.split-panel:hover .btn-primary-sm{ background:#dcf05a; }
.split-panel:hover .btn-ghost-sm{ border-color: var(--lime); color: var(--lime); }

/* ===== Hero strip — copy, countdown, CTAs ===== */
.hero-strip{
  min-height: 92svh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 140px 20px 80px;
  overflow:hidden;
  position:relative;
}
.hero-glow{
  position:absolute; inset:0;
  background:
    radial-gradient(60% 55% at 18% 30%, rgba(168,179,86,.16), transparent 70%),
    radial-gradient(50% 45% at 85% 75%, rgba(168,179,86,.07), transparent 70%);
  filter: blur(10px);
  pointer-events:none;
}
.hero-watermark{
  position:absolute;
  top:50%; left:50%;
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  transform: translate(-50%,-52%);
  color: var(--cream);
  fill: currentColor;
  opacity: .06;
  pointer-events:none;
  z-index:1;
}
.hero-grain{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events:none;
}

.hero-eyebrow{
  position:relative; z-index:2;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  display:flex; align-items:center; gap:10px;
  margin-bottom: 28px;
}
.pulse-dot{
  width:7px; height:7px; border-radius:50%; background:var(--lime);
  box-shadow:0 0 0 0 rgba(201,224,46,.6);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot{
  0%{ box-shadow:0 0 0 0 rgba(201,224,46,.55); }
  70%{ box-shadow:0 0 0 10px rgba(201,224,46,0); }
  100%{ box-shadow:0 0 0 0 rgba(201,224,46,0); }
}

.hero-title{
  position:relative; z-index:2;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 10.5vw, 130px);
  line-height: .95;
  letter-spacing: 0px;
  color: var(--cream);
}
.hero-co{ color: var(--lime); font-size: .5em; vertical-align: super; }

.hero-tagline{
  position:relative; z-index:2;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 22px;
  line-height:1.6;
}

/* Editorial serif accents — luxury x sport contrast */
.hero-serif{
  position:relative; z-index:2;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--sand);
  margin-top: 14px;
  letter-spacing: .2px;
}
.section-serif{ margin: 10px auto 0; }
.story-serif{ margin: 4px 0 20px; color: var(--sand); }
.notify-serif{ margin: 0 auto 18px; color: var(--sand); }

.hero-scarcity{
  position:relative; z-index:2;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b6a62;
  margin-top: 18px;
}

.countdown{
  position:relative; z-index:2;
  display:flex; align-items:center; gap: clamp(10px,2vw,20px);
  margin-top: 44px;
}
.cd-block{ display:flex; flex-direction:column; align-items:center; min-width:56px; }
.cd-num{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px,5vw,42px);
  color: var(--cream);
  line-height:1;
}
.cd-label{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top:6px;
}
.cd-sep{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px,4vw,32px);
  color: var(--lime-dim);
  transform: translateY(-8px);
}

.countdown-strip{
  position:relative;
  background: var(--paper);
  padding: 30px 20px;
  display:flex; align-items:center; justify-content:center;
}
.countdown-scribble{
  display:flex; align-items:baseline; gap: clamp(10px,2.2vw,24px);
}
.countdown-scribble .cd-block{ display:flex; flex-direction:column; align-items:center; min-width:0; }
.countdown-scribble .cd-num{
  font-family: 'Reenie Beanie', cursive;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 92px);
  line-height: .8;
  color: var(--ink);
}
.countdown-scribble .cd-label{
  font-family: 'Reenie Beanie', cursive;
  font-size: clamp(16px, 2.4vw, 26px);
  letter-spacing: .5px;
  text-transform: lowercase;
  color: var(--ink-grey);
  margin-top: 2px;
}
.countdown-scribble .cd-sep{
  font-family: 'Reenie Beanie', cursive;
  font-size: clamp(30px, 5.5vw, 68px);
  color: #8a9a3f;
  transform: translateY(-6px);
}

.hero-ctas{
  position:relative; z-index:2;
  display:flex; gap:16px; flex-wrap:wrap; justify-content:center;
  margin-top: 44px;
}

.btn{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 999px;
  display:inline-block;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-primary{
  background: var(--lime); color:#0a0a09; border:1px solid var(--lime);
}
.btn-primary:hover{ transform: translateY(-2px); background:#dcf05a; }
.btn-ghost{
  border:1px solid var(--line); color: var(--cream);
}
.btn-ghost:hover{ border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  z-index:2;
}
.scroll-cue span{
  display:block; width:1px; height:44px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown{
  0%{ transform: scaleY(0); transform-origin: top; opacity:0; }
  40%{ transform: scaleY(1); transform-origin: top; opacity:1; }
  60%{ transform: scaleY(1); transform-origin: bottom; opacity:1; }
  100%{ transform: scaleY(0); transform-origin: bottom; opacity:0; }
}

/* ===== Marquee ===== */
.marquee{
  background: var(--black-soft);
  color: var(--lime);
  padding: 14px 0;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.marquee-track{
  display:flex; align-items:center; gap:28px;
  width:max-content;
  white-space:nowrap;
  animation: marqueeScroll 26s linear infinite;
  font-family: var(--f-head);
  font-weight: 600;
  font-weight:600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.marquee-track .star{ font-size:12px; }
@keyframes marqueeScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ===== Section shared ===== */
.section-head{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,64px);
  text-align:center;
  margin-bottom: 56px;
}
.section-kicker{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 12px;
}
.section-kicker.light{ color: var(--lime); }
.section-title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 1px;
}
.section-desc{
  font-size: 15px;
  color: var(--grey);
  max-width: 460px;
  margin: 14px auto 0;
  line-height:1.6;
}

/* ===== Drop grid ===== */
.drop{ padding: 120px 0 100px; }

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 4px clamp(20px,5vw,64px) 20px;
}

.card{
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow:hidden;
  transition: transform .35s ease, border-color .35s ease, opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  opacity:0;
  transform: translate(var(--dx,0px), var(--dy,0px)) scale(.2) rotate(-6deg);
}
.grid.in-view .card{
  opacity:1;
  transform: translate(0,0) scale(1) rotate(0deg);
  transition-delay: calc(var(--i,0) * 90ms);
}
.grid.in-view .card:hover{ transform: translateY(-6px) scale(1); border-color: rgba(201,224,46,.4); }

.shop-link{
  display:block;
  width:100%;
  background:none;
  border:none;
  cursor:pointer;
  text-align:center;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 30px;
  transition: opacity .2s ease;
}
.shop-link:hover{ opacity:.7; }

/* ===== Notify-me CTA button ===== */
.notify-cta-wrap{
  display:flex; justify-content:center;
  margin-top: 46px;
  padding: 0 20px;
}
.notify-cta-btn{
  position:relative;
  display:inline-flex; align-items:center; gap:12px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 17px 34px;
  cursor:pointer;
  transition: background .3s ease, color .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.notify-cta-zip{
  width:16px; height:16px;
  flex-shrink:0;
  transition: transform .3s ease;
}
.notify-cta-btn:hover{
  background: var(--ink);
  color: var(--paper-2);
  transform: translateY(-2px);
}
.notify-cta-btn:hover .notify-cta-zip{ transform: translateY(2px); }
.notify-cta-btn:active{ transform: translateY(0) scale(.98); }

/* ===== Notify-me modal — unzip jacket interaction ===== */
.modal-overlay{
  position:fixed; inset:0; z-index:1000;
  display:flex; align-items:center; justify-content:center;
  padding: 20px;
  background: rgba(8,7,5,.78);
  backdrop-filter: blur(6px);
  opacity:0; visibility:hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.modal-overlay.open{ opacity:1; visibility:visible; }

.modal-close{
  position:absolute; top:22px; right:22px; z-index:20;
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(242,239,230,.3);
  background: rgba(20,19,15,.5);
  color: var(--cream);
  font-size:22px; line-height:1;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.modal-close:hover{ border-color: var(--lime); color: var(--lime); transform: rotate(90deg); }

.zip-stage{
  position:relative;
  width: min(460px, 92vw);
  aspect-ratio: 1402 / 1122;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.zip-form-panel{
  position:absolute; inset:0; z-index:1;
  background: var(--panel);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 34px 30px;
}
.zip-form-panel .modal-kicker{ position:relative; }
.zip-form-panel .modal-title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 28px);
  line-height: 1.15;
  margin: 12px 0 12px;
}
.zip-form-panel .modal-desc{
  color: var(--grey);
  font-size: 13.5px;
  line-height:1.6;
  max-width: 320px;
  margin: 0 auto 22px;
}
.modal-form{
  width:100%; max-width: 320px;
  display:flex; flex-direction:column; gap:10px;
}
.modal-form input{
  font-family: var(--f-body);
  font-size: 14px;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 15px 20px;
  border-radius: 999px;
  outline:none;
  text-align:center;
  transition: border-color .25s ease;
}
.modal-form input:focus{ border-color: var(--lime); }
.modal-form input::placeholder{ color:#6b6a62; }
.modal-form .btn{ border:none; cursor:pointer; width:100%; }
.modal-form .btn:disabled{ opacity:.6; cursor:default; transform:none; }
.modal-msg{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .5px;
  margin-top: 16px;
  display:none;
}
.modal-msg.show{ display:block; }
.modal-success{ color: var(--lime); }
.modal-error{ color: #d97a7a; }

.zip-half{
  position:absolute; inset:0; z-index:2;
  transition: transform .7s cubic-bezier(.6,-0.05,.2,1);
}
.zip-half img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  display:block;
}
.zip-left{
  clip-path: inset(0 50% 0 0);
  transform-origin: 92% center;
  box-shadow: 6px 0 24px rgba(0,0,0,.35);
}
.zip-right{
  clip-path: inset(0 0 0 50%);
  transform-origin: 8% center;
  box-shadow: -6px 0 24px rgba(0,0,0,.35);
}
.modal-overlay.open .zip-left{
  transform: translateX(-42%) rotate(-6deg);
  transition-delay: .5s;
}
.modal-overlay.open .zip-right{
  transform: translateX(42%) rotate(6deg);
  transition-delay: .5s;
}

.zip-pull{
  position:absolute; left:50%; top:6%;
  z-index:3;
  width:14px; height:26px;
  margin-left:-7px;
  transition: top .5s cubic-bezier(.4,0,.2,1), opacity .3s ease .95s;
}
.zip-pull span{
  display:block; width:100%; height:100%;
  background: linear-gradient(180deg,#d8d8d0,#8a8a82);
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,.5);
}
.zip-pull::before{
  content:'';
  position:absolute; left:50%; top:-6px;
  width:8px; height:8px; margin-left:-4px;
  border-radius:50%;
  background:#c9c9c0;
  box-shadow: 0 2px 4px rgba(0,0,0,.4);
}
.modal-overlay.open .zip-pull{
  top: 88%;
  opacity: 0;
}

.card-media{
  position:relative;
  aspect-ratio: 1/1;
  background: #e7e4da;
  overflow:hidden;
}
.card-media img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  transition: opacity .5s ease, transform .6s ease;
}
.img-back{ opacity:0; }
.card:hover .img-front{ opacity:0; transform:scale(1.04); }
.card:hover .img-back{ opacity:1; transform:scale(1.04); }

.card-badge{
  position:absolute; top:14px; left:14px; z-index:3;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(10,10,9,.85);
  color: var(--lime);
  padding: 7px 12px;
  border-radius: 999px;
  border:1px solid rgba(201,224,46,.3);
}

.card-info{ padding: 18px 20px 22px; }
.card-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.card-row h3{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15px;
  font-weight:500;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.card-price{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--lime);
}
.card-color{
  font-size: 13px;
  color: var(--grey);
  margin-top: 6px;
}

.card-swatches{ display:flex; align-items:center; gap:8px; margin-top: 12px; }
.swatch{
  width: 13px; height: 13px; border-radius:50%;
  background: var(--sw);
  box-shadow: 0 0 0 2px var(--panel), 0 0 0 3px rgba(255,255,255,.3);
}
.swatch-label{ font-size: 12px; color: #6b6a62; }

.card-add{
  position:absolute; right:14px; bottom:14px; z-index:3;
  width: 34px; height: 34px; border-radius:50%;
  background: var(--cream); color:#0a0a09;
  border:none; font-size: 20px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  opacity:0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.card:hover .card-add{ opacity:1; transform: translateY(0); }
.card-add:hover{ background: var(--lime); }
.card-add.added{ background: var(--lime); }
@media (hover:none){
  .card-add{ opacity:1; transform:none; }
}

.card-soon{
  position:absolute; inset:0; z-index:4;
  display:flex; align-items:center; justify-content:center;
  background: rgba(10,10,9,.55);
  opacity:0;
  pointer-events:none;
  transition: opacity .3s ease;
}
.card:hover .card-soon{ opacity:1; }
.card-soon span{
  font-family: 'Reenie Beanie', cursive;
  font-size: 44px;
  color: var(--lime);
  border: 2px solid var(--lime);
  padding: 4px 22px 8px;
  border-radius: 6px;
  transform: rotate(-8deg) scale(.85);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card:hover .card-soon span{ transform: rotate(-8deg) scale(1); }

.card-more{
  display:flex; align-items:center; justify-content:center;
  border-style: dashed;
  border-color: rgba(255,255,255,.18);
  min-height: 100%;
}
.card-more-inner{ text-align:center; padding: 40px 20px; }
.card-more-star{
  display:block; font-size: 28px; color: var(--lime); margin-bottom: 14px;
}
.card-more h3{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height:1.3;
}
.card-more p{
  color: var(--grey);
  font-size: 13px;
  margin-top: 10px;
}

/* ===== Story v2 — full-bleed image + centered editorial content ===== */
.story-v2{
  background: var(--black-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding-bottom: 90px;
}
.story-v2-media{
  position:relative;
  height: min(62vh, 640px);
  width: auto;
  max-width: 92vw;
  aspect-ratio: 1536/2048;
  margin: 0 auto;
  overflow:hidden;
  background:#000;
}
.story-v2-media img{
  width:100%; height:100%; object-fit:contain;
  filter: grayscale(.15) contrast(1.05);
}
.story-v2-media::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(to bottom, transparent 82%, var(--black-soft));
}
.story-v2-content{
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 24px 0;
  text-align:center;
}
.story-v2-quote{
  font-family: 'Reenie Beanie', cursive;
  font-weight: 400;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 1.02;
  margin: 12px 0 18px;
}
.story-v2-serif{ margin: 0 0 26px; }
.story-v2-text{
  color: var(--grey);
  font-size: 15px;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 36px;
}
.story-v2-close{ margin-top: -6px; }

.story-rhythm{
  list-style:none;
  max-width: 480px;
  margin: 0 auto 40px;
  display:flex;
  flex-direction:column;
  gap: 9px;
}
.story-rhythm li{
  font-family: var(--f-head);
  color: var(--grey);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: .2px;
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.story-rhythm.visible li{ opacity:1; transform:translateY(0); }
.story-rhythm li:nth-child(1){ transition-delay: .05s; }
.story-rhythm li:nth-child(2){ transition-delay: .2s; font-size:16px; }
.story-rhythm li:nth-child(3){ transition-delay: .35s; font-size:17.5px; font-weight:600; color: var(--cream); }
.story-rhythm li:nth-child(4){ transition-delay: .5s; font-size:19px; font-weight:700; color: var(--cream); }
.story-rhythm li:nth-child(5){ transition-delay: .65s; font-size:23px; font-weight:800; color: var(--lime); letter-spacing:.3px; }

.section-light .story-rhythm li:nth-child(1),
.section-light .story-rhythm li:nth-child(2){ color: var(--ink-grey); }
.section-light .story-rhythm li:nth-child(3),
.section-light .story-rhythm li:nth-child(4){ color: var(--ink); }
.section-light .story-rhythm li:nth-child(5){ color: var(--lime-dim); }

@media (max-width: 700px){
  .story-v2-media{ max-height: 46vh; }
}

/* ===== Values ===== */
.values{ padding: 110px 0 100px; text-align:center; }
.values > .section-kicker{ margin-bottom: 40px; }
.values-grid{
  max-width: var(--container);
  margin: 0 auto 70px;
  padding: 0 clamp(20px,5vw,64px);
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}
.value{
  border-top: 1px solid var(--line);
  padding-top: 22px;
  text-align:left;
}
.value-num{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--lime);
  letter-spacing: 1px;
}
.value h3{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 14px 0 10px;
}
.value p{ color: var(--grey); font-size: 14px; line-height:1.7; }

.values-tagline{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: clamp(14px,2vw,18px);
  letter-spacing: 3px;
  color: var(--lime);
  text-transform: uppercase;
}

/* ===== Notify ===== */
.notify{
  padding: 130px 20px;
  text-align:center;
  background: var(--panel);
  border-top:1px solid var(--line);
  overflow:hidden;
}
.notify-glow{
  position:absolute; inset:0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(168,179,86,.10), transparent 70%);
  pointer-events:none;
}
.notify-title{
  position:relative; z-index:2;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  margin: 16px 0 18px;
}
.notify-desc{
  position:relative; z-index:2;
  color: var(--grey);
  max-width: 440px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height:1.6;
}
.notify-form{
  position:relative; z-index:2;
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
}
.notify-form input{
  font-family: var(--f-body);
  font-size: 14px;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 16px 22px;
  border-radius: 999px;
  min-width: 280px;
  outline:none;
  transition: border-color .25s ease;
}
.notify-form input:focus{ border-color: var(--lime); }
.notify-form input::placeholder{ color:#6b6a62; }
.notify-form .btn{ border:none; cursor:pointer; }

.notify-success{
  position:relative; z-index:2;
  margin-top: 20px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--lime);
  opacity:0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}
.notify-success.show{ opacity:1; transform:translateY(0); }

/* ===== Footer ===== */
.footer{
  padding: 70px clamp(20px,5vw,64px) 30px;
  border-top: 1px solid var(--line);
}
.footer-top{
  max-width: var(--container);
  margin: 0 auto;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:50px;
  padding-bottom: 50px;
}
.footer-logo{
  display:flex; align-items:center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
}
.footer-logo .logo-icon{ width: 21px; height: 22px; }
.footer-logo .dot{ color: var(--lime); }
.footer-cols{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-col h4{
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}
.footer-col a{
  display:block;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 10px;
  opacity:.85;
  transition: opacity .2s ease, color .2s ease;
}
.footer-col a:hover{ opacity:1; color: var(--lime); }

.footer-bottom{
  max-width: var(--container);
  margin: 0 auto;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: #6b6a62;
}
.footer-credit a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.footer-credit a:hover{ color: var(--lime); }
.section-light .footer-credit a:hover{ color: var(--lime-dim); }

/* ===== Scroll reveal ===== */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible{ opacity:1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px){
  .nav-links, .nav-actions{ display:none; }
  .nav-burger{ display:flex; justify-self:start; order:-1; }
  .nav-logo{ order:0; }
  .nav-icons{ display:flex; justify-self:end; order:1; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .split-hero{ grid-template-columns: 1fr; height: auto; }
  .split-panel{ height: 60svh; }
  .split-shop-btn{ bottom:auto; top: 60svh; transform: translate(-50%,-50%); }
  .split-shop-btn:hover{ transform: translate(-50%,-50%) translateY(-2px); }
  .split-content{ bottom: 24px; }
  .split-content-right{ bottom: 24px; }
  .hero-single-headline{
    top: 40%;
    font-size: clamp(52px, 15vw, 82px);
    max-width: 96vw;
  }
  .hero-single-headline:hover{ transform: translate(-50%,-50%); }
  .hero-single .split-shop-btn{ top:auto; bottom: 60px; transform: translateX(-50%); }
  .hero-single .split-shop-btn:hover{ transform: translateX(-50%) translateY(-2px); }
  .hero-single-img{
    object-position: center top;
    transform-origin: 50% 0%;
    transform: scale(1.65);
  }
  .values-grid{ grid-template-columns:1fr; gap:28px; }
}

@media (max-width: 900px){
  .countdown-strip{ padding: 20px 20px 14px; }
  .drop{ padding-top: 28px; }
}

@media (max-width: 560px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-top{ flex-direction:column; gap:32px; }
  .countdown{ gap:10px; }
  .cd-block{ min-width:46px; }
  .countdown-strip{ padding: 16px 20px 10px; }
  .drop{ padding-top: 20px; }
}

/* ===== Light sections — everything below the hero ===== */
.section-light{
  background: var(--paper);
  color: var(--ink);
}
.section-light .section-kicker{ color: var(--lime-dim); }
.section-light .section-title{ color: var(--ink); }
.section-light .section-desc{ color: var(--ink-grey); }
.section-light .hero-serif{ color: #8a6f3d; }

/* Marquee stays as the lime divider between dark hero and light body */

/* --- Product cards: square, editorial caption style --- */
.section-light .card{
  background: var(--paper-2);
  border: 1px solid var(--ink-line);
  border-radius: 0;
}
.section-light .card:hover{ border-color: var(--ink); transform: translateY(-4px); }
.section-light .card-badge{
  background: rgba(20,19,15,.86);
  color: var(--lime);
  border-color: rgba(255,255,255,.15);
}
.section-light .card-add{
  background: var(--ink); color:#fff;
}
.section-light .card-add:hover{ background: var(--lime); color: var(--ink); }

.section-light .card-info{ padding: 14px 16px 18px; }
.section-light .card-row{
  flex-direction: column; align-items:flex-start; gap:3px;
}
.section-light .card-row h3{
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: none;
  color: var(--ink);
}
.section-light .card-price{
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-grey);
}
.section-light .card-color{ font-size: 11px; color: var(--ink-grey); }
.section-light .swatch{ box-shadow: 0 0 0 2px var(--paper-2), 0 0 0 3px var(--ink-line); }
.section-light .swatch-label{ color: var(--ink-grey); }

.section-light .card-more{ border-color: var(--ink-line); }
.section-light .card-more h3{ color: var(--ink); }
.section-light .card-more p{ color: var(--ink-grey); }
.section-light .card-more-star{ color: var(--lime-dim); }

.section-light .shop-link{ color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; display:inline-block; margin-top: 30px; }
.section-light .shop-link:hover{ opacity: 1; color: var(--lime-dim); border-color: var(--lime-dim); }

/* --- Story --- */
.section-light.story-v2{ border-color: var(--ink-line); }
.section-light .story-v2-media::after{ background: linear-gradient(to bottom, transparent 82%, var(--paper)); }
.section-light .story-v2-quote{ color: var(--ink); }
.section-light .story-v2-text{ color: var(--ink-grey); }

/* --- Values --- */
.section-light .value{ border-top-color: var(--ink-line); }
.section-light .value h3{ color: var(--ink); }
.section-light .value p{ color: var(--ink-grey); }
.section-light .values-tagline{ color: #5f7028; }

/* --- Notify --- */
.section-light.notify{ border-top-color: var(--ink-line); }
.section-light .notify-glow{ background: radial-gradient(50% 60% at 50% 0%, rgba(168,179,86,.14), transparent 70%); }
.section-light .notify-title{ color: var(--ink); }
.section-light .notify-desc{ color: var(--ink-grey); }
.section-light .notify-form input{
  background: var(--paper-2);
  border-color: var(--ink-line);
  color: var(--ink);
}
.section-light .notify-form input::placeholder{ color: #a4a294; }
.section-light .notify-success{ color: #5f7028; }

/* --- Footer --- */
.section-light.footer{ border-top-color: var(--ink-line); }
.section-light .footer-logo{ color: var(--ink); }
.section-light .footer-col h4{ color: var(--ink-grey); }
.section-light .footer-col a{ color: var(--ink); }
.section-light .footer-col a:hover{ color: #5f7028; }
.section-light .footer-bottom{ border-top-color: var(--ink-line); color: #9e9c90; }
