/* ==========================================================================
   SUTRA — every thread carries a story.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

:root{
  /* ---- palette, drawn from the artwork itself ---- */
  --ink:        #0a0908;   /* primary background */
  --ink-2:      #131110;   /* raised surface */
  --ink-3:      #1c1815;   /* card / border surface */
  --bone:       #f1ebe0;   /* off-white text */
  --bone-dim:   #cabfae;   /* dimmed off-white */
  --crimson:    #8c1522;   /* deep blood red, from the red tee */
  --crimson-lt: #b23241;   /* lifted crimson for hover/glow */
  --gold:       #b6924f;   /* gold, from the maroon crest print */
  --gold-lt:    #d9b878;
  --line:       rgba(241,235,224,0.14);
  --line-soft:  rgba(241,235,224,0.07);

  --serif: 'Cinzel', serif;
  --sans:  'Manrope', sans-serif;

  --ease: cubic-bezier(.16,.84,.44,1);
  --container: 1320px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor:pointer; }
input{ font-family: inherit; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline: 1px solid var(--gold-lt);
  outline-offset: 3px;
}

/* ---- type helpers ---- */
.eyebrow{
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: var(--gold-lt);
  font-weight: 600;
}
.display{ font-family: var(--serif); font-weight: 600; letter-spacing: 0.01em; }
.rule{
  width: 44px; height: 1px; background: var(--gold);
  margin: 18px 0;
}
.rule.center{ margin-inline:auto; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  font-weight: 600;
  border: 1px solid var(--bone);
  background: transparent;
  color: var(--bone);
  white-space: nowrap;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover{ background: var(--bone); color: var(--ink); }
.btn-solid{ background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-solid:hover{ background: var(--crimson-lt); border-color: var(--crimson-lt); color: var(--bone); }
.btn-ghost{ border-color: var(--line); color: var(--bone-dim); }
.btn-ghost:hover{ border-color: var(--bone); color: var(--bone); background: transparent; }
.btn-line{
  border:none; border-bottom: 1px solid var(--bone); padding: 4px 2px 8px;
  letter-spacing: 0.14em; font-size: 12px;
}
.btn-line:hover{ background:none; color: var(--gold-lt); border-color: var(--gold-lt); }
.btn[disabled]{ opacity: 0.35; pointer-events: none; }
.btn-row{ display:flex; gap:16px; flex-wrap:wrap; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(10,9,8,.55), transparent);
  transition: background .45s var(--ease), padding .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.solid{
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: var(--line);
}
.site-header .container{
  display:flex; justify-content: space-between; align-items:center; gap: 16px;
}
.header-left, .header-right{ display:flex; align-items:center; gap:26px; }
.header-right{ justify-content:flex-end; }
.icon-btn{
  background:none; border:none; color: var(--bone); padding:4px;
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.icon-btn svg{ width:19px; height:19px; }
.menu-toggle{ display:flex; align-items:center; gap:10px; }
.menu-toggle span{ font-size:11.5px; letter-spacing:0.18em; font-weight:600; }
.hamburger{ width:22px; height:14px; position:relative; }
.hamburger i{
  position:absolute; left:0; width:100%; height:1px; background:var(--bone);
  transition: transform .35s var(--ease), opacity .35s var(--ease), top .35s var(--ease);
}
.hamburger i:nth-child(1){ top:0; }
.hamburger i:nth-child(2){ top:6px; }
.hamburger i:nth-child(3){ top:13px; }
.menu-open .hamburger i:nth-child(1){ top:6px; transform: rotate(45deg); }
.menu-open .hamburger i:nth-child(2){ opacity:0; }
.menu-open .hamburger i:nth-child(3){ top:6px; transform: rotate(-45deg); }

.logo-mark{ display:flex; align-items:center; justify-content:center; }
.logo-mark img{ height:46px; width:auto; transition: height .45s var(--ease); filter: drop-shadow(0 2px 10px rgba(0,0,0,.5)); }
.site-header.solid .logo-mark img{ height:36px; }

.bag-count{
  position:absolute; top:-6px; right:-9px;
  background: var(--crimson-lt); color:var(--bone);
  font-size:10px; font-weight:700; border-radius:50%;
  width:16px; height:16px; display:flex; align-items:center; justify-content:center;
  font-family: var(--sans);
}

/* ---- full screen nav ---- */
.nav-overlay{
  position: fixed; inset:0; z-index: 1000;
  pointer-events:none;
  background: var(--ink);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition: opacity .55s var(--ease), visibility 0s linear .55s;
}
.nav-overlay.open{ opacity:1; visibility:visible; pointer-events:auto; transition: opacity .55s var(--ease); }
.nav-overlay::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 50% 20%, rgba(140,21,34,.14), transparent 60%);
}
.nav-links{ position:relative; text-align:center; }
.nav-links li{ overflow:hidden; }
.nav-links a{
  display:block; font-family: var(--serif); font-size: clamp(32px, 6vw, 58px);
  padding: 10px 0; color: var(--bone-dim); font-weight:500;
  transform: translateY(110%); transition: transform .7s var(--ease), color .35s var(--ease);
}
.nav-overlay.open .nav-links a{ transform: translateY(0); }
.nav-links a:hover{ color: var(--gold-lt); }
.nav-links li:nth-child(1) a{ transition-delay: .08s; }
.nav-links li:nth-child(2) a{ transition-delay: .14s; }
.nav-links li:nth-child(3) a{ transition-delay: .20s; }
.nav-links li:nth-child(4) a{ transition-delay: .26s; }
.nav-links li:nth-child(5) a{ transition-delay: .32s; }
.nav-foot{
  position:relative; margin-top:56px; display:flex; gap:28px;
  font-size:11.5px; letter-spacing:.14em; color: var(--bone-dim);
  opacity:0; transition: opacity .6s var(--ease) .4s;
}
.nav-overlay.open .nav-foot{ opacity:1; }
.nav-close{
  position:absolute; top:26px; right:32px; background:none; border:none; color:var(--bone);
}
.nav-close svg{ width:22px; height:22px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; height:100vh; min-height:640px;
  display:flex; align-items:flex-end;
  overflow:hidden;
  background: var(--ink);
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position: 50% 15%;
  transform: scale(1.08);
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom{ to{ transform: scale(1); } }
.hero-media::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(10,9,8,.98) 2%, rgba(10,9,8,.35) 42%, rgba(10,9,8,.5) 100%),
    linear-gradient(to right, rgba(10,9,8,.55), transparent 40%, transparent 60%, rgba(10,9,8,.55));
}
.hero-inner{
  position:relative; z-index:2; width:100%;
  padding-bottom: 76px;
}
.hero-word{
  font-family: var(--serif); font-weight:700;
  font-size: clamp(46px, 9vw, 132px);
  letter-spacing: 0.05em;
  color: var(--bone);
  line-height:0.95;
  opacity:0; transform: translateY(24px);
  animation: fadeUp 1.1s var(--ease) .3s forwards;
}
.hero-tagline{
  font-family: var(--serif); font-weight:500;
  font-size: clamp(20px, 2.6vw, 32px);
  max-width: 720px; margin-top: 18px;
  color: var(--bone);
  opacity:0; transform: translateY(20px);
  animation: fadeUp 1.1s var(--ease) .55s forwards;
}
.hero-sub{
  margin-top: 16px; max-width: 420px;
  color: var(--bone-dim); font-size:15px; line-height:1.75;
  opacity:0; transform: translateY(20px);
  animation: fadeUp 1.1s var(--ease) .75s forwards;
}
.hero-actions{
  margin-top: 40px;
  opacity:0; transform: translateY(20px);
  animation: fadeUp 1.1s var(--ease) .95s forwards;
}
@keyframes fadeUp{ to{ opacity:1; transform:none; } }

.scroll-cue{
  position:absolute; left:32px; bottom:28px; z-index:2;
  display:flex; align-items:center; gap:12px;
  color: var(--bone-dim); font-size:11px; letter-spacing:.18em;
  opacity:0; animation: fadeUp 1s var(--ease) 1.3s forwards;
}
.scroll-cue .line{ width:1px; height:38px; background: var(--line); position:relative; overflow:hidden; }
.scroll-cue .line::after{
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: var(--gold-lt); animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }
.hero-chapter-tag{
  position:absolute; right:32px; bottom:28px; z-index:2;
  font-size:11px; letter-spacing:.18em; color: var(--bone-dim);
  text-align:right; line-height:1.8;
  opacity:0; animation: fadeUp 1s var(--ease) 1.3s forwards;
}
.hero-chapter-tag b{ color:var(--gold-lt); font-weight:600; }

/* ==========================================================================
   REVEAL (single orchestrated per-section reveal)
   ========================================================================== */
.reveal{ opacity:0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
/* NOTE: intentionally avoids clip-path for the hidden state — a fully
   clipped element has a zero-area box, which stops IntersectionObserver
   from ever reporting it as intersecting (nothing to reveal it with).
   Opacity + a modest scale keeps a real, measurable box at all times. */
.reveal-img{ opacity:0; transform: scale(1.05); transition: opacity 1.1s var(--ease), transform 1.3s var(--ease); }
.reveal-img.in{ opacity:1; transform: scale(1); }

/* ==========================================================================
   SECTION SHARED
   ========================================================================== */
section{ position:relative; }
.section-pad{ padding: 150px 0; }
@media (max-width: 780px){ .section-pad{ padding: 96px 0; } }

/* ---- intro ---- */
.intro{ }
.intro-grid{
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 90px; align-items:center;
}
.intro-copy .display{
  font-size: clamp(28px, 3.4vw, 46px); line-height:1.28; margin: 18px 0 26px;
}
.intro-copy p.desc{ color: var(--bone-dim); font-size:16px; max-width: 480px; line-height:1.85; }
.intro-media{ position:relative; }
.intro-media img{ width:100%; height: 640px; object-fit:cover; }
.intro-media .frame-tag{
  position:absolute; bottom:-1px; left:-1px; right:-1px;
  border:1px solid var(--line); border-bottom:none; pointer-events:none; inset:0;
}
.intro-caption{
  position:absolute; bottom:24px; left:24px; right:24px;
  display:flex; justify-content:space-between; font-size:11px; letter-spacing:.14em; color: var(--bone-dim);
}

/* ==========================================================================
   CHAPTERS
   ========================================================================== */
.chapter{
  border-top: 1px solid var(--line-soft);
  padding: 130px 0;
}
.chapter .container{
  display:grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items:center;
}
.chapter.flip .container{ direction: rtl; }
.chapter.flip .container > *{ direction: ltr; }
.chapter-media{ position:relative; overflow:hidden; }
.chapter-media img{
  width:100%; height: 78vh; max-height:760px; min-height:460px; object-fit:cover;
  transition: transform 1.4s var(--ease);
}
.chapter-media:hover img{ transform: scale(1.045); }
.chapter-media .tag-num{
  position:absolute; top:22px; left:22px;
  font-family: var(--serif); font-size:13px; letter-spacing:.16em; color:var(--bone);
  border:1px solid var(--line); background:rgba(10,9,8,.5); backdrop-filter: blur(6px);
  padding:7px 14px;
}
.chapter-copy .eyebrow{ display:block; margin-bottom:20px; }
.chapter-copy .chapter-title{
  font-size: clamp(30px, 3.6vw, 50px); line-height:1.12; margin-bottom: 26px;
}
.chapter-copy .chapter-story{
  font-family: var(--serif); font-style:italic; font-weight:400;
  font-size: 19px; line-height:1.75; color: var(--bone-dim);
  max-width: 460px; margin-bottom: 30px;
  border-left: 1px solid var(--gold); padding-left: 24px;
}
.chapter-copy .chapter-meaning{
  color: var(--bone-dim); font-size:15px; line-height:1.85; max-width:460px; margin-bottom:34px;
}
.chapter-meta{
  display:flex; gap:34px; margin-bottom: 38px; flex-wrap:wrap;
}
.chapter-meta div{ font-size:11.5px; letter-spacing:.1em; color: var(--bone-dim); }
.chapter-meta b{ display:block; color: var(--bone); font-family:var(--serif); font-size:14px; letter-spacing:0.02em; margin-top:4px; }

/* ==========================================================================
   FEATURED DROP GRID
   ========================================================================== */
.drop-head{
  display:flex; justify-content:space-between; align-items:flex-end; margin-bottom: 56px; gap: 24px; flex-wrap:wrap;
}
.drop-head .display{ font-size: clamp(30px,4vw,52px); }
.drop-head p{ color: var(--bone-dim); max-width: 380px; font-size:14.5px; line-height:1.7; }

.product-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--line-soft);
}
@media (max-width: 900px){ .product-grid{ grid-template-columns: 1fr; } }

.product-card{
  background: var(--ink); padding: 0; position:relative;
}
.product-card .pc-media{
  display:block; position:relative; aspect-ratio: 4/5; overflow:hidden; background:var(--ink-2);
}
.product-card .pc-media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition: opacity .7s var(--ease), transform 1.2s var(--ease);
}
.product-card .pc-media img.img-b{ opacity:0; }
.product-card:hover .pc-media img.img-a{ opacity:0; }
.product-card:hover .pc-media img.img-b{ opacity:1; }
.product-card:hover .pc-media img{ transform: scale(1.055); }

.pc-chapter{
  position:absolute; top:16px; left:16px; z-index:2;
  font-size:10.5px; letter-spacing:.14em; color: var(--gold-lt);
  background: rgba(10,9,8,.55); padding:6px 10px; backdrop-filter: blur(4px);
}
.pc-view-story{
  position:absolute; left:16px; bottom:16px; right:16px; z-index:2;
  display:flex; justify-content:space-between; align-items:center;
  font-size:11px; letter-spacing:.14em; color: var(--bone);
  opacity:0; transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.product-card:hover .pc-view-story{ opacity:1; transform:none; }
.pc-view-story span{ border-bottom:1px solid var(--gold-lt); padding-bottom:2px; }

.pc-body{ padding: 20px 4px 30px; }
.pc-row{ display:flex; justify-content:space-between; align-items:flex-start; gap:10px; }
.pc-name{ font-family: var(--serif); font-size: 18px; letter-spacing:0.01em; }
.pc-price{ font-size:14px; color: var(--bone-dim); white-space:nowrap; }
.pc-sub{ font-size:12px; color: var(--bone-dim); margin-top:6px; letter-spacing:.03em; }
.pc-actions{ display:flex; gap:14px; margin-top:16px; }
.pc-actions button{
  background:none; border:none; color:var(--bone-dim); font-size:11px; letter-spacing:.12em;
  padding-bottom:4px; border-bottom:1px solid var(--line);
  transition: color .3s, border-color .3s;
}
.pc-actions button:hover{ color: var(--bone); border-color: var(--bone); }

/* ==========================================================================
   CRAFT SECTION
   ========================================================================== */
.craft{ border-top:1px solid var(--line-soft); }
.craft-head{ text-align:center; max-width: 720px; margin: 0 auto 76px; }
.craft-head .display{ font-size: clamp(28px, 4vw, 48px); line-height:1.3; }
.craft-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); }
@media (max-width: 900px){ .craft-grid{ grid-template-columns: repeat(2,1fr); } }
.craft-item{ background: var(--ink); }
.craft-item .ci-media{ aspect-ratio: 1/1; overflow:hidden; }
.craft-item .ci-media img{ width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease); }
.craft-item:hover .ci-media img{ transform: scale(1.06); }
.craft-item .ci-text{ padding: 22px 22px 30px; }
.craft-item .ci-num{ font-family:var(--serif); font-size:12px; color:var(--gold-lt); letter-spacing:.1em; }
.craft-item h4{ font-family:var(--serif); font-size:17px; margin: 10px 0 8px; font-weight:500; }
.craft-item p{ font-size:13px; color: var(--bone-dim); line-height:1.7; }

/* ==========================================================================
   STYLING / HOW TO WEAR
   ========================================================================== */
.wear-tabs{ display:flex; gap:10px; margin-bottom:48px; flex-wrap:wrap; }
.wear-tab{
  background:none; border:1px solid var(--line); color: var(--bone-dim);
  padding: 11px 22px; font-size:11.5px; letter-spacing:.14em;
  transition: all .35s var(--ease);
}
.wear-tab.active, .wear-tab:hover{ border-color: var(--bone); color: var(--bone); }
.wear-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 900px){ .wear-grid{ grid-template-columns: repeat(2,1fr); } }
.wear-card{ display:block; position:relative; overflow:hidden; aspect-ratio: 3/4; }
.wear-card img{ width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease); }
.wear-card:hover img{ transform: scale(1.06); }
.wear-card::after{ content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(10,9,8,.85), transparent 55%); }
.wear-label{
  position:absolute; left:16px; bottom:16px; z-index:2; font-family: var(--serif); font-size:16px;
}
.wear-label small{ display:block; font-family: var(--sans); font-size:10.5px; letter-spacing:.14em; color: var(--gold-lt); margin-bottom:6px; }

/* ==========================================================================
   MANIFESTO
   ========================================================================== */
.manifesto{
  min-height: 100vh; display:flex; align-items:center; justify-content:center;
  text-align:center; position:relative; overflow:hidden;
  background: var(--ink);
}
.manifesto-bg{ position:absolute; inset:0; opacity:.28; }
.manifesto-bg img{ width:100%; height:100%; object-fit:cover; filter: grayscale(0.3) contrast(1.05); }
.manifesto::after{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 50% 50%, transparent 0%, var(--ink) 78%); }
.manifesto-inner{ position:relative; z-index:2; padding: 0 24px; }
.manifesto-inner .m-line{
  font-family: var(--serif); font-weight:600;
  font-size: clamp(22px, 3.6vw, 42px); line-height:1.5; color: var(--bone-dim);
}
.manifesto-inner .m-line.bright{ color: var(--bone); }
.manifesto-inner .m-final{
  margin-top: 34px; font-family: var(--serif); font-style:italic; font-size: clamp(24px,3vw,34px); color: var(--gold-lt);
}

/* ==========================================================================
   COMMUNITY
   ========================================================================== */
.community-head{ text-align:center; margin-bottom: 60px; }
.community-grid{ display:grid; grid-template-columns: repeat(5, 1fr); gap: 2px; background: var(--line-soft); }
@media (max-width: 900px){ .community-grid{ grid-template-columns: repeat(2, 1fr); } }
.community-item{ aspect-ratio: 1/1; overflow:hidden; position:relative; background: var(--ink-2); }
.community-item img{ width:100%; height:100%; object-fit:cover; filter: saturate(0.85); transition: transform 1s var(--ease), filter .5s; }
.community-item:hover img{ transform: scale(1.08); filter:saturate(1.05); }
.community-cta{ text-align:center; margin-top: 56px; }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter{
  border-top:1px solid var(--line-soft);
  text-align:center;
}
.newsletter .display{ font-size: clamp(28px, 4.4vw, 56px); max-width: 780px; margin: 0 auto; line-height:1.25; }
.newsletter p{ color: var(--bone-dim); margin: 20px auto 44px; max-width:420px; }
.newsletter-form{
  display:flex; max-width: 480px; margin: 0 auto; border-bottom: 1px solid var(--bone);
  padding-bottom: 14px;
}
.newsletter-form input{
  flex:1; background:none; border:none; color:var(--bone); font-size:15px; letter-spacing:.02em;
  padding: 6px 4px;
}
.newsletter-form input::placeholder{ color: var(--bone-dim); }
.newsletter-form button{
  background:none; border:none; color:var(--gold-lt); font-size:11.5px; letter-spacing:.14em; font-weight:600;
  white-space:nowrap;
}
.newsletter-note{ margin-top:16px; font-size:11.5px; color: var(--bone-dim); opacity:.8; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ border-top: 1px solid var(--line-soft); padding: 90px 0 30px; }
.footer-top{ display:grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; margin-bottom: 90px; }
@media (max-width: 780px){ .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 48px; } }
.footer-brand img{ height:52px; margin-bottom:18px; }
.footer-brand p{ color: var(--bone-dim); font-size:13.5px; max-width:260px; line-height:1.7; }
.footer-col h5{
  font-size:11.5px; letter-spacing:.16em; color: var(--gold-lt); margin-bottom:20px; font-weight:600;
}
.footer-col li{ margin-bottom:13px; }
.footer-col a{ color: var(--bone-dim); font-size:13.5px; transition: color .3s; }
.footer-col a:hover{ color: var(--bone); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
  padding-top: 30px; border-top: 1px solid var(--line-soft);
  font-size:12px; color: var(--bone-dim);
}
.footer-bottom .legal-links{ display:flex; gap:22px; }

/* ==========================================================================
   QUICK VIEW MODAL
   ========================================================================== */
.modal-overlay{
  position: fixed; inset:0; z-index: 700;
  background: rgba(6,5,5,.82); backdrop-filter: blur(4px);
  display:flex; align-items:center; justify-content:center; padding: 24px;
  opacity:0; visibility:hidden; transition: opacity .4s var(--ease), visibility 0s linear .4s;
}
.modal-overlay.open{ opacity:1; visibility:visible; transition: opacity .4s var(--ease); }
.modal-card{
  background: var(--ink-2); border:1px solid var(--line);
  max-width: 880px; width:100%; max-height: 86vh; overflow:auto;
  display:grid; grid-template-columns: 1fr 1fr;
  transform: translateY(24px); transition: transform .45s var(--ease);
}
.modal-overlay.open .modal-card{ transform:none; }
@media (max-width: 720px){ .modal-card{ grid-template-columns: 1fr; } }
.modal-media{ position:relative; aspect-ratio: 4/5; background: var(--ink); }
.modal-media img{ width:100%; height:100%; object-fit:cover; }
.modal-body{ padding: 40px 36px; position:relative; }
.modal-close{
  position:absolute; top:18px; right:18px; background:none; border:none; color:var(--bone-dim); z-index:5;
}
.modal-close svg{ width:20px; height:20px; }
.modal-body .eyebrow{ display:block; margin-bottom:14px; }
.modal-body .m-name{ font-family: var(--serif); font-size: 28px; margin-bottom:10px; }
.modal-body .m-price{ color: var(--bone-dim); font-size:15px; margin-bottom:22px; }
.modal-body .m-desc{ color: var(--bone-dim); font-size:14px; line-height:1.8; margin-bottom:26px; }

/* ==========================================================================
   SIZE / COLOR SELECTORS (shared with product page)
   ========================================================================== */
.opt-block{ margin-bottom:26px; }
.opt-label{ display:flex; justify-content:space-between; font-size:11.5px; letter-spacing:.12em; color: var(--bone-dim); margin-bottom:14px; }
.opt-label a{ text-decoration:underline; color: var(--bone-dim); }
.swatches{ display:flex; gap:10px; }
.swatch{
  width:38px; height:38px; border-radius:50%; border: 1px solid var(--line);
  cursor:pointer; position:relative; padding:0;
}
.swatch::after{ content:''; position:absolute; inset:3px; border-radius:50%; }
.swatch[data-color="black"]::after{ background:#161616; }
.swatch[data-color="maroon"]::after{ background:#5a1620; }
.swatch[data-color="red"]::after{ background:#8c1522; }
.swatch.active{ border-color: var(--bone); }
.swatch.active::before{
  content:''; position:absolute; inset:-5px; border:1px solid var(--gold-lt); border-radius:50%;
}
.sizes{ display:flex; gap:10px; flex-wrap:wrap; }
.size-btn{
  min-width:46px; height:46px; padding:0 8px; border:1px solid var(--line); background:none; color:var(--bone);
  font-size:12.5px; letter-spacing:.04em; transition: all .3s var(--ease);
}
.size-btn:hover{ border-color: var(--bone); }
.size-btn.active{ background: var(--bone); color: var(--ink); border-color:var(--bone); }
.qty-row{ display:flex; align-items:center; gap:0; border:1px solid var(--line); width:fit-content; }
.qty-row button{ background:none; border:none; color:var(--bone); width:42px; height:44px; font-size:16px; }
.qty-row span{ width:42px; text-align:center; font-size:14px; }

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast{
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--bone); color: var(--ink); padding: 16px 26px;
  font-size:13px; letter-spacing:.04em; z-index: 900;
  opacity:0; pointer-events:none; transition: opacity .4s var(--ease), transform .4s var(--ease);
  display:flex; align-items:center; gap:12px;
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0); }
.toast b{ color: var(--crimson); }

/* ==========================================================================
   PAGE HERO (product page, small header banner)
   ========================================================================== */
.page-spacer{ height: 92px; }

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.breadcrumb{
  font-size:11.5px; letter-spacing:.1em; color: var(--bone-dim); padding: 26px 0 0;
}
.breadcrumb a:hover{ color: var(--bone); }
.pdp{
  display:grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px;
  padding: 40px 0 130px;
  align-items:flex-start;
}
@media (max-width: 900px){ .pdp{ grid-template-columns: 1fr; gap: 40px; } }
.pdp-gallery{ position:sticky; top: 110px; }
@media (max-width:900px){ .pdp-gallery{ position:static; } }
.pdp-main{ aspect-ratio: 4/5; overflow:hidden; background: var(--ink-2); position:relative; }
.pdp-main img{ width:100%; height:100%; object-fit:cover; }
.pdp-thumbs{ display:flex; gap:10px; margin-top:10px; }
.pdp-thumb{ width:84px; height:104px; overflow:hidden; border:1px solid var(--line); opacity:.6; transition: opacity .3s; background:var(--ink-2); }
.pdp-thumb.active{ opacity:1; border-color:var(--gold-lt); }
.pdp-thumb img{ width:100%; height:100%; object-fit:cover; }

.pdp-info .p-eyebrow{ display:block; margin-bottom:14px; }
.pdp-info h1{ font-family:var(--serif); font-size: clamp(28px,3vw,38px); margin-bottom:8px; }
.pdp-info .p-chapter{ font-size:12px; letter-spacing:.1em; color:var(--bone-dim); margin-bottom:20px; }
.pdp-info .p-price{ font-size:20px; margin-bottom:22px; font-family:var(--serif); }
.pdp-info .p-desc{ color: var(--bone-dim); font-size:14.5px; line-height:1.85; margin-bottom:30px; max-width:440px; }

.pdp-cta{ margin-top: 8px; }
.pdp-cta .btn{ width:100%; }
.trust-list{ margin-top:22px; display:flex; flex-direction:column; gap:9px; }
.trust-list li{ font-size:13px; color: var(--bone-dim); display:flex; gap:10px; align-items:center; }
.trust-list svg{ width:14px; height:14px; color: var(--gold-lt); flex-shrink:0; }

.accordion{ margin-top: 44px; border-top: 1px solid var(--line); }
.acc-item{ border-bottom: 1px solid var(--line); }
.acc-head{
  width:100%; background:none; border:none; color:var(--bone);
  display:flex; justify-content:space-between; align-items:center;
  padding: 20px 2px; font-size:13px; letter-spacing:.08em; text-align:left;
}
.acc-head .plus{ font-family:var(--serif); font-size:18px; transition: transform .35s var(--ease); }
.acc-item.open .plus{ transform: rotate(45deg); }
.acc-panel{
  max-height:0; overflow:hidden; transition: max-height .45s var(--ease);
  color: var(--bone-dim); font-size:13.5px; line-height:1.85;
}
.acc-panel-inner{ padding: 0 2px 22px; }

.related-head{ margin: 0 0 40px; }

/* misc small screens */
@media (max-width: 780px){
  .intro-grid{ grid-template-columns:1fr; gap:44px; }
  .intro-media img{ height: 420px; }
  .chapter .container{ grid-template-columns:1fr; gap: 34px; }
  .chapter{ padding: 80px 0; }
  .chapter-media img{ height: 62vh; min-height: 380px; }
  .chapter.flip .container{ direction: ltr; }
  .craft-grid{ grid-template-columns: 1fr 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .header-left .menu-toggle span{ display:block; }
}
@media (max-width: 500px){
  .container{ padding: 0 20px; }
  .drop-head{ flex-direction:column; align-items:flex-start; }
}


/* Campaign gallery */
.campaign-gallery{ background:var(--ink-2); }
.campaign-gallery .section-kicker{ margin-bottom:12px; }
.campaign-gallery .display{ margin-bottom:34px; }
.campaign-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
.campaign-grid img{ width:100%; height:360px; object-fit:cover; display:block; }
.campaign-grid img:nth-child(1), .campaign-grid img:nth-child(2){ grid-column:span 2; height:460px; }
.campaign-grid img:nth-child(3){ grid-column:span 1; height:460px; }

/* Marketplace buttons */
.marketplace-links{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px; }
.marketplace-btn{ min-height:52px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; text-transform:uppercase; letter-spacing:.1em; font-size:12px; font-weight:600; color:var(--bone); transition:transform .25s var(--ease), border-color .25s var(--ease); }
.marketplace-btn:hover{ transform:translateY(-2px); border-color:var(--gold-lt); }
.marketplace-note{ margin-top:10px; font-size:11px; color:var(--bone-dim); }
@media(max-width:780px){ .campaign-grid{ grid-template-columns:1fr 1fr; } .campaign-grid img, .campaign-grid img:nth-child(1), .campaign-grid img:nth-child(2), .campaign-grid img:nth-child(3){ grid-column:auto; height:280px; } .campaign-grid img:first-child{ grid-column:span 2; height:420px; } }
@media(max-width:500px){ .marketplace-links{ grid-template-columns:1fr; } .campaign-grid{ gap:8px; } }

/* Professional marketplace PDP */
.marketplace-pdp{align-self:center; max-width:520px; padding:52px; border:1px solid var(--line-soft); background:linear-gradient(145deg,var(--ink-2),var(--ink));}
.marketplace-pdp h1{font-size:clamp(30px,4vw,48px); margin:14px 0 18px;}
.marketplace-intro{color:var(--bone-dim); font-size:15px; line-height:1.8; margin-bottom:30px;}
.marketplace-premium{grid-template-columns:1fr; gap:14px;}
.marketplace-premium .marketplace-btn{min-height:72px; padding:0 24px; justify-content:space-between; background:transparent;}
.marketplace-premium .marketplace-btn span{font-size:14px; letter-spacing:.16em;}
.marketplace-premium .marketplace-btn small{font-size:11px; color:var(--bone-dim); letter-spacing:.08em;}
.marketplace-premium .marketplace-btn:hover{background:var(--bone); color:var(--ink);}
.marketplace-premium .marketplace-btn:hover small{color:var(--ink);}
.shop-showcase{border-top:1px solid var(--line-soft);}
.shop-grid{grid-template-columns:repeat(3,1fr); background:transparent; gap:14px;}
.shop-image-card{display:block; overflow:hidden; aspect-ratio:4/5; background:var(--ink-2);}
.shop-image-card img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s var(--ease);}
.shop-image-card:hover img{transform:scale(1.04);}
@media(max-width:900px){.shop-grid{grid-template-columns:repeat(2,1fr)}.marketplace-pdp{padding:32px;max-width:none}}
@media(max-width:500px){.shop-grid{grid-template-columns:1fr}.marketplace-pdp{padding:24px}}
