/* ==========================================================================
   DK KREATION — Design System
   ========================================================================== */

:root{
  --pink:        #D85B89;
  --rose:        #C44775;
  --blush:       #F8E8EE;
  --powder:      #F2D6E1;
  --pink-50:     #FFF7FA;
  --plum:        #401523;
  --plum-2:      #501a2c;
  --cream:       #FFF9F6;
  --charcoal:    #171315;
  --white:       #FFFFFF;

  --ink:         #241118;
  --ink-soft:    #6b5560;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1360px;
  --gutter: clamp(24px, 5vw, 80px);

  --ease: cubic-bezier(.16,.8,.24,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,p{ margin: 0; }
svg{ display: block; }

.skip-link{
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--plum); color: var(--cream); padding: 14px 22px;
  font-family: var(--font-sans); font-size: 14px;
}
.skip-link:focus{ left: 16px; top: 16px; }

::selection{ background: var(--rose); color: var(--cream); }

/* Custom scrollbar (webkit) — subtle */
::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: var(--blush); }
::-webkit-scrollbar-thumb{ background: var(--rose); border-radius: 0; }

/* ==========================================================================
   Type scale & utility
   ========================================================================== */

.eyebrow{
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.eyebrow--light{ color: var(--powder); }

.section-title{
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.06;
  color: var(--plum);
  letter-spacing: -0.01em;
}
.section-title em{ font-style: italic; color: var(--rose); font-weight: 400; }

em{ font-style: italic; }

.script-accent{
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rose);
}

.signature-script{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--rose);
}

/* container */
.hero-content, .creations-head, .signature-caption,
.story-scroll, .lookbook-head,
.testimonials-head, .instagram-head, .instagram-grid,
.contact-inner, .footer-top, .footer-bottom, .nav-inner,
.hampers-head, .hampers-grid{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.creations-interactive{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* buttons */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .4s var(--ease);
}
.btn span{ position: relative; z-index: 1; }
.btn-primary{
  background: var(--plum);
  color: var(--cream);
}
.btn-primary:hover{ background: var(--rose); }
.btn-ghost{
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,247,250,.55);
}
.btn-ghost:hover{ background: rgba(255,247,250,.12); border-color: var(--cream); }
.btn-outline{
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-outline:hover{ background: var(--plum); color: var(--cream); }
.btn-lg{ padding: 22px 48px; font-size: 14px; }
.btn-nav{
  background: var(--plum);
  color: var(--cream);
  padding: 13px 26px;
  font-size: 11.5px;
}
.btn-nav:hover{ background: var(--rose); }

.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--plum);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(64,21,35,.25);
  position: relative;
}
.link-arrow i{ font-style: normal; transition: transform .5s var(--ease); }
.link-arrow::after{
  content:'';
  position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--rose);
  transition: width .5s var(--ease);
}
.link-arrow:hover::after{ width: 100%; }
.link-arrow:hover i{ transform: translateX(6px); }

/* reveal helpers (base state, JS toggles .is-in) */
.reveal-fade{ opacity: 0; transform: translateY(24px); }
.reveal-fade.is-in{ opacity: 1; transform: translateY(0); transition: opacity 1s var(--ease), transform 1s var(--ease); }

.reveal-line{ display: block; }
.reveal-line > *{ display: inline-block; }

/* ==========================================================================
   Custom cursor
   ========================================================================== */
.cursor{
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--rose);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal;
  transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease), background .35s var(--ease), opacity .3s;
  will-change: transform;
}
.cursor-label{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: var(--cream);
  opacity: 0;
  transition: opacity .3s;
}
.cursor.is-hover{
  width: 64px; height: 64px; margin: -32px 0 0 -32px;
  background: rgba(196,71,117,.92);
}
.cursor.is-hover .cursor-label{ opacity: 1; }
.cursor.is-btn{
  width: 72px; height: 72px; margin: -36px 0 0 -36px;
  background: var(--plum);
}
.cursor.is-hidden{ opacity: 0; }
@media (hover: none), (pointer: coarse){
  .cursor{ display: none; }
}

/* grain overlay */
.grain{
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  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)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Scroll progress bar
   ========================================================================== */
.scroll-progress{
  position: fixed; top: 0; left: 0;
  width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--pink));
  z-index: 600;
  pointer-events: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding-top: 8px;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 22px;
  transition: padding .5s var(--ease);
}
.site-nav.is-scrolled, .site-nav--light{
  background: rgba(255, 249, 246, .78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(64,21,35,.08);
}
.site-nav.is-scrolled .nav-inner{ padding-block: 14px; }

.nav-logo{
  display: flex; align-items: center; gap: 12px;
  color: var(--cream);
  transition: color .5s var(--ease);
}
.site-nav.is-scrolled .nav-logo, .site-nav--light .nav-logo{ color: var(--plum); }
.nav-logo-mark{ width: 34px; height: 34px; }
.nav-logo-mark svg{ width: 100%; height: 100%; }
.nav-logo-text{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  letter-spacing: .01em;
}

.nav-links{ display: flex; align-items: center; gap: 38px; }
.nav-links a{
  position: relative;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 4px;
  transition: color .5s var(--ease);
}
.site-nav.is-scrolled .nav-links a, .site-nav--light .nav-links a{ color: var(--plum); }
.nav-links a span{ position: relative; }
.nav-links a span::after{
  content:''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-links a:hover span::after{ transform: scaleX(1); transform-origin: left; }

.nav-right{ display: flex; align-items: center; gap: 22px; }

.nav-burger{
  display: none;
  width: 30px; height: 20px; position: relative;
}
.nav-burger span{
  position: absolute; left: 0; right: 0; height: 1px;
  background: var(--cream); transition: transform .4s var(--ease), background .4s var(--ease), top .4s var(--ease), opacity .3s;
}
.site-nav.is-scrolled .nav-burger span, .site-nav--light .nav-burger span{ background: var(--plum); }
.nav-burger span:first-child{ top: 4px; }
.nav-burger span:last-child{ top: 15px; }
.nav-burger.is-open span{ background: var(--cream) !important; }
.nav-burger.is-open span:first-child{ top: 9.5px; transform: rotate(45deg); }
.nav-burger.is-open span:last-child{ top: 9.5px; transform: rotate(-45deg); }

/* ==========================================================================
   Mobile fullscreen menu
   ========================================================================== */
.mobile-menu{
  position: fixed; inset: 0; z-index: 490;
  background: var(--plum);
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .8s var(--ease);
  pointer-events: none;
}
.mobile-menu.is-open{
  clip-path: circle(150% at calc(100% - 40px) 40px);
  pointer-events: auto;
}
.mobile-menu-inner{
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px var(--gutter) 60px;
}
.mobile-menu-eyebrow{
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 30px; display: block;
}
.mm-link{
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--font-serif); font-size: clamp(32px, 9vw, 54px);
  color: var(--cream); padding: 12px 0;
  border-bottom: 1px solid rgba(248,232,238,.12);
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.mobile-menu.is-open .mm-link{ opacity: 1; transform: translateY(0); }
.mm-link:hover{ color: var(--pink); }
.mm-num{ font-family: var(--font-sans); font-size: 12px; color: var(--pink); letter-spacing: .1em; }
.mobile-menu-foot{
  display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 50px;
  font-size: 13px; letter-spacing: .05em; color: var(--powder);
}
.mobile-menu-foot a:hover{ color: var(--pink); }

@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-right .btn-nav{ display: none; }
  .nav-burger{ display: block; }
}

/* ==========================================================================
   HERO — pinned shrink-and-reveal into the brand statement
   ========================================================================== */
.hero{ position: relative; }
.hero-stage{
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--cream);
}

/* statement layer — sits beneath the photo, revealed as it shrinks.
   The photo shrinks to a band across the TOP of the stage, and this text
   is bottom-anchored, so the two never spatially overlap/obscure each other. */
.hero-statement{
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center;
  opacity: 0;
  padding: 0 var(--gutter) clamp(70px, 11vh, 130px);
}
.hero-statement .eyebrow{ color: var(--rose); }
.statement-heading{
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 6.4vw, 108px);
  line-height: 1.1;
  color: var(--plum);
}
.statement-heading .word{ display: inline-block; }
.statement-heading .script-accent{ font-style: italic; }

.hero-media{ position: absolute; inset: 0; z-index: 2; }
.hero-mask{
  position: absolute; inset: 0;
  clip-path: inset(100% 0% 0% 0%);
  will-change: clip-path;
}
.hero-img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
}
.hero-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,17,24,.35) 0%, rgba(36,17,24,.12) 32%, rgba(36,17,24,.55) 78%, rgba(36,17,24,.82) 100%);
}

.hero-edge-label{
  position: absolute; z-index: 3;
  top: 50%; transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,247,250,.72);
}
.hero-edge-label--left{ left: 22px; }
.hero-edge-label--right{ right: 22px; transform: translateY(-50%) rotate(0deg); }

.hero-monogram{
  position: absolute; top: 130px; right: clamp(24px, 6vw, 90px);
  width: clamp(90px, 9vw, 130px); height: clamp(90px, 9vw, 130px);
  z-index: 3;
  opacity: 0;
}
.hero-monogram svg{ width: 100%; height: 100%; }

.hero-content{
  position: relative; z-index: 3;
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding: 0 var(--gutter) clamp(56px, 8vh, 96px);
}
.hero-eyebrow{
  font-size: 12.5px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--powder); margin-bottom: clamp(10px, 2.5vh, 22px);
  opacity: 0; transform: translateY(16px);
}
.hero-title{
  font-family: var(--font-serif);
  font-weight: 500;
  /* sized off the SMALLER of width/height so wide-but-short viewports
     (common laptop windows) don't blow the 3-line title up so tall that
     the top line pushes above the viewport and gets cut off by the nav */
  font-size: clamp(42px, min(8.4vw, 13vh), 152px);
  line-height: .96;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.line-mask{ display: block; overflow: hidden; }
.line-inner{
  display: inline-block;
  transform: translateY(110%);
}
.line-italic{ font-style: italic; color: var(--powder); font-weight: 400; }

.hero-sub{
  margin-top: clamp(14px, 3.2vh, 30px);
  max-width: 480px;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--pink-50);
  opacity: 0; transform: translateY(16px);
}
.hero-ctas{
  margin-top: clamp(20px, 4.6vh, 44px);
  display: flex; flex-wrap: wrap; gap: 18px;
  opacity: 0; transform: translateY(16px);
}
.hero-meta{
  margin-top: clamp(20px, 4.8vh, 46px);
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,247,250,.75);
  opacity: 0; transform: translateY(16px);
}
.hero-meta li{ position: relative; padding-left: 16px; }
.hero-meta li::before{
  content:''; position: absolute; left: 0; top: 50%; width: 6px; height: 1px;
  background: var(--pink); transform: translateY(-50%);
}
.hero-meta li:first-child{ padding-left: 0; }
.hero-meta li:first-child::before{ display: none; }

.hero-scroll-cue{
  position: absolute; left: var(--gutter); bottom: 28px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,247,250,.7);
}
.hero-scroll-cue span{
  width: 1px; height: 34px; background: rgba(255,247,250,.35); position: relative; overflow: hidden;
}
.hero-scroll-cue span::after{
  content:''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--pink);
  animation: cueDrop 2.4s ease-in-out infinite;
}
@keyframes cueDrop{
  0%{ top: -100%; } 50%{ top: 0; } 100%{ top: 100%; }
}
.hero-scroll-cue em{ font-style: normal; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }

@media (max-width: 640px){
  .hero-monogram{ display: none; }
  .hero-edge-label{ display: none; }
  .hero-scroll-cue{ display: none; }
}


/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee{
  overflow: hidden;
  white-space: nowrap;
  padding: 22px 0;
  border-block: 1px solid rgba(64,21,35,.08);
}
.marquee--dark{ background: var(--plum); border-color: rgba(248,232,238,.12); }
.marquee--light{ background: var(--cream); }
.marquee-track{
  display: inline-flex;
  will-change: transform;
}
.marquee-track span{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: .01em;
  padding-right: 8px;
}
.marquee--dark .marquee-track span{ color: var(--powder); }
.marquee--light .marquee-track span{ color: var(--plum); }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip{
  background: var(--blush);
  padding: 18px 0;
  overflow: hidden;
}
.trust-strip-track{
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 18px;
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
}
.trust-strip-track span{
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--plum);
}
.trust-strip-track i{ font-style: normal; color: var(--rose); font-size: 10px; }

/* ==========================================================================
   Creations — interactive hover-swap showcase
   ========================================================================== */
.creations{ padding: clamp(90px,14vh,160px) 0 clamp(70px,10vh,120px); background: var(--cream); }
.creations-head{ margin-bottom: clamp(50px, 8vh, 90px); }

.creations-interactive{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.creations-list{ display: flex; flex-direction: column; }
.creations-item{
  border-top: 1px solid rgba(64,21,35,.12);
  position: relative;
}
.creations-item:last-child{ border-bottom: 1px solid rgba(64,21,35,.12); }
.creations-item-btn{
  display: flex; flex-direction: column; align-items: flex-start;
  width: 100%; text-align: left;
  padding: clamp(20px, 3vh, 30px) 0;
}
.creations-item-top{
  display: flex; align-items: center; gap: 20px; width: 100%;
}
.creations-item-num{
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; color: var(--rose);
}
.creations-item-title{
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(24px, 3.2vw, 42px); color: var(--plum);
  transition: color .4s var(--ease), transform .4s var(--ease);
  flex: 1;
}
.creations-item-arrow{
  font-size: 20px; color: var(--rose);
  opacity: 0; transform: translate(-8px, 8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.creations-item-desc{
  display: block;
  max-width: 46ch;
  margin-top: 0; max-height: 0; overflow: hidden;
  font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--ink-soft);
  opacity: 0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin-top .5s var(--ease);
}
.creations-item::after{
  content:''; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: var(--rose);
  transition: width .5s var(--ease);
}
.creations-item.is-active::after{ width: 100%; }
.creations-item.is-active .creations-item-title{ color: var(--rose); transform: translateX(10px); }
.creations-item.is-active .creations-item-arrow{ opacity: 1; transform: translate(0,0); }
.creations-item.is-active .creations-item-desc{ max-height: 120px; opacity: 1; margin-top: 12px; }

.creations-item-thumb{ display: none; }

.creations-visual{
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.creations-visual-img{
  position: absolute; inset: 0;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity .7s var(--ease), clip-path .8s var(--ease);
}
.creations-visual-img img{ width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.creations-visual-img.is-active{ opacity: 1; clip-path: inset(0 0 0% 0); }
.creations-visual-num{
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  font-family: var(--font-serif); font-style: italic; font-size: 15px;
  color: var(--cream); background: rgba(64,21,35,.55); padding: 6px 14px;
}

.creations-explore-all{ display: inline-flex; margin-top: clamp(50px, 8vh, 80px); margin-inline: var(--gutter); }

@media (max-width: 900px){
  .creations-interactive{ grid-template-columns: 1fr; }
  .creations-visual{ display: none; }
  .creations-item-thumb{
    display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-top: 14px;
    opacity: 1; max-height: none;
  }
  .creations-item-desc{ max-height: none; opacity: 1; margin-top: 12px; }
  .creations-item.is-active .creations-item-title{ transform: none; }
}

/* ==========================================================================
   Hampers gallery — dedicated showcase grid
   ========================================================================== */
.hampers{ background: var(--blush); padding: clamp(100px,14vh,160px) 0; }
.hampers-head{ margin-bottom: clamp(50px,8vh,80px); max-width: 640px; }
.hampers-sub{ margin-top: 22px; font-size: 16.5px; font-weight: 300; line-height: 1.7; color: var(--ink-soft); }

.hampers-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 15vw;
  gap: 14px;
}
.hamper-item{
  position: relative;
  grid-column: span 1; grid-row: span 2;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
}
.hamper-item--tall{ grid-row: span 3; }
.hamper-item--wide{ grid-column: span 2; grid-row: span 2; }
.hamper-item img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 1s var(--ease);
}
.hamper-item:hover img{ transform: scale(1.14); }
.hamper-overlay{
  position: absolute; inset: 0;
  background: rgba(196,71,117,.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.hamper-overlay em{
  font-style: italic; font-family: var(--font-serif); font-size: 22px; color: var(--cream);
  transform: translateY(10px);
  transition: transform .5s var(--ease);
}
.hamper-item:hover .hamper-overlay{ opacity: 1; }
.hamper-item:hover .hamper-overlay em{ transform: translateY(0); }
.hamper-tag{
  position: absolute; left: 14px; bottom: 14px;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--cream);
  background: rgba(64,21,35,.55);
  padding: 6px 12px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.hamper-item:hover .hamper-tag{ opacity: 1; transform: translateY(0); }
.hamper-tag b{ color: var(--pink); margin-right: 6px; }

.hampers-explore-all{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: clamp(50px, 8vh, 80px);
  margin-inline: var(--gutter);
}

@media (max-width: 900px){
  .hampers-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 34vw; }
  .hamper-item--wide{ grid-column: span 2; }
}
@media (max-width: 560px){
  .hampers-grid{ grid-template-columns: 1fr; grid-auto-rows: 62vw; }
  .hamper-item--wide, .hamper-item--tall{ grid-column: span 1; grid-row: span 2; }
}

/* ==========================================================================
   3D Mascot moment — pinned scroll-driven pseudo-3D turntable
   ========================================================================== */
.mascot{ background: var(--cream); overflow: hidden; }
.mascot-stage{
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(90px, 12vh, 130px) 0 clamp(40px, 6vh, 70px);
}
.mascot-grid{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
}
.mascot-copy{ text-align: left; }
.mascot-copy .eyebrow{ margin-bottom: 16px; }
.mascot-heading{
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.16;
  color: var(--plum);
}
.mascot-heading em{ font-style: italic; color: var(--rose); font-weight: 400; }
.mascot-paragraph{
  margin-top: 26px;
  max-width: 42ch;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
}

.mascot-visual{
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.mascot-3d-wrap{
  position: relative;
  width: clamp(230px, 20vw, 380px);
  aspect-ratio: 1 / 1.05;
  margin-bottom: clamp(16px, 3vh, 30px);
  perspective: 1400px;
}
.mascot-shadow{
  position: absolute; left: 50%; bottom: 2%;
  width: 62%; height: clamp(18px, 3vw, 30px);
  background: radial-gradient(ellipse, rgba(64,21,35,.4) 0%, rgba(64,21,35,0) 72%);
  transform: translateX(-50%);
  filter: blur(2px);
  border-radius: 50%;
}
.mascot-3d{
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.mascot-face{
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.mascot-face img{
  max-width: 100%; max-height: 100%; width: auto; height: 100%; object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(64,21,35,.3));
}
.mascot-back{ transform: rotateY(180deg); }
.mascot-back img{ filter: brightness(.48) saturate(.6) drop-shadow(0 26px 30px rgba(64,21,35,.3)); }

.mascot-caption{
  font-size: 11.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose);
}

@media (max-width: 860px){
  /* stage stays viewport-height (not auto) — it's the pinned element while
     scrubbing the rotation, so its box must match what ScrollTrigger pins;
     letting it grow past 100svh would clip content during the pin instead
     of just trimming bottom breathing room, so sizes below are tuned to
     comfortably fit a small phone viewport with this content stacked. */
  .mascot-stage{ padding-block: clamp(60px,9vh,90px) clamp(30px,5vh,50px); }
  .mascot-grid{ grid-template-columns: 1fr; gap: clamp(20px, 4vh, 34px); }
  .mascot-copy{ text-align: center; order: 2; }
  .mascot-copy .eyebrow{ display: block; margin-bottom: 10px; }
  .mascot-heading{ font-size: clamp(26px, 7vw, 36px); }
  .mascot-paragraph{ margin-top: 16px; margin-inline: auto; font-size: 15px; }
  .mascot-visual{ order: 1; }
  .mascot-3d-wrap{ width: clamp(190px, 44vw, 260px); margin-bottom: 14px; }
}

/* ==========================================================================
   Signature — pinned pink word sequence + layered photos
   ========================================================================== */
.signature{ position: relative; background: var(--rose); }
.signature-stage{
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--rose) 0%, var(--pink) 55%, var(--rose) 100%);
  display: flex; align-items: center; justify-content: center;
}
.signature-caption{
  position: absolute; top: clamp(34px, 6vh, 60px); left: 0; right: 0;
  text-align: center;
  font-size: 12px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--pink-50); z-index: 3;
}
.signature-words{
  position: relative; z-index: 2;
  width: 100%; text-align: center;
}
.sig-word{
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif); font-weight: 500; font-style: italic;
  font-size: clamp(56px, 11vw, 180px);
  color: var(--cream);
  opacity: 0;
  white-space: nowrap;
}
#sigWord1{ opacity: 1; }

.signature-photos{ position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sig-photo{
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(64,21,35,.45);
  border: 6px solid var(--cream);
  opacity: .95;
}
.sig-photo img{ width: 100%; height: 100%; object-fit: cover; }
.sig-photo--1{ width: 20vw; max-width: 260px; aspect-ratio: 3/4; left: 6%; top: 18%; transform: rotate(-6deg); }
.sig-photo--2{ width: 18vw; max-width: 230px; aspect-ratio: 1/1; right: 10%; top: 56%; transform: rotate(4deg); }
.sig-photo--3{ width: 22vw; max-width: 280px; aspect-ratio: 3/4; right: -6%; top: 10%; transform: rotate(6deg); opacity: 0; }

@media (max-width: 700px){
  .sig-photo--1{ width: 34vw; left: -4%; top: 66%; }
  .sig-photo--2{ width: 30vw; right: -4%; top: 10%; }
  .sig-photo--3{ width: 34vw; right: -8%; top: 60%; }
}

/* ==========================================================================
   Story — sticky image, scrolling copy
   ========================================================================== */
.story{ background: var(--charcoal); color: var(--cream); }
.story-grid{ display: grid; grid-template-columns: 1fr 1fr; }
.story-sticky{ position: relative; }
.story-media{
  position: sticky; top: 0;
  height: 100svh;
  overflow: hidden;
}
.story-media img{ width: 100%; height: 100%; object-fit: cover; }
.story-scroll{
  padding: clamp(160px,26vh,300px) var(--gutter) clamp(320px,46vh,560px);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 640px;
}
.story-title{
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.1;
  color: var(--cream);
  margin-top: 6px;
}
.story-title em{ font-style: italic; color: var(--pink); font-weight: 400; }
.story-scroll > p{
  margin-top: 26px;
  font-size: 16.5px; font-weight: 300; line-height: 1.75;
  color: rgba(248,232,238,.82);
  max-width: 48ch;
}
.story-signoff{
  margin-top: 46px; padding-top: 30px;
  border-top: 1px solid rgba(248,232,238,.16);
  display: flex; flex-direction: column; gap: 6px;
}
.story-founder{
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--powder);
}

@media (max-width: 860px){
  .story-grid{ grid-template-columns: 1fr; }
  .story-media{ position: relative; height: 60vh; min-height: 340px; }
  .story-scroll{ padding-block: clamp(60px,9vh,100px); }
}

/* ==========================================================================
   Lookbook — pinned horizontal gallery
   ========================================================================== */
.lookbook{ background: var(--blush); padding: clamp(100px,14vh,160px) 0 0; }
.lookbook-head{ margin-bottom: clamp(50px,8vh,80px); }

.lookbook-pin{
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex; align-items: center;
}
.lookbook-track{
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  padding-inline: var(--gutter);
  will-change: transform;
}
.lookbook-panel{
  position: relative;
  flex: 0 0 auto;
  height: 66vh;
  min-height: 340px;
  overflow: hidden;
  cursor: pointer;
}
.lookbook-panel--portrait{ width: 30vw; max-width: 380px; }
.lookbook-panel--landscape{ width: 46vw; max-width: 560px; }
.lookbook-panel--wide{ width: 58vw; max-width: 720px; }
.lookbook-panel img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform .9s var(--ease);
}
.lookbook-panel:hover img{ transform: scale(1.14); }
.lookbook-tag{
  position: absolute; left: 16px; bottom: 16px;
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--cream);
  background: rgba(64,21,35,.55);
  padding: 7px 14px;
}
.lookbook-tag b{ color: var(--pink); margin-right: 6px; }

@media (max-width: 900px){
  .lookbook-pin{ height: auto; display: block; }
  .lookbook-track{
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-block: 10px 40px;
    transform: none !important;
  }
  .lookbook-track::-webkit-scrollbar{ display: none; }
  .lookbook-panel{ height: 56vh; scroll-snap-align: start; }
  .lookbook-panel--portrait{ width: 66vw; }
  .lookbook-panel--landscape{ width: 78vw; }
  .lookbook-panel--wide{ width: 86vw; }
}

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 800;
  background: rgba(23,19,21,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.lightbox.is-open{ opacity: 1; visibility: visible; }
.lightbox-figure{ max-width: min(920px, 88vw); max-height: 82vh; text-align: center; }
.lightbox-figure img{
  max-width: 100%; max-height: 72vh; object-fit: contain; margin-inline: auto;
  opacity: 0; transform: scale(.97); transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.lightbox.is-open .lightbox-figure img{ opacity: 1; transform: scale(1); }
.lightbox-figure figcaption{
  margin-top: 22px; color: var(--powder); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
}
.lightbox-close{
  position: absolute; top: 30px; right: clamp(20px,4vw,50px);
  font-size: 34px; color: var(--cream); line-height: 1;
  width: 44px; height: 44px;
}
.lightbox-close:hover{ color: var(--pink); }
.lightbox-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border: 1px solid rgba(248,232,238,.3); border-radius: 50%;
  color: var(--cream); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.lightbox-nav:hover{ background: var(--rose); border-color: var(--rose); }
.lightbox-prev{ left: clamp(14px,4vw,50px); }
.lightbox-next{ right: clamp(14px,4vw,50px); }
@media (max-width: 640px){
  .lightbox-nav{ width: 40px; height: 40px; }
}

/* ==========================================================================
   Testimonials — editorial masked transition
   ========================================================================== */
.testimonials{ background: var(--cream); padding: clamp(100px,14vh,160px) 0; }
.testimonials-head{ text-align: center; margin-bottom: clamp(50px,7vh,80px); }
.testimonials-head .eyebrow, .testimonials-head .section-title{ display: block; }

.testimonial-stage{
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
}
.testimonial-mask{
  overflow: hidden;
  max-width: 760px;
  width: 100%;
  min-height: clamp(280px, 34vh, 360px);
  display: flex; align-items: center;
}
.testimonial-content{
  width: 100%;
  text-align: center;
}
.quote-mark{
  font-family: var(--font-serif); font-size: 90px; color: var(--powder); line-height: .5; display: block; margin-bottom: 10px;
}
.stars{ color: var(--rose); letter-spacing: 4px; font-size: 14px; margin-bottom: 26px; }
.testimonial-text{
  font-family: var(--font-serif); font-weight: 500; font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px); line-height: 1.4; color: var(--plum);
}
.testimonial-content footer{
  margin-top: 34px; display: flex; flex-direction: column; gap: 4px;
}
.testimonial-content cite{
  font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; color: var(--plum);
}
.testimonial-content footer span{ font-size: 13px; color: var(--ink-soft); }

.testimonial-arrow{
  flex: none;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(64,21,35,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--plum);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.testimonial-arrow:hover{ background: var(--rose); border-color: var(--rose); color: var(--cream); }

.testimonial-dots{
  display: flex; justify-content: center; gap: 10px; margin-top: 44px;
}
.testimonial-dots button{
  width: 8px; height: 8px; border-radius: 50%; background: var(--powder);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.testimonial-dots button.is-active{ background: var(--rose); transform: scale(1.3); }
.testimonial-note{
  text-align: center; margin-top: 30px; font-size: 12px; color: var(--ink-soft); opacity: .65; letter-spacing: .04em;
}

@media (max-width: 640px){
  .testimonial-arrow{ width: 42px; height: 42px; }
}

/* ==========================================================================
   Instagram
   ========================================================================== */
.instagram{ background: var(--plum); padding: clamp(100px,14vh,160px) 0; color: var(--cream); }
.instagram-head{ text-align: center; margin-bottom: clamp(50px,8vh,80px); display: flex; flex-direction: column; align-items: center; }
.instagram-head .section-title{ color: var(--cream); margin-bottom: 34px; }
.instagram-head .eyebrow{ color: var(--pink); }
.instagram-head .btn-outline{ color: var(--cream); border-color: rgba(248,232,238,.4); }
.instagram-head .btn-outline:hover{ background: var(--pink); border-color: var(--pink); color: var(--plum); }

.instagram-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 14vw;
  gap: 12px;
}
.ig-tile{ position: relative; overflow: hidden; grid-row: span 2; }
.ig-tile--tall{ grid-row: span 3; }
.ig-tile--wide{ grid-column: span 2; grid-row: span 2; }
.ig-tile img{ width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform .8s var(--ease), filter .5s; }
.ig-tile::after{
  content: '\2731'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--cream); background: rgba(216,91,137,.5); font-size: 22px; opacity: 0; transition: opacity .4s var(--ease);
}
.ig-tile:hover::after{ opacity: 1; }
.ig-tile:hover img{ transform: scale(1.08); filter: saturate(1.1); }

@media (max-width: 900px){
  .instagram-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 24vw; }
  .ig-tile--tall:nth-child(5){ display: none; }
}
@media (max-width: 560px){
  .instagram-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 38vw; }
}

/* ==========================================================================
   Contact / conversion
   ========================================================================== */
.contact{
  position: relative;
  background: var(--plum);
  color: var(--cream);
  padding: clamp(120px,18vh,200px) 0;
  text-align: center;
  overflow: hidden;
}
.contact-bg{ position: absolute; inset: 0; opacity: .16; }
.contact-bg img{ width: 100%; height: 100%; object-fit: cover; }
.contact::before{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--plum) 0%, rgba(64,21,35,.85) 60%, var(--plum) 100%);
}
.contact-inner{ position: relative; display: flex; flex-direction: column; align-items: center; }
.contact-title{
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(46px, 7.6vw, 104px); line-height: 1.02; color: var(--cream); margin-top: 4px;
}
.contact-title em{ font-style: italic; color: var(--pink); font-weight: 400; }
.contact-copy{
  margin: 30px auto 46px; max-width: 46ch;
  font-size: 17px; font-weight: 300; line-height: 1.7; color: rgba(248,232,238,.85);
}
.contact-details{
  margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 20px;
  font-size: 13.5px; letter-spacing: .04em; color: var(--powder);
}
.contact-details a:hover{ color: var(--pink); }
.contact-details .dot{ color: var(--rose); }

/* ==========================================================================
   Footer (PRESERVED — unchanged from prior approved design)
   ========================================================================== */
.site-footer{ background: var(--charcoal); color: var(--cream); padding-top: clamp(70px,10vh,110px); overflow: hidden; }
.footer-top{
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 40px;
  padding-bottom: clamp(30px,5vh,60px);
}
.footer-brand{
  display: flex; flex-direction: column;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(70px, 13vw, 190px);
  line-height: .84;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: -0.06em;
}
.footer-brand span:last-child{ color: var(--rose); }
.footer-links{ display: flex; flex-direction: column; gap: 14px; text-align: right; }
.footer-links a{
  font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--powder);
  transition: color .35s var(--ease);
}
.footer-links a:hover{ color: var(--pink); }

.footer-bottom{
  border-top: 1px solid rgba(248,232,238,.12);
  padding-block: 26px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
  font-size: 12.5px; color: rgba(248,232,238,.55); letter-spacing: .04em;
}
.footer-credit{ opacity: .7; }

@media (max-width: 640px){
  .footer-top{ flex-direction: column; align-items: flex-start; }
  .footer-links{ text-align: left; }
}

/* ==========================================================================
   WhatsApp FAB
   ========================================================================== */
.whatsapp-fab{
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--plum); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(64,21,35,.55);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.whatsapp-fab:hover{ background: var(--rose); }
.whatsapp-fab svg{ width: 26px; height: 26px; }

/* ==========================================================================
   Shop page — nav "current" state, cart toggle
   ========================================================================== */
.nav-links a.is-current span{ color: var(--rose); }
.site-nav.is-scrolled .nav-links a.is-current span{ color: var(--rose); }
.nav-links a.is-current span::after{ transform: scaleX(1); background: var(--rose); }

.cart-toggle{
  position: relative;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: color .5s var(--ease);
}
.site-nav.is-scrolled .cart-toggle, .site-nav--light .cart-toggle{ color: var(--plum); }
.cart-toggle svg{ width: 22px; height: 22px; }
.cart-count{
  position: absolute; top: -2px; right: -2px;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 50%;
  background: var(--rose); color: var(--cream);
  font-size: 10px; font-weight: 700; line-height: 16px; text-align: center;
  opacity: 0; transform: scale(.6);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.cart-count.is-visible{ opacity: 1; transform: scale(1); }

/* ==========================================================================
   Shop hero
   ========================================================================== */
.shop-hero{
  padding: clamp(150px, 22vh, 220px) 0 clamp(60px, 9vh, 100px);
  background: var(--cream);
  text-align: center;
}
.shop-hero-inner{
  max-width: 760px; margin-inline: auto; padding-inline: var(--gutter);
}
.shop-hero-title{
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 1.04;
  color: var(--plum);
  margin-top: 6px;
}
.shop-hero-title em{ font-style: italic; color: var(--rose); font-weight: 400; }
.shop-hero-sub{
  margin: 26px auto 0; max-width: 52ch;
  font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--ink-soft);
}

/* ==========================================================================
   Product grid
   ========================================================================== */
.shop-grid-section{ background: var(--cream); padding: clamp(70px,10vh,110px) 0 clamp(100px,14vh,160px); }
.shop-grid{
  width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.product-card{
  display: flex; flex-direction: column;
  background: var(--pink-50);
  border: 1px solid rgba(64,21,35,.08);
}
.product-card-media{
  aspect-ratio: 4/3.2;
  overflow: hidden;
}
.product-card-media img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 1s var(--ease);
}
.product-card:hover .product-card-media img{ transform: scale(1.12); }
.product-card-body{
  padding: clamp(20px, 2.4vw, 28px);
  display: flex; flex-direction: column; flex: 1;
}
.product-card-body h3{
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(22px, 2vw, 27px); color: var(--plum);
}
.product-card-body > p{
  margin-top: 10px; font-size: 14.5px; font-weight: 300; line-height: 1.6; color: var(--ink-soft);
  flex: 1;
}
.product-card-foot{
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.product-price{
  font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--rose);
}
.product-actions{ display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.qty-stepper{
  display: inline-flex; align-items: center;
  border: 1px solid rgba(64,21,35,.2);
}
.qty-btn{
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--plum);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.qty-btn:hover{ background: var(--plum); color: var(--cream); }
.qty-input{
  width: 36px; height: 34px; text-align: center;
  border: none; border-left: 1px solid rgba(64,21,35,.2); border-right: 1px solid rgba(64,21,35,.2);
  font: inherit; font-size: 13.5px; color: var(--plum); background: transparent;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }
.add-to-cart-btn{ flex: 1; white-space: nowrap; }

.shop-disclaimer{
  max-width: var(--container); margin: clamp(50px,8vh,80px) auto 0; padding-inline: var(--gutter);
  font-size: 13px; color: var(--ink-soft); opacity: .75; line-height: 1.6; max-width: 60ch;
}

@media (max-width: 1024px){
  .shop-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .shop-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.cart-overlay{
  position: fixed; inset: 0; z-index: 700;
  background: rgba(23,19,21,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.cart-overlay.is-open{ opacity: 1; visibility: visible; }

.cart-drawer{
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 701;
  width: min(420px, 100vw);
  background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  box-shadow: -20px 0 60px -20px rgba(64,21,35,.35);
}
.cart-drawer.is-open{ transform: translateX(0); }

.cart-drawer-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px var(--gutter);
  border-bottom: 1px solid rgba(64,21,35,.1);
}
.cart-drawer-head h2{
  font-family: var(--font-serif); font-weight: 500; font-size: 24px; color: var(--plum);
}
.cart-close{ font-size: 28px; color: var(--plum); line-height: 1; width: 32px; height: 32px; }
.cart-close:hover{ color: var(--rose); }

.cart-drawer-body{
  flex: 1; overflow-y: auto;
  padding: 10px var(--gutter);
}
.cart-empty{ padding: 60px 0; text-align: center; color: var(--ink-soft); }
.cart-empty p{ margin-bottom: 18px; }

.cart-item{
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(64,21,35,.08);
}
.cart-item-media{ width: 64px; height: 64px; overflow: hidden; }
.cart-item-media img{ width: 100%; height: 100%; object-fit: cover; }
.cart-item-body h4{
  font-family: var(--font-serif); font-weight: 500; font-size: 16px; color: var(--plum);
}
.cart-item-price{ display: block; margin-top: 2px; font-size: 12px; color: var(--ink-soft); }
.cart-item-row{ margin-top: 10px; display: flex; align-items: center; gap: 14px; }
.qty-stepper--sm .qty-btn{ width: 26px; height: 26px; font-size: 13px; }
.qty-stepper--sm .qty-value{ width: 28px; text-align: center; font-size: 12.5px; color: var(--plum); }
.cart-item-remove{
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft);
  border-bottom: 1px solid rgba(64,21,35,.25);
}
.cart-item-remove:hover{ color: var(--rose); border-color: var(--rose); }
.cart-item-total{ font-family: var(--font-serif); font-style: italic; font-size: 15px; color: var(--rose); }

.cart-drawer-foot{
  padding: 20px var(--gutter) 28px;
  border-top: 1px solid rgba(64,21,35,.1);
}
.cart-drawer-foot.is-empty{ opacity: .4; pointer-events: none; }
.cart-subtotal-row{
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-serif); font-size: 18px; color: var(--plum);
  margin-bottom: 12px;
}
.cart-subtotal-row span:last-child{ font-style: italic; color: var(--rose); font-size: 22px; }
.cart-note{ font-size: 12px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; }
.cart-drawer-foot .btn-lg{
  width: 100%;
  white-space: normal;
  line-height: 1.3;
  padding-inline: 24px;
  font-size: 12.5px;
}
.cart-continue{
  display: block; width: 100%; text-align: center; margin-top: 12px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft);
}
.cart-continue:hover{ color: var(--rose); }

@media (max-width: 480px){
  .cart-drawer{ width: 100vw; }
}

/* ==========================================================================
   Cart toast
   ========================================================================== */
.cart-toast{
  position: fixed; left: 50%; bottom: 30px; z-index: 750;
  transform: translate(-50%, 16px);
  background: var(--plum); color: var(--cream);
  padding: 14px 26px;
  font-size: 13px; letter-spacing: .04em;
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.cart-toast.is-visible{ opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .line-inner{ transform: none !important; }
  .reveal-fade{ opacity: 1 !important; transform: none !important; }
  .hero-eyebrow, .hero-sub, .hero-ctas, .hero-meta{ opacity: 1 !important; transform: none !important; }
  .story-media{ position: relative !important; }
  .lookbook-track{ overflow-x: auto !important; transform: none !important; }
}
