/* ============================================================
   YEJU CHOCOLATE — luxury editorial design system
   Boska (serif display) + Switzer (sans) · dark chocolate / cream / gold
   ============================================================ */

:root {
  /* palette — YEJU production system */
  --choc-950: #1e100b;   /* darkest */
  --choc-900: #2a1812;   /* dark chocolate (primary dark bg) */
  --choc-800: #35201a;
  --choc-700: #462c22;
  --cocoa:    #7a4d35;    /* milk chocolate */
  --milk:     #7a4d35;
  --gold:     #c49a58;    /* gold accent */
  --gold-2:   #dcbe8a;    /* light gold */
  --cream:    #fdf7ef;    /* cream */
  --cream-2:  #e8ddcf;    /* soft beige */
  --beige:    #e8ddcf;
  --white:    #fffdfc;    /* warm white */
  --brand-red:#e11347;    /* authentic Yeju hexagon */

  --ink:      #2a1812;    /* text on cream */
  --ink-soft: #6f5240;
  --on-dark:  #f5ece0;
  --on-dark-soft: rgba(245, 236, 224, 0.62);

  --line-dark:  rgba(245, 236, 224, 0.16);
  --line-light: rgba(42, 24, 18, 0.14);

  /* DM Sans only — hierarchy through weight */
  --f-serif: "DM Sans", system-ui, sans-serif;
  --f-sans:  "DM Sans", system-ui, -apple-system, sans-serif;

  --pad: clamp(1.25rem, 5.5vw, 8rem);
  --maxw: 1680px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.62, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--f-sans);
  background: var(--choc-900);
  color: var(--on-dark);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.006em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--choc-950); }

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -60%; z-index: 9000; pointer-events: none;
  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.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; animation: grain 0.9s steps(3) infinite; mix-blend-mode: overlay;
}
@keyframes grain { 0%{transform:translate(0,0)} 33%{transform:translate(-3%,2%)} 66%{transform:translate(2%,-3%)} 100%{transform:translate(0,0)} }



/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem, 2.2vw, 1.8rem) var(--pad);
  transition: background .6s var(--ease), padding .5s var(--ease), box-shadow .5s;
  color: var(--on-dark);
}
.nav.light { color: var(--ink); }
.nav.scrolled { padding-top: .9rem; padding-bottom: .9rem; background: rgba(20,13,9,0.72); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line-dark); color: var(--on-dark); }
.nav.scrolled.light { background: rgba(244,235,221,0.82); box-shadow: 0 1px 0 var(--line-light); color: var(--ink); }
.nav-logo { display: inline-flex; align-items: center; gap: 11px; }
.hexmark { width: 34px; height: 34px; flex: 0 0 auto; transition: transform .6s var(--ease); }
.nav-logo:hover .hexmark { transform: rotate(30deg); }
.hexmark .hx-bg { fill: var(--brand-red); }
.hexmark text { text-anchor: middle; fill: #fff; font-family: var(--f-sans); font-weight: 700; }
.hexmark .hx-y { font-size: 24px; letter-spacing: 0.4px; }
.hexmark .hx-c { font-size: 8.5px; letter-spacing: 0.6px; }
.hexmark .hx-n { font-size: 8.5px; letter-spacing: 2.2px; }
.wordmark { font-family: var(--f-serif); font-weight: 600; font-size: 1.45rem; letter-spacing: 0.005em; }
.footer .wordmark { color: var(--cream); }
@media (max-width: 520px) { .wordmark { display: none; } }
.nav-links { display: flex; gap: clamp(1.2rem, 2.4vw, 2.6rem); }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.nav-cta { border: 1px solid currentColor; border-radius: 999px; padding: 0.6rem 1.3rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: background .4s var(--ease), color .4s, border-color .4s; }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--choc-950); }
.nav-burger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav-burger span { height: 1.5px; width: 100%; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* mobile menu overlay */
.menu { position: fixed; inset: 0; z-index: 490; background: var(--choc-950); color: var(--cream); display: flex; flex-direction: column; justify-content: center; padding: var(--pad); transform: translateY(-100%); transition: transform .7s var(--ease); }
.menu.open { transform: translateY(0); }
.menu a { font-family: var(--f-serif); font-size: clamp(2rem, 8vw, 3.4rem); font-weight: 500; padding: 0.3rem 0; }
.menu a:hover { color: var(--gold); }
.menu-foot { margin-top: 2.5rem; display: flex; gap: 1.5rem; font-size: 0.8rem; color: var(--on-dark-soft); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   BUTTONS / LINKS
   ============================================================ */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.05rem 2.1rem; border-radius: 999px; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; overflow: hidden;
  transition: color .5s var(--ease);
}
.btn span { position: relative; z-index: 2; }
.btn-arrow { position: relative; z-index: 2; transition: transform .5s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn-gold { background: var(--gold); color: var(--choc-950); }
.btn-gold::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.5) 50%, transparent 80%); transform: translateX(-120%); transition: transform .8s var(--ease); }
.btn-gold:hover::before { transform: translateX(120%); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: var(--gold); }
.btn-line { border: 1px solid currentColor; }
.btn-line::before { content: ''; position: absolute; inset: 0; z-index: 1; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.btn-line:hover { color: var(--choc-950); }
.btn-line:hover::before { transform: scaleX(1); transform-origin: left; }
.link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding-bottom: 5px; border-bottom: 1px solid currentColor; }
.link i { transition: transform .5s var(--ease); }
.link:hover i { transform: translateX(5px); }

/* ============================================================
   TYPE + LAYOUT HELPERS
   ============================================================ */
.wrap { max-width: var(--maxw); margin: 0 auto; }
.section { padding: clamp(4.5rem, 12vh, 11rem) var(--pad); position: relative; }
.section-cream { background: var(--cream); color: var(--ink); }
.section-beige { background: var(--cream-2); color: var(--ink); }
.section-dark { background: var(--choc-900); color: var(--on-dark); }
.section-darker { background: var(--choc-950); color: var(--on-dark); }

.eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.7rem; }
.display { font-family: var(--f-sans); font-weight: 700; line-height: 1.0; letter-spacing: -0.035em; }
h1,h2,h3,h4 { font-family: var(--f-sans); font-weight: 700; letter-spacing: -0.033em; line-height: 1.0; }
h3,h4 { font-weight: 600; letter-spacing: -0.02em; }
.serif-i { font-style: italic; font-weight: 500; letter-spacing: -0.02em; }
em { font-style: italic; }
.h-xl { font-size: clamp(2.6rem, 7vw, 7rem); }
.h-lg { font-size: clamp(2.2rem, 5.2vw, 4.6rem); }
.h-md { font-size: clamp(1.7rem, 3.4vw, 2.9rem); }
.serif-i { font-style: italic; font-weight: 400; }
.tx-gold { color: var(--gold); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.6; color: var(--on-dark-soft); }
.section-cream .lead, .section-beige .lead { color: var(--ink-soft); }

.sec-head { max-width: 24ch; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.sec-head .eyebrow { margin-bottom: 1.5rem; }

/* reveal + split */
.rv { opacity: 0; transform: translateY(34px); will-change: opacity, transform; }
.rv.in { opacity: 1; transform: none; transition: opacity 1.05s var(--ease), transform 1.05s var(--ease); }
.split-line { overflow: hidden; }
.split-line > * { display: block; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 108%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,13,9,0.9) 4%, rgba(20,13,9,0.15) 45%, rgba(20,13,9,0.55) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--pad) clamp(3rem, 8vh, 6rem); color: var(--cream); }
.hero-eyebrow { color: var(--gold-2); margin-bottom: 1.8rem; }
.hero h1 { font-size: clamp(2.8rem, 9vw, 9.5rem); line-height: 0.98; letter-spacing: -0.02em; max-width: 16ch; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold-2); }
[data-hero-line] { display: block; overflow: hidden; }
[data-hero-line] > * { display: block; will-change: transform; }
.hero-foot { margin-top: clamp(2rem, 4vw, 3rem); display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.hero-sub { max-width: 34ch; color: rgba(244,235,221,0.8); }
.hero-scroll { display: flex; align-items: center; gap: 0.8rem; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,235,221,0.7); }
.hero-scroll i { width: 1px; height: 46px; background: rgba(244,235,221,0.4); position: relative; overflow: hidden; }
.hero-scroll i::after { content: ''; position: absolute; inset: 0; background: var(--gold); animation: scrolldrop 2.4s var(--ease) infinite; }
@keyframes scrolldrop { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(100%)} }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; white-space: nowrap; padding: 1.5rem 0; border-block: 1px solid var(--line-dark); }
.section-cream .marquee, .section-beige .marquee { border-color: var(--line-light); }
.marquee-track { display: inline-flex; align-items: center; gap: 2.6rem; will-change: transform; }
.marquee-track span { font-family: var(--f-serif); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 2.2rem); }
.marquee-track b { color: var(--gold); }

/* ============================================================
   FEATURED COLLECTIONS (editorial cards)
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }
.feat-card { position: relative; overflow: hidden; border-radius: 3px; }
.feat-card .img { overflow: hidden; aspect-ratio: 3/4; }
.feat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.feat-card:hover img { transform: scale(1.06); }
.feat-card .cap { padding: 1.5rem 0 0; display: flex; justify-content: space-between; align-items: baseline; }
.feat-card h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
.feat-card .cap span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.feat-card .num { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2; color: var(--cream); font-family: var(--f-serif); font-style: italic; font-size: 1.1rem; mix-blend-mode: difference; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SPLIT STORY
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; overflow: hidden; border-radius: 3px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform 1.4s var(--ease); }
.split-body .eyebrow { margin-bottom: 1.6rem; }
.split-body h2 { margin-bottom: 1.6rem; }
.split-body p { margin-bottom: 1.2rem; max-width: 46ch; }
.split-body .link { margin-top: 1.4rem; }
.split-stats { display: flex; gap: clamp(1.5rem,4vw,3rem); margin-top: 2.5rem; flex-wrap: wrap; }
.split-stats b { font-family: var(--f-serif); font-size: clamp(2rem,4vw,3rem); font-weight: 500; display: block; color: var(--gold); line-height: 1; }
.split-stats span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-soft); margin-top: 0.5rem; display: block; }
.section-cream .split-stats span, .section-beige .split-stats span { color: var(--ink-soft); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }

/* ============================================================
   BESTSELLERS — horizontal scroll gallery
   ============================================================ */
.hscroll-head { display: flex; justify-content: space-between; align-items: flex-end; padding: 0 var(--pad); margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap; }
.hrail { display: flex; gap: clamp(1rem, 2vw, 1.8rem); padding: 0 var(--pad); will-change: transform; }
.hcard { flex: 0 0 auto; width: clamp(260px, 26vw, 400px); }
.hcard .img { overflow: hidden; aspect-ratio: 3/4; border-radius: 3px; }
.hcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hcard:hover img { transform: scale(1.05); }
.hcard .cap { padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.hcard h3 { font-size: 1.5rem; }
.hcard .price { color: var(--gold); font-size: 0.95rem; white-space: nowrap; }
.hcard .note { font-size: 0.8rem; color: var(--on-dark-soft); letter-spacing: 0.04em; margin-top: 0.3rem; }
.section-cream .hcard .note, .section-beige .hcard .note { color: var(--ink-soft); }

/* ============================================================
   INGREDIENTS strip
   ============================================================ */
.ing-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(0.7rem, 1.4vw, 1.2rem); }
.ing-grid figure { overflow: hidden; border-radius: 3px; }
.ing-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ing-grid figure:hover img { transform: scale(1.05); }
.ig-a { grid-column: span 5; aspect-ratio: 4/5; }
.ig-b { grid-column: span 4; aspect-ratio: 4/5; }
.ig-c { grid-column: span 3; aspect-ratio: 4/5; }
.ig-w { grid-column: span 7; aspect-ratio: 16/10; }
.ig-t { grid-column: span 5; aspect-ratio: 4/5; }
@media (max-width: 760px) { .ig-a,.ig-b,.ig-c,.ig-w,.ig-t { grid-column: span 6; aspect-ratio: 1; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-big { font-family: var(--f-serif); font-weight: 400; font-size: clamp(1.6rem, 4vw, 3.4rem); line-height: 1.24; letter-spacing: -0.01em; max-width: 20ch; margin: 0 auto; text-align: center; }
.quote-big em { font-style: italic; color: var(--gold); }
.quote-foot { text-align: center; margin-top: 2.5rem; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-soft); }
.section-cream .quote-foot, .section-beige .quote-foot { color: var(--ink-soft); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,3vw,2rem); }
.review { border: 1px solid var(--line-light); border-radius: 4px; padding: clamp(1.6rem,3vw,2.4rem); background: rgba(255,255,255,0.35); }
.section-dark .review, .section-darker .review { border-color: var(--line-dark); background: rgba(255,255,255,0.03); }
.review .stars { color: var(--gold); letter-spacing: 0.16em; font-size: 0.9rem; }
.review p { font-family: var(--f-serif); font-size: clamp(1.1rem,1.7vw,1.4rem); line-height: 1.4; margin: 1.1rem 0 1.4rem; }
.review footer { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.section-dark .review footer, .section-darker .review footer { color: var(--on-dark-soft); }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.ig-row { display: grid; grid-template-columns: repeat(6,1fr); gap: clamp(0.5rem,1vw,0.9rem); }
.ig-row figure { overflow: hidden; aspect-ratio: 1; border-radius: 3px; position: relative; }
.ig-row img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .5s; filter: saturate(0.95); }
.ig-row figure:hover img { transform: scale(1.08); filter: saturate(1.1); }
@media (max-width: 760px) { .ig-row { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news { text-align: center; }
.news h2 { max-width: 18ch; margin: 0 auto 1.4rem; }
.news-form { display: flex; gap: 0.6rem; max-width: 480px; margin: 2.2rem auto 0; border-bottom: 1px solid var(--line-dark); padding-bottom: 0.6rem; }
.section-cream .news-form, .section-beige .news-form { border-color: var(--line-light); }
.news-form input { flex: 1; background: none; border: none; outline: none; font-size: 1rem; padding: 0.4rem 0; }
.news-form input::placeholder { color: var(--on-dark-soft); }
.section-cream .news-form input::placeholder { color: var(--ink-soft); }
.news-form button { color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.76rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--choc-950); color: var(--on-dark); padding: clamp(4rem,9vw,7rem) var(--pad) 2.4rem; }
.footer-big { font-family: var(--f-serif); font-size: clamp(3rem, 12vw, 11rem); line-height: 0.9; letter-spacing: -0.02em; color: var(--cream); border-bottom: 1px solid var(--line-dark); padding-bottom: clamp(2rem,5vw,3.5rem); }
.footer-big em { font-style: italic; color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding: clamp(2.5rem,5vw,4rem) 0; border-bottom: 1px solid var(--line-dark); }
.footer-lead { font-family: var(--f-serif); font-size: clamp(1.3rem,2.2vw,1.8rem); line-height: 1.25; max-width: 20ch; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; margin-bottom: 0.7rem; font-size: 0.95rem; color: var(--on-dark-soft); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.78rem; color: var(--on-dark-soft); flex-wrap: wrap; gap: 1rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.phero { padding: clamp(9rem, 20vh, 15rem) var(--pad) clamp(3rem,7vh,6rem); position: relative; }
.phero .eyebrow { margin-bottom: 1.6rem; }
.phero h1 { font-size: clamp(2.8rem, 8vw, 7.5rem); line-height: 0.96; max-width: 15ch; }
.phero h1 em { font-style: italic; color: var(--gold); }
.phero .lead { margin-top: 1.8rem; max-width: 46ch; }
.phero-media { margin-top: clamp(2.5rem,6vw,4.5rem); overflow: hidden; border-radius: 3px; }
.phero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 21/9; }

/* ============================================================
   COLLECTIONS PAGE — grid + filters
   ============================================================ */
.filters { display: flex; gap: 0.6rem; flex-wrap: wrap; padding: 0 var(--pad) 2.5rem; }
.filter { border: 1px solid var(--line-light); border-radius: 999px; padding: 0.6rem 1.3rem; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; transition: background .4s var(--ease), color .4s, border-color .4s; }
.section-dark .filter, .section-darker .filter { border-color: var(--line-dark); }
.filter:hover { border-color: var(--gold); color: var(--gold); }
.filter.active { background: var(--gold); border-color: var(--gold); color: var(--choc-950); }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,2.4vw,2.4rem) clamp(1rem,2vw,1.8rem); padding: 0 var(--pad); }
.prod { display: block; }
.prod .img { overflow: hidden; aspect-ratio: 3/4; border-radius: 3px; position: relative; background: var(--cream-2); }
.prod img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.prod:hover img { transform: scale(1.05); }
.prod .tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: var(--choc-950); color: var(--cream); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 999px; }
.prod .cap { padding-top: 1.1rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.prod h3 { font-size: 1.4rem; }
.prod .price { color: var(--gold); white-space: nowrap; }
.prod .note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.3rem; }
.section-dark .prod .note { color: var(--on-dark-soft); }
.prod.hide { display: none; }
@media (max-width: 860px) { .prod-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .prod-grid { gap: 1.4rem 0.7rem; }
  .prod h3 { font-size: 0.95rem; }
  .prod .cap { padding-top: 0.65rem; flex-wrap: wrap; gap: 0.1rem 0.6rem; }
  .prod .price { font-size: 0.78rem; }
  .prod .note { font-size: 0.68rem; margin-top: 0.1rem; }
  .prod .tag { font-size: 0.52rem; padding: 0.28rem 0.55rem; top: 0.55rem; left: 0.55rem; }
  .prod .wish { width: 30px; height: 30px; top: 0.55rem; right: 0.55rem; }
  .prod .wish svg { width: 13px; height: 13px; }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,5vw,5rem); padding: clamp(8rem,16vh,11rem) var(--pad) clamp(4rem,8vh,7rem); align-items: start; }
.pdp-gallery { display: grid; gap: 1rem; }
.pdp-gallery figure { overflow: hidden; border-radius: 3px; background: var(--cream-2); }
.pdp-gallery img { width: 100%; object-fit: cover; }
.pdp-info { position: sticky; top: clamp(6rem, 12vh, 8rem); }
.pdp-info .eyebrow { margin-bottom: 1.2rem; }
.pdp-info h1 { font-size: clamp(2.4rem,4.5vw,3.8rem); margin-bottom: 1rem; }
.pdp-price { font-family: var(--f-serif); font-size: 1.6rem; color: var(--gold); margin-bottom: 1.6rem; }
.pdp-info .lead { margin-bottom: 2rem; }
.pdp-meta { border-top: 1px solid var(--line-light); }
.section-dark .pdp-meta { border-color: var(--line-dark); }
.pdp-meta details { border-bottom: 1px solid var(--line-light); }
.section-dark .pdp-meta details { border-color: var(--line-dark); }
.pdp-meta summary { list-style: none; cursor: pointer; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.pdp-meta summary::-webkit-details-marker { display: none; }
.pdp-meta summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); transition: transform .4s; }
.pdp-meta details[open] summary::after { transform: rotate(45deg); }
.pdp-meta .body { padding-bottom: 1.4rem; color: var(--ink-soft); line-height: 1.7; font-size: 0.95rem; }
.section-dark .pdp-meta .body { color: var(--on-dark-soft); }
.nutrition { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.4rem 2rem; }
.nutrition div { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dotted var(--line-light); font-size: 0.9rem; }
.pdp-actions { display: flex; gap: 0.8rem; margin: 2rem 0 1rem; flex-wrap: wrap; }
.pdp-deliver { font-size: 0.85rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.5rem; }
.section-dark .pdp-deliver { color: var(--on-dark-soft); }
.pdp-deliver b { color: var(--gold); }
/* sticky add-to-cart bar */
.buybar { position: fixed; left: 0; bottom: 0; width: 100%; z-index: 450; background: rgba(20,13,9,0.9); backdrop-filter: blur(14px); border-top: 1px solid var(--line-dark); color: var(--cream); padding: 0.9rem var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 1rem; transform: translateY(120%); transition: transform .6s var(--ease); }
.buybar.show { transform: translateY(0); }
.buybar .bb-name { font-family: var(--f-serif); font-size: 1.15rem; }
.buybar .bb-price { color: var(--gold); }
@media (max-width: 860px) { .pdp { grid-template-columns: 1fr; } .pdp-info { position: static; } .buybar .bb-meta span { display:none; } }

/* ============================================================
   STORY / TIMELINE
   ============================================================ */
.timeline { border-top: 1px solid var(--line-dark); }
.section-cream .timeline, .section-beige .timeline { border-color: var(--line-light); }
.tl-row { display: grid; grid-template-columns: 0.5fr 1.5fr; gap: clamp(1rem,4vw,4rem); padding: clamp(2rem,4vw,3.5rem) 0; border-bottom: 1px solid var(--line-dark); align-items: start; }
.section-cream .tl-row, .section-beige .tl-row { border-color: var(--line-light); }
.tl-year { font-family: var(--f-serif); font-style: italic; font-size: clamp(1.6rem,3vw,2.4rem); color: var(--gold); }
.tl-body h3 { font-size: clamp(1.5rem,2.6vw,2.2rem); margin-bottom: 1rem; }
.tl-body p { max-width: 52ch; color: var(--ink-soft); }
.section-dark .tl-body p { color: var(--on-dark-soft); }
@media (max-width: 640px) { .tl-row { grid-template-columns: 1fr; gap: 0.8rem; } }

/* ============================================================
   GIFTING
   ============================================================ */
.gift-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: clamp(0.8rem,1.8vw,1.5rem); }
.gcard { position: relative; overflow: hidden; border-radius: 3px; }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gcard:hover img { transform: scale(1.06); }
.gcard figcaption { position: absolute; inset: auto 0 0 0; padding: 1.6rem; background: linear-gradient(transparent, rgba(20,13,9,0.9)); color: var(--cream); }
.gcard figcaption span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); }
.gcard figcaption h3 { font-size: clamp(1.3rem,2.2vw,1.9rem); margin-top: 0.3rem; }
.g-lg { grid-column: span 4; aspect-ratio: 16/11; }
.g-tall { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.g-sm { grid-column: span 2; aspect-ratio: 4/5; }
.g-wide { grid-column: span 4; aspect-ratio: 16/9; }
@media (max-width: 760px) { .g-lg,.g-tall,.g-sm,.g-wide { grid-column: span 6; grid-row: auto; aspect-ratio: 4/3; } }

/* forms */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; max-width: 720px; }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.field input, .field textarea, .field select { background: none; border: none; border-bottom: 1px solid var(--line-light); padding: 0.7rem 0; outline: none; font-size: 1rem; }
.section-dark .field input, .section-dark .field textarea, .section-dark .field select { border-color: var(--line-dark); }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }

/* ============================================================
   STORE LOCATOR
   ============================================================ */
.stores { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.store-list { display: flex; flex-direction: column; }
.store { padding: 1.8rem 0; border-bottom: 1px solid var(--line-light); cursor: pointer; transition: padding-left .4s var(--ease); }
.section-dark .store { border-color: var(--line-dark); }
.store:hover, .store.active { padding-left: 1rem; }
.store h3 { font-size: clamp(1.3rem,2.2vw,1.8rem); margin-bottom: 0.4rem; }
.store.active h3, .store:hover h3 { color: var(--gold); }
.store p { font-size: 0.9rem; color: var(--ink-soft); }
.section-dark .store p { color: var(--on-dark-soft); }
.store .hours { color: var(--gold); font-size: 0.8rem; margin-top: 0.4rem; letter-spacing: 0.04em; }
.store-map { position: sticky; top: 8rem; align-self: start; border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; background: var(--choc-800); }
.store-map svg { width: 100%; height: 100%; }
.map-pin { fill: var(--gold); transition: fill .4s; cursor: pointer; }
.map-pin.active { fill: var(--cream); }
@media (max-width: 860px) { .stores { grid-template-columns: 1fr; } .store-map { position: relative; top: 0; order: -1; aspect-ratio: 16/10; } }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3vw,2.6rem); }
.post .img { overflow: hidden; aspect-ratio: 4/3; border-radius: 3px; }
.post img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.post:hover img { transform: scale(1.05); }
.post .meta { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 1.2rem 0 0.7rem; }
.post h3 { font-size: clamp(1.3rem,2vw,1.7rem); line-height: 1.15; }
.post p { color: var(--ink-soft); margin-top: 0.7rem; font-size: 0.95rem; }
.section-dark .post p { color: var(--on-dark-soft); }
.post-lead { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; margin-bottom: clamp(3rem,6vw,5rem); }
.post-lead .img { aspect-ratio: 16/11; overflow: hidden; border-radius: 3px; }
.post-lead h2 { font-size: clamp(1.8rem,3.4vw,3rem); line-height: 1.05; margin: 1rem 0; }
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr 1fr; } .post-lead { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line-light); }
.section-dark .faq { border-color: var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-light); }
.section-dark .faq details { border-color: var(--line-dark); }
.faq summary { list-style: none; cursor: pointer; padding: 1.6rem 0; display: flex; justify-content: space-between; gap: 2rem; align-items: center; font-family: var(--f-serif); font-size: clamp(1.2rem,2.2vw,1.7rem); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold); font-family: var(--f-sans); transition: transform .4s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .body { padding-bottom: 1.6rem; color: var(--ink-soft); line-height: 1.7; max-width: 62ch; }
.section-dark .faq .body { color: var(--on-dark-soft); }

/* utility */
.center { text-align: center; }
.mt-cta { margin-top: clamp(2.5rem,5vw,4rem); }
.two-col-copy { columns: 2; column-gap: clamp(2rem,4vw,4rem); max-width: 900px; }
.two-col-copy p { margin-bottom: 1.1rem; break-inside: avoid; }
@media (max-width: 640px) { .two-col-copy { columns: 1; } }

/* ============================================================
   ANATOMY — one bar, its properties (signature showcase)
   Background matches the almond photo (#DDAD61 mustard gold)
   ============================================================ */
.anatomy { position: relative; overflow: hidden; background: linear-gradient(178deg, #e2b369 0%, #ddad61 46%, #d4a254 100%); color: var(--ink); }
.anatomy .eyebrow { color: var(--choc-900); }
.anatomy .serif-i.tx-gold, .anatomy .tx-gold { color: var(--choc-900); font-style: italic; }
.anatomy .prop p { color: rgba(42, 24, 18, 0.66); }
.anatomy .prop .pn { color: var(--choc-900); }
.anatomy .prop::after { background: linear-gradient(90deg, var(--choc-900), transparent); }
.anatomy-col.left .prop::after { background: linear-gradient(270deg, var(--choc-900), transparent); }
.anatomy .prop::before { background: var(--choc-900); }
.anatomy .btn-gold { background: var(--choc-900); color: var(--cream); }
.anatomy .btn-gold:hover { background: var(--choc-950); }
.anatomy .anatomy-bar { box-shadow: 0 40px 90px -35px rgba(60, 34, 12, 0.55); }
.anatomy .anatomy-center::before { background: radial-gradient(circle, rgba(255, 235, 200, 0.5), transparent 66%); }

/* ============================================================
   HERO 2 — light editorial collage (landing redesign)
   ============================================================ */
.hero2 { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--cream); color: var(--ink); overflow: hidden; padding: clamp(7rem, 14vh, 9rem) var(--pad) clamp(3rem, 7vh, 5rem); }
.hero2-inner { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; width: 100%; max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }
.hero2 .eyebrow { color: var(--brand-red); }
.hero2 h1 { font-size: clamp(3rem, 7.2vw, 7.2rem); line-height: 0.96; letter-spacing: -0.04em; margin: 1.6rem 0 1.8rem; }
.hero2 h1 em { font-style: italic; font-weight: 500; color: var(--brand-red); }
.hero2-sub { max-width: 40ch; color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.18rem); }
.hero2-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2.4rem; }
.btn-red { background: var(--brand-red); color: #fff; }
.btn-red:hover { background: #c30f3d; }
.hero2-ticks { display: flex; gap: clamp(1.2rem, 3vw, 2.4rem); margin-top: clamp(2.4rem, 5vh, 3.6rem); padding-top: 1.6rem; border-top: 1px solid var(--line-light); flex-wrap: wrap; }
.hero2-ticks li { list-style: none; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 0.5rem; }
.hero2-ticks li b { color: var(--brand-red); font-weight: 700; }
.hero2-media { position: relative; aspect-ratio: 5/5.6; }
.hm-a { position: absolute; inset: 0 8% 12% 0; overflow: hidden; border-radius: 14px; box-shadow: 0 50px 90px -40px rgba(42,24,18,0.5); transform: rotate(-1.5deg); }
.hm-a img { width: 100%; height: 100%; object-fit: cover; }
.hm-b { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 3/3.6; overflow: hidden; border-radius: 12px; border: 7px solid var(--cream); box-shadow: 0 34px 70px -30px rgba(42,24,18,0.5); transform: rotate(2.5deg); }
.hm-b img { width: 100%; height: 100%; object-fit: cover; }
.hm-seal { position: absolute; top: -20px; left: -22px; width: clamp(72px, 7vw, 100px); z-index: 3; filter: drop-shadow(0 14px 28px rgba(42,24,18,0.35)); animation: sealspin 22s linear infinite; }
@media (max-width: 900px) {
  .hero2-inner { grid-template-columns: 1fr; }
  .hero2-media { order: -1; max-width: 480px; aspect-ratio: 5/5; }
  .hero2 { padding-top: 6.5rem; }
}

/* ============================================================
   PHILOSOPHY — numbered editorial (redesigned statement)
   ============================================================ */
.philo { background: var(--cream); color: var(--ink); position: relative; overflow: hidden; }
.philo-head { max-width: 1180px; }
.philo-head .eyebrow { color: var(--brand-red); }
.philo-head h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); letter-spacing: -0.035em; line-height: 1.0; margin-top: 1.6rem; }
.philo-head h2 em { font-style: italic; font-weight: 500; color: var(--brand-red); }
.philo-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 3rem); margin-top: clamp(3rem, 7vw, 5rem); }
.philo-col { border-top: 2px solid var(--ink); padding-top: 1.4rem; }
.philo-col .pnum { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; color: var(--brand-red); }
.philo-col h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); margin: 0.7rem 0 0.6rem; }
.philo-col p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }
@media (max-width: 760px) { .philo-cols { grid-template-columns: 1fr; } }

/* ============================================================
   SHOP BY COLLECTION
   ============================================================ */
.shopby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.9rem, 1.8vw, 1.5rem); }
.shopcard { position: relative; display: block; overflow: hidden; border-radius: 12px; aspect-ratio: 3/4; }
.shopcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.shopcard:hover img { transform: scale(1.06); }
.shopcard::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,16,11,0.72) 0%, transparent 46%); }
.shopcard .sc-cap { position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.2rem; z-index: 2; color: var(--cream); display: flex; align-items: flex-end; justify-content: space-between; gap: 0.8rem; }
.shopcard .sc-cap h3 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: #fff; }
.shopcard .sc-cap span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.shopcard .sc-arrow { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--cream); color: var(--ink); display: grid; place-items: center; font-size: 1rem; transition: background .35s, color .35s, transform .5s var(--ease); }
.shopcard:hover .sc-arrow { background: var(--brand-red); color: #fff; transform: rotate(-45deg); }
@media (max-width: 900px) { .shopby-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .shopby-grid { grid-template-columns: 1fr; gap: 1rem; } .shopcard { aspect-ratio: 4/3; } .shopcard .sc-cap { left: 1rem; right: 1rem; bottom: 1rem; } .shopcard .sc-arrow { width: 34px; height: 34px; } }

/* ---------- decorative brand graphics (almonds, beans, hexagons) ---------- */
.deco { position: absolute; pointer-events: none; z-index: 1; }
.deco svg { display: block; width: 100%; height: 100%; }
.deco-almond svg path { fill: currentColor; }
.deco-float { animation: decofloat 7s ease-in-out infinite; }
.deco-float.d2 { animation-duration: 9s; animation-delay: -3s; }
.deco-float.d3 { animation-duration: 11s; animation-delay: -5s; }
@keyframes decofloat { 0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-16px) rotate(calc(var(--r, 0deg) + 6deg)); } }
.deco-hex { opacity: 0.07; }
.deco-hex svg path { fill: none; stroke: currentColor; stroke-width: 1.4; }
@media (max-width: 760px) { .deco { display: none; } }
.anatomy-stage { display: grid; grid-template-columns: 1fr minmax(220px, 30vw) 1fr; align-items: center; gap: clamp(1.5rem, 4vw, 4.5rem); max-width: 1240px; margin: 0 auto; position: relative; }
.anatomy-center { position: relative; }
.anatomy-center::before { content: ''; position: absolute; inset: -22% -10%; background: radial-gradient(circle, rgba(198,161,95,0.22), transparent 66%); z-index: 0; }
.anatomy-bar { position: relative; z-index: 2; border-radius: 6px; box-shadow: 0 50px 100px -40px rgba(0,0,0,0.75); animation: barfloat 6s var(--ease) infinite; }
@keyframes barfloat { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-14px) rotate(1deg)} }
.anatomy-seal { position: absolute; z-index: 3; top: -18px; right: -18px; width: clamp(58px, 6vw, 82px); height: auto; animation: sealspin 18s linear infinite; }
@keyframes sealspin { to { transform: rotate(360deg); } }
.anatomy-col { display: flex; flex-direction: column; gap: clamp(2.2rem, 6vh, 4.2rem); }
.prop { position: relative; }
.prop .pn { font-family: var(--f-serif); font-style: italic; font-size: 0.95rem; color: var(--gold); }
.prop h4 { font-size: clamp(1.15rem, 1.9vw, 1.6rem); margin: 0.25rem 0 0.4rem; line-height: 1.05; }
.prop p { font-size: 0.85rem; line-height: 1.55; color: var(--on-dark-soft); max-width: 24ch; }
.anatomy-col.left { text-align: right; align-items: flex-end; }
.anatomy-col.left .prop p { margin-left: auto; }
.prop::after { content: ''; position: absolute; top: 0.55rem; width: clamp(1.2rem, 3vw, 3rem); height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.anatomy-col.left .prop::after { right: calc(-1 * clamp(1.2rem, 3vw, 3rem) - 0.7rem); background: linear-gradient(270deg, var(--gold), transparent); }
.anatomy-col.right .prop::after { left: calc(-1 * clamp(1.2rem, 3vw, 3rem) - 0.7rem); }
.prop::before { content: ''; position: absolute; top: 0.4rem; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.anatomy-col.left .prop::before { right: calc(-1 * clamp(1.2rem, 3vw, 3rem) - 0.9rem); }
.anatomy-col.right .prop::before { left: calc(-1 * clamp(1.2rem, 3vw, 3rem) - 0.9rem); }
@media (max-width: 820px) {
  .anatomy-stage { grid-template-columns: 1fr; gap: 2.5rem; }
  .anatomy-center { order: -1; max-width: 340px; margin: 0 auto; }
  .anatomy-col { flex-direction: row; flex-wrap: wrap; gap: 1.6rem 2rem; }
  .anatomy-col.left { text-align: left; align-items: flex-start; }
  .anatomy-col .prop { flex: 1 1 40%; }
  .prop::after, .prop::before { display: none; }
  .anatomy-col.left .prop p { margin-left: 0; }
}

/* ============================================================
   DM SANS HIERARCHY — weight corrections for display elements
   ============================================================ */
.loader-word { font-weight: 700; letter-spacing: -0.03em; }
.menu a { font-weight: 700; letter-spacing: -0.03em; }
.wordmark { font-weight: 700; letter-spacing: -0.02em; }
.footer-big { font-weight: 700; letter-spacing: -0.04em; }
.footer-lead { font-weight: 500; }
.quote-big { font-weight: 500; letter-spacing: -0.025em; line-height: 1.3; }
.review p { font-weight: 500; letter-spacing: -0.01em; }
.split-stats b { font-weight: 700; letter-spacing: -0.03em; }
.pdp-price { font-weight: 600; }
.buybar .bb-name { font-weight: 600; }
.faq summary { font-weight: 600; letter-spacing: -0.02em; }
.tl-year { font-weight: 500; }
.marquee-track span { font-weight: 500; }
.prop h4 { font-weight: 600; }

/* ---------- scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: 600; pointer-events: none; }
.progress i { display: block; height: 100%; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

/* ============================================================
   CART DRAWER + WISHLIST (ecommerce layer)
   ============================================================ */
.cart-fab { position: fixed; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index: 560; width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--choc-950); display: grid; place-items: center; box-shadow: 0 18px 40px -14px rgba(0,0,0,.5); transition: transform .4s var(--ease), background .4s; }
.cart-fab:hover { transform: translateY(-4px); background: var(--gold-2); }
.cart-fab svg { width: 22px; height: 22px; }
.cart-fab .cart-n { position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; border-radius: 999px; background: var(--brand-red); color: #fff; font-size: 0.7rem; font-weight: 700; display: grid; place-items: center; padding: 0 5px; }
.cart-fab .cart-n:empty { display: none; }

.drawer-veil { position: fixed; inset: 0; z-index: 640; background: rgba(30,16,11,0.55); opacity: 0; pointer-events: none; transition: opacity .45s var(--ease); }
.drawer-veil.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100dvh; width: min(440px, 94vw); z-index: 650; background: var(--cream); color: var(--ink); display: flex; flex-direction: column; transform: translateX(102%); transition: transform .55s var(--ease); box-shadow: -30px 0 80px -30px rgba(0,0,0,.4); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line-light); }
.drawer-head h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.drawer-close { font-size: 1.5rem; line-height: 1; padding: 0.2rem 0.5rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.6rem; }
.drawer-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; font-size: 0.95rem; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.9rem; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--line-light); }
.cart-item img { width: 64px; height: 80px; object-fit: cover; border-radius: 4px; }
.cart-item h4 { font-size: 0.95rem; font-weight: 600; }
.cart-item .ci-price { color: var(--gold); font-size: 0.85rem; margin-top: 2px; }
.ci-qty { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 0.45rem; }
.ci-qty button { width: 22px; height: 22px; border: 1px solid var(--line-light); border-radius: 50%; font-size: 0.85rem; line-height: 1; display: grid; place-items: center; }
.ci-remove { color: var(--ink-soft); font-size: 1.05rem; padding: 0.3rem; }
.drawer-gift { padding: 1rem 1.6rem; border-top: 1px solid var(--line-light); }
.drawer-gift label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.4rem; font-weight: 600; }
.drawer-gift textarea { width: 100%; background: none; border: 1px solid var(--line-light); border-radius: 6px; padding: 0.6rem 0.8rem; font-size: 0.9rem; resize: none; min-height: 56px; outline: none; }
.drawer-gift textarea:focus { border-color: var(--gold); }
.drawer-foot { padding: 1.2rem 1.6rem 1.5rem; border-top: 1px solid var(--line-light); background: var(--white); }
.drawer-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 0.4rem; }
.drawer-note { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 1rem; }
.drawer-foot .btn { width: 100%; justify-content: center; }

.wish { position: absolute; top: 0.9rem; right: 0.9rem; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: rgba(253,247,239,0.92); display: grid; place-items: center; transition: transform .35s var(--ease); }
.wish:hover { transform: scale(1.1); }
.wish svg { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 1.6; transition: fill .3s, stroke .3s; }
.wish.on svg { fill: var(--brand-red); stroke: var(--brand-red); }

.toast { position: fixed; left: 50%; bottom: 92px; transform: translate(-50%, 20px); z-index: 660; background: var(--choc-950); color: var(--cream); padding: 0.8rem 1.5rem; border-radius: 999px; font-size: 0.85rem; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* 404 */
.err-hero { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: var(--pad); }
.err-hero .big4 { font-size: clamp(6rem, 22vw, 16rem); font-weight: 700; letter-spacing: -0.05em; line-height: 0.9; color: var(--gold); }

/* ============================================================
   INGREDIENTS 2 — recipe index + captioned collage (mobile-first)
   ============================================================ */
.ing2-head { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.ing2-lead { color: var(--ink-soft); max-width: 46ch; font-size: clamp(0.98rem, 1.2vw, 1.15rem); line-height: 1.65; }
.ing2-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.ing2-list { list-style: none; }
.ing2-list li { display: flex; gap: 1.1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line-light); align-items: flex-start; transition: padding-left 0.4s var(--ease); }
.ing2-list li:first-child { border-top: 1px solid var(--line-light); }
.ing2-list li:hover { padding-left: 0.6rem; }
.in-num { width: 30px; height: 30px; border: 1px solid var(--brand-red); border-radius: 50%; display: grid; place-items: center; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.04em; color: var(--brand-red); flex: 0 0 30px; margin-top: 2px; }
.ing2-list h3 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.ing2-list p { color: var(--ink-soft); font-size: 0.88rem; margin-top: 0.25rem; line-height: 1.55; }
.ing2-photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.1rem, 2.4vw, 2rem) clamp(0.9rem, 2vw, 1.5rem); align-content: start; padding-top: 0.6rem; }
.ing2-photos figure { background: var(--white); border: 1px solid var(--line-light); border-radius: 10px; padding: 0.55rem 0.55rem 0; box-shadow: 0 26px 50px -34px rgba(42,24,18,0.5); transform: rotate(var(--pr, 0deg)); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.ing2-photos figure:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 32px 62px -34px rgba(42,24,18,0.55); }
.ing2-photos .ipimg { display: block; overflow: hidden; border-radius: 6px; aspect-ratio: 1; }
.ing2-photos img { width: 100%; height: 100%; object-fit: cover; }
.ing2-photos figcaption { display: flex; align-items: baseline; gap: 0.5rem; padding: 0.55rem 0.15rem 0.65rem; font-size: 0.8rem; font-style: italic; font-weight: 500; color: var(--ink-soft); }
.ing2-photos figcaption b { color: var(--brand-red); font-style: normal; font-size: 0.7rem; }
.ing2-photos figure:nth-of-type(1) { --pr: -1.8deg; }
.ing2-photos figure:nth-of-type(2) { --pr: 1.6deg; margin-top: 1.6rem; }
.ing2-photos figure:nth-of-type(3) { --pr: 1.2deg; margin-top: -0.4rem; }
.ing2-photos figure:nth-of-type(4) { --pr: -1.5deg; margin-top: 1rem; }
.ing2-badge { position: absolute; top: -24px; right: 2%; z-index: 3; background: var(--brand-red); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.55rem 1.05rem; border-radius: 999px; transform: rotate(4deg); box-shadow: 0 14px 30px -14px rgba(42,24,18,0.5); }
.ing2-ticks { display: flex; gap: 0.9rem clamp(1.2rem, 3vw, 2.6rem); margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line-light); flex-wrap: wrap; list-style: none; }
.ing2-ticks li { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 0.5rem; }
.ing2-ticks li b { color: var(--brand-red); }
@media (min-width: 861px) {
  .ing2-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 3rem; }
  .ing2-grid { grid-template-columns: 0.92fr 1.08fr; }
  .ing2-photos .ip-d { grid-column: span 2; }
  .ing2-photos .ip-d .ipimg { aspect-ratio: 16/7.5; }
}

/* ============================================================
   GIFTING 2 — occasion index + collage (mobile-first)
   ============================================================ */
.gift2-inner { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.gift2-media { position: relative; padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.gm-main { overflow: hidden; border-radius: 14px; aspect-ratio: 4/4.6; margin-right: clamp(2rem, 6vw, 4rem); }
.gm-main img { width: 100%; height: 100%; object-fit: cover; }
.gm-b { position: absolute; right: 0; bottom: 0; width: 44%; aspect-ratio: 3/3.5; overflow: hidden; border-radius: 12px; border: 6px solid var(--choc-900); box-shadow: 0 30px 60px -26px rgba(0,0,0,0.6); transform: rotate(2.4deg); }
.gm-b img { width: 100%; height: 100%; object-fit: cover; }
.gm-badge { position: absolute; top: -14px; left: -6px; z-index: 3; background: var(--gold); color: var(--choc-950); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.55rem 1rem; border-radius: 999px; transform: rotate(-4deg); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5); }
.occasions { margin-top: 2rem; }
.occ { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line-dark); transition: padding-left 0.4s var(--ease); }
.occ:first-child { border-top: 1px solid var(--line-dark); }
.occ h3 { font-size: clamp(1.05rem, 1.7vw, 1.35rem); transition: color 0.35s; }
.occ p { font-size: 0.85rem; color: var(--on-dark-soft); margin-top: 0.2rem; }
.occ i { font-style: normal; color: var(--gold); transition: transform 0.4s var(--ease); flex: 0 0 auto; }
.occ:hover { padding-left: 0.7rem; }
.occ:hover h3 { color: var(--gold); }
.occ:hover i { transform: translateX(5px); }
.gift2 .btn { margin-top: 2.4rem; }
@media (min-width: 900px) { .gift2-inner { grid-template-columns: 0.95fr 1.05fr; } }

/* ============================================================
   GIFT 3 — signature boxes bento cards (mobile-first)
   ============================================================ */
.gift3 { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.g3 { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line-light); border-radius: 14px; overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.g3:hover { transform: translateY(-4px); box-shadow: 0 32px 62px -38px rgba(42,24,18,0.55); }
.g3-img { overflow: hidden; aspect-ratio: 4/3; flex: 0 0 auto; }
.g3-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.g3:hover .g3-img img { transform: scale(1.05); }
.g3-cap { padding: 1.15rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.g3-cap span { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-red); }
.g3-cap h3 { font-size: clamp(1.15rem, 1.9vw, 1.5rem); }
.g3-cap p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }
.g3-link { margin-top: auto; padding-top: 0.9rem; font-style: normal; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 0.45rem; }
.g3-link::after { content: '→'; color: var(--brand-red); transition: transform 0.4s var(--ease); }
.g3:hover .g3-link::after { transform: translateX(4px); }
@media (min-width: 640px) {
  .gift3 { grid-template-columns: 1fr 1fr; }
  .g3-feat { grid-column: span 2; }
  .g3-feat .g3-img { aspect-ratio: 16/8; }
}
@media (min-width: 1024px) {
  .gift3 { grid-template-columns: repeat(4, 1fr); }
  .g3-feat { grid-column: span 2; grid-row: span 2; }
  .g3-feat .g3-img { aspect-ratio: auto; flex: 1; min-height: 300px; }
  .g3-feat .g3-cap h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
}

/* ============================================================
   TIMELINE 2 — spine + dots (story page)
   ============================================================ */
.tl2 { position: relative; max-width: 860px; }
.tl2::before { content: ''; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--gold) 60%, transparent); opacity: 0.45; }
.tl2-row { position: relative; padding: 0 0 clamp(2.2rem, 5vw, 3.4rem) clamp(2rem, 5vw, 3rem); }
.tl2-row:last-child { padding-bottom: 0.5rem; }
.tl2-row::before { content: ''; position: absolute; left: 1px; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(196, 154, 88, 0.22); }
.tl2-year { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #9a7434; border: 1px solid rgba(154, 116, 52, 0.45); border-radius: 999px; padding: 0.32rem 0.85rem; margin-bottom: 0.9rem; background: var(--white); }
.tl2-row h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); margin-bottom: 0.7rem; }
.tl2-row p { max-width: 54ch; color: var(--ink-soft); }

/* ============================================================
   STORY 2 — home story collage (mobile-first)
   ============================================================ */
.story2-inner { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.story2-media { position: relative; padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.stm-main { overflow: hidden; border-radius: 14px; aspect-ratio: 4/4.8; margin-right: clamp(2rem, 6vw, 4rem); }
.stm-main img { width: 100%; height: 100%; object-fit: cover; }
.stm-b { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 4/4.4; overflow: hidden; border-radius: 12px; border: 6px solid var(--choc-900); box-shadow: 0 30px 60px -26px rgba(0,0,0,0.6); transform: rotate(-2.2deg); }
.stm-b img { width: 100%; height: 100%; object-fit: cover; }
.stm-badge { position: absolute; top: -16px; right: 12%; z-index: 3; background: var(--brand-red); color: #fff; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.55rem 1rem; border-radius: 999px; transform: rotate(3deg); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5); }
.story2-quote { font-size: clamp(1.15rem, 2vw, 1.5rem); font-style: italic; font-weight: 500; color: var(--gold-2); border-left: 2px solid var(--gold); padding-left: 1.1rem; margin: 1.6rem 0 0.6rem; line-height: 1.4; }
@media (min-width: 900px) { .story2-inner { grid-template-columns: 0.95fr 1.05fr; } }

/* ============================================================
   REVIEWS — scattered wall (masonry columns, mobile-first)
   ============================================================ */
.reviews-scatter { margin-top: clamp(3rem, 7vw, 5.5rem); columns: 240px 4; column-gap: clamp(1rem, 1.6vw, 1.4rem); }
.rcard { break-inside: avoid; margin: 0 0 clamp(1rem, 1.6vw, 1.4rem); border: 1px solid var(--line-light); background: var(--white); border-radius: 14px; padding: 1.5rem 1.4rem 1.3rem; transform: rotate(var(--tilt, 0deg)); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.rcard:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 26px 50px -32px rgba(42,24,18,0.45); }
.rcard .stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.15em; }
.rcard p { font-weight: 500; letter-spacing: -0.01em; margin: 0.85rem 0 1.1rem; line-height: 1.5; font-size: 1rem; }
.rcard footer { font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; }
.rcard footer i { font-style: normal; color: var(--brand-red); font-weight: 600; white-space: nowrap; }
.rcard.dark { background: var(--choc-900); color: var(--on-dark); border-color: transparent; }
.rcard.dark footer { color: var(--on-dark-soft); }
.rcard.dark footer i { color: var(--gold); }
.rcard.gold { background: var(--gold); color: var(--choc-950); border-color: transparent; }
.rcard.gold .stars { color: var(--choc-950); }
.rcard.gold footer { color: rgba(30,16,11,0.72); }
.rcard.gold footer i { color: var(--choc-950); }
.rcard.lg p { font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.4; }
.reviews-scatter .rcard:nth-child(5n+1) { --tilt: -1.2deg; }
.reviews-scatter .rcard:nth-child(5n+2) { --tilt: 0.9deg; }
.reviews-scatter .rcard:nth-child(5n+3) { --tilt: -0.5deg; }
.reviews-scatter .rcard:nth-child(5n+4) { --tilt: 1.3deg; }
.reviews-scatter .rcard:nth-child(5n+5) { --tilt: -0.9deg; }

/* ============================================================
   STORES 2 — google map + store cards (mobile-first)
   ============================================================ */
.stores2 { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; }
.stores2-map { border-radius: 14px; overflow: hidden; background: var(--cream-2); border: 1px solid var(--line-light); box-shadow: 0 30px 70px -40px rgba(42,24,18,0.4); }
.stores2-map iframe { width: 100%; height: clamp(280px, 48vh, 420px); border: 0; display: block; }
.stores2-map .map-note { padding: 0.85rem 1.2rem; font-size: 0.78rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.5rem; border-top: 1px solid var(--line-light); background: var(--white); }
.stores2-map .map-note b { color: var(--brand-red); }
.stores2-list { display: flex; flex-direction: column; gap: 0.9rem; }
.store2 { border: 1px solid var(--line-light); border-radius: 12px; padding: 1.25rem 1.35rem; cursor: pointer; background: var(--white); transition: border-color 0.35s, box-shadow 0.5s var(--ease), transform 0.5s var(--ease); }
.store2:hover { border-color: var(--gold); }
.store2.active { border-color: var(--gold); box-shadow: 0 22px 44px -30px rgba(42,24,18,0.45); transform: translateY(-2px); }
.store2-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.35rem; }
.store2 h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.store2 .badge { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-red); border: 1px solid currentColor; border-radius: 999px; padding: 0.25rem 0.65rem; white-space: nowrap; }
.store2 .badge.gold { color: #9a7434; }
.store2 p { font-size: 0.9rem; color: var(--ink-soft); }
.store2 .hours { color: #9a7434; font-size: 0.78rem; margin-top: 0.35rem; letter-spacing: 0.04em; font-weight: 600; }
.store2 .dir { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.7rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.store2 .dir:hover { color: var(--brand-red); }
.visit-ticks { display: flex; gap: 0.9rem clamp(1.2rem, 3vw, 2.6rem); margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.5rem; border-top: 1px solid var(--line-light); flex-wrap: wrap; list-style: none; }
.visit-ticks li { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 0.5rem; }
.visit-ticks li b { color: var(--brand-red); }
@media (min-width: 861px) {
  .stores2 { grid-template-columns: 0.9fr 1.1fr; }
  .stores2-map { position: sticky; top: 6.5rem; }
  .stores2-map iframe { height: clamp(420px, 62vh, 620px); }
}

/* ============================================================
   STORY PAGE — letter, steps, band (mobile-first)
   ============================================================ */
.letter { max-width: 860px; margin: 0 auto; background: var(--white); border: 1px solid var(--line-light); border-radius: 16px; padding: clamp(1.8rem, 5vw, 3.6rem); position: relative; box-shadow: 0 34px 70px -50px rgba(42,24,18,0.4); }
.letter::before { content: '✦'; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; display: grid; place-items: center; background: var(--brand-red); color: #fff; border-radius: 50%; font-size: 0.85rem; }
.letter p { margin-bottom: 1.15rem; color: var(--ink-soft); line-height: 1.75; }
.letter p:first-of-type { font-size: clamp(1.15rem, 1.9vw, 1.45rem); font-weight: 500; color: var(--ink); line-height: 1.5; letter-spacing: -0.01em; }
.letter p:first-of-type::first-letter { float: left; font-size: 3.1em; font-weight: 700; line-height: 0.82; padding: 0.06em 0.14em 0 0; color: var(--brand-red); }
.letter-meta { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #9a7434; border-bottom: 1px solid var(--line-light); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.letter .sign { font-style: italic; font-weight: 600; color: var(--ink); margin-top: 1.6rem; margin-bottom: 0; }
.steps { display: flex; flex-direction: column; gap: clamp(3.5rem, 8vw, 7rem); }
.step-num { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: transparent; -webkit-text-stroke: 1.2px var(--gold); margin-bottom: 1rem; display: block; }
.band { text-align: center; }
.band .split-stats { justify-content: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ============================================================
   RESPONSIVE HARDENING — solid down to 300px
   ============================================================ */
img, svg, video, iframe { max-width: 100%; }

@media (max-width: 640px) {
  .hscroll-head { flex-direction: column; align-items: flex-start; gap: 1.2rem; margin-bottom: 2rem; }
  .sec-head { margin-bottom: 2.2rem; }
  .split-stats { gap: 1.4rem 1.8rem; }
  .anatomy-col .prop { flex: 1 1 100%; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .hcard { width: min(78vw, 300px); }
  .hcard h3 { font-size: 1.25rem; }
  .ig-row { grid-template-columns: repeat(2, 1fr); }
  .pdp-actions { flex-direction: column; }
  .pdp-actions .btn { width: 100%; justify-content: center; }
  .filters { gap: 0.45rem; }
  .filter { padding: 0.5rem 1rem; font-size: 0.68rem; }
  .ing2-photos { grid-template-columns: 1fr 1fr; }
  .ing2-photos .ip-d { grid-column: span 2; }
  .ing2-photos .ip-d .ipimg { aspect-ratio: 16/9; }
}

@media (max-width: 400px) {
  :root { --pad: 1rem; }
  body { font-size: 16px; }
  .btn { padding: 0.95rem 1.55rem; font-size: 0.72rem; letter-spacing: 0.1em; }
  .hero2-actions { flex-direction: column; align-items: stretch; }
  .hero2-actions .btn { justify-content: center; }
  .hero2-ticks { gap: 0.7rem 1.1rem; }
  .hero2-ticks li { font-size: 0.76rem; }
  .news-form { flex-direction: column; align-items: stretch; gap: 0.9rem; border-bottom: 0; padding-bottom: 0; }
  .news-form input { border-bottom: 1px solid var(--line-dark); }
  .section-cream .news-form input, .section-beige .news-form input { border-color: var(--line-light); }
  .news-form button { text-align: left; }
  .nav-cta { padding: 0.5rem 0.95rem; font-size: 0.66rem; }
  .hexmark { width: 30px; height: 30px; }
  .cart-fab { width: 50px; height: 50px; }
  .split-stats b { font-size: 1.8rem; }
  .quote-big { font-size: 1.45rem; }
  .h-lg { font-size: clamp(1.9rem, 9vw, 2.2rem); }
  .h-md { font-size: clamp(1.5rem, 7.5vw, 1.7rem); }
  .phero h1, .hero2 h1 { font-size: clamp(2.1rem, 11vw, 2.8rem); }
  .footer-big { font-size: clamp(2.2rem, 14vw, 3rem); }
  .menu a { font-size: clamp(1.6rem, 9vw, 2rem); }
  .gm-b, .stm-b { border-width: 4px; }
  .rcard { padding: 1.2rem 1.1rem 1rem; }
  .store2 { padding: 1.05rem 1.1rem; }
  .letter { padding: 1.4rem 1.2rem; }
  .drawer { width: 100vw; }
  .cart-item { grid-template-columns: 52px 1fr auto; }
  .cart-item img { width: 52px; height: 66px; }
  .nutrition { grid-template-columns: 1fr; }
  .ing2-badge { top: -18px; padding: 0.45rem 0.85rem; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .rv { opacity: 1 !important; transform: none !important; }
}
