/* ───────── Yazmin Organic — landing styles ───────── */

:root {
  /* Silver / champagne palette */
  --bg:        #F4F1EA;          /* warm champagne base */
  --bg-soft:   #ECE7DC;          /* slightly deeper warm silver */
  --bg-mist:   #E4DFD2;          /* deeper still */
  --silver:    #C9C3B6;
  --silver-2:  #A8A294;
  --ink:       #14140F;          /* near-black, matches bottle */
  --ink-soft:  #3A3830;
  --muted:     #6B6759;
  --line:      rgba(20,20,15,0.10);
  --line-2:    rgba(20,20,15,0.18);

  /* Gold accents */
  --gold:      #B8924E;
  --gold-deep: #8E6F38;
  --gold-soft: #D6B673;
  --gold-tint: rgba(184,146,78,0.10);

  /* Type */
  --serif:  "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --display:"Italiana", "Cormorant Garamond", serif;
  --sans:   "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, Menlo, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Background tone: subtle silver radial wash for "airy" feel */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(214,182,115,0.10), transparent 60%),
    radial-gradient(1000px 700px at -10% 110%, rgba(168,162,148,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

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

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after  { display: none; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ───────── Utility bar ───────── */
.utility {
  background: var(--ink);
  color: #E9E3D2;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 0;
  position: relative;
  z-index: 30;
}
.utility .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.utility .slot { display: flex; align-items: center; gap: 10px; opacity: 0.9; }
.utility .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
  display: inline-block;
}
.utility .lang { margin-left: auto; opacity: 0.7; }
@media (max-width: 760px) {
  .utility .inner { gap: 14px; font-size: 10px; }
  .utility .slot:nth-child(2) { display: none; }
}

/* ───────── Nav ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244,241,234,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, padding 200ms ease;
}
.nav.scrolled {
  background: rgba(244,241,234,0.92);
  border-bottom-color: var(--line);
}
.nav .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 0;
  transition: padding 200ms ease;
}
.nav.scrolled .row { padding: 14px 0; }

.nav .links {
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav .links a { position: relative; transition: color 200ms ease; }
.nav .links a:hover { color: var(--gold-deep); }
.nav .links.right { justify-content: flex-end; }

.nav .logo {
  height: 42px;
  width: auto;
  transition: height 200ms ease;
}
.nav.scrolled .logo { height: 34px; }

.icon-btn {
  background: none; border: 0; padding: 6px; cursor: pointer;
  color: var(--ink); display: inline-flex; align-items: center;
  font: inherit; gap: 6px;
}
.icon-btn:hover { color: var(--gold-deep); }
.bag-count {
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 999px;
  min-width: 16px; height: 16px;
  padding: 0 5px;
  margin-left: 4px;
  font-family: var(--sans);
  letter-spacing: 0;
  transform: translateY(-1px);
  transition: transform 200ms ease, background 200ms ease;
}
.bag-count.pop { transform: translateY(-1px) scale(1.25); background: var(--gold-deep); }

.nav .menu-toggle { display: none; }

@media (max-width: 980px) {
  .nav .row { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav .links { display: none; }
  .nav .menu-toggle { display: inline-flex; }
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero::after {
  /* faint horizontal gold rule at bottom */
  content: "";
  position: absolute;
  left: 50%; bottom: 60px;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 80px));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 20%, var(--line-2) 80%, transparent);
}

.hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy { max-width: 560px; }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8.2vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 26px 0 28px;
}
.hero h1 .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  letter-spacing: -0.01em;
}
.hero h1 .small-amp {
  display: inline-block;
  transform: translateY(-0.06em);
  margin: 0 -0.04em;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero .lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease, transform 250ms ease;
  background: none;
  font-family: var(--sans);
}
.btn .arrow {
  display: inline-block;
  transition: transform 250ms ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: #F4F1EA;
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn-ghost {
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero-stats div { flex: 1; }
.hero-stats .n {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--gold-deep);
}
.hero-stats .l {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* hero product visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-mist);
  box-shadow:
    0 30px 60px -30px rgba(20,20,15,0.35),
    0 10px 30px -20px rgba(20,20,15,0.25);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual::before {
  /* silver light streak */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0.0) 40%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.0) 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-tag {
  position: absolute;
  left: 24px; top: 24px;
  background: rgba(20,20,15,0.78);
  backdrop-filter: blur(6px);
  color: #F4F1EA;
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex; gap: 8px; align-items: center;
}
.hero-tag .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(214,182,115,0.18);
}

.hero-spec {
  position: absolute;
  right: 22px; bottom: 22px;
  background: rgba(244,241,234,0.92);
  backdrop-filter: blur(6px);
  padding: 16px 18px;
  display: flex; flex-direction: column;
  min-width: 200px;
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-spec .name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
}
.hero-spec .sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.hero-spec .price {
  margin-top: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-spec .price .v {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold-deep);
}
.hero-spec .price .add {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  border: 0; background: none; cursor: pointer;
  padding: 6px 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
}
.hero-spec .price .add:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

@media (max-width: 960px) {
  .hero { padding: 48px 0 80px; }
  .hero .grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { margin-top: 36px; }
}

/* ───────── Marquee strip ───────── */
.marquee {
  background: var(--ink);
  color: #E9E3D2;
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.marquee .track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marq 40s linear infinite;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.marquee .track span { display: inline-flex; align-items: center; gap: 14px; }
.marquee .track .sep {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───────── Manifesto ───────── */
.manifesto {
  padding: 140px 0 60px;
  text-align: center;
}
.manifesto .quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  color: var(--ink);
  max-width: 1000px;
  margin: 24px auto 0;
  font-weight: 300;
  letter-spacing: -0.005em;
}
.manifesto .quote em {
  font-style: italic;
  color: var(--gold-deep);
}

/* ───────── Immortelle feature ───────── */
.immortelle {
  padding: 100px 0 120px;
}
.immortelle .grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.immortelle-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-mist);
  overflow: hidden;
}
.immortelle-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.immortelle-visual:hover img { transform: scale(1.04); }
.immortelle-visual .seal {
  position: absolute;
  top: 24px; right: 24px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  padding: 8px;
  box-shadow: 0 12px 24px -10px rgba(184,146,78,0.55);
}

.immortelle h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  margin: 24px 0 20px;
  letter-spacing: -0.01em;
}
.immortelle h2 em {
  font-style: italic;
  font-family: inherit;
  font-size: 1em;
  line-height: inherit;
  color: var(--gold-deep);
}
.immortelle p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
}
.immortelle p + p { margin-top: 18px; }
.immortelle .footnote {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 24px; flex-wrap: wrap;
}
.immortelle .footnote span { display: inline-flex; align-items: center; gap: 8px; }
.immortelle .footnote .g { color: var(--gold-deep); }

@media (max-width: 960px) {
  .immortelle .grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ───────── Ingredients ───────── */
.ingredients {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-mist));
  padding: 110px 0 130px;
  position: relative;
}
.ingredients .head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.ingredients h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 60px);
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.ingredients h2 em {
  font-style: italic; font-family: var(--serif); color: var(--gold-deep);
}
.ingredients .sub {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.ing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ing {
  text-align: center;
  cursor: default;
  position: relative;
}
.ing-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6) inset,
    0 8px 24px -10px rgba(20,20,15,0.25);
  transition: transform 350ms ease, box-shadow 350ms ease;
}
.ing-circle::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 300ms ease, inset 350ms ease;
}
.ing:hover .ing-circle { transform: translateY(-4px); }
.ing:hover .ing-circle::after { opacity: 1; inset: -6px; }
.ing-circle img { width: 100%; height: 100%; object-fit: cover; }
.ing .name {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
  color: var(--ink);
}
.ing .latin {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.ing .pop {
  position: absolute;
  left: 50%; bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(6px);
  background: var(--ink);
  color: #F4F1EA;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 5;
  text-align: left;
}
.ing .pop::after {
  content: ""; position: absolute; left: 50%; top: 100%;
  border: 6px solid transparent;
  border-top-color: var(--ink);
  transform: translateX(-50%);
}
.ing:hover .pop {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 880px) {
  .ing-grid { grid-template-columns: repeat(3, 1fr); gap: 44px 16px; }
}
@media (max-width: 520px) {
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ───────── Products ───────── */
.products {
  padding: 130px 0 130px;
}
.products .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}
.products .head h2 {
  font-family: var(--display);
  font-size: clamp(38px, 4.6vw, 64px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.products .head h2 em { font-style: italic; font-family: var(--serif); color: var(--gold-deep); }
.products .head .right { color: var(--ink-soft); max-width: 360px; font-size: 14px; line-height: 1.6; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prod {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease;
}
.prod:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(20,20,15,0.30);
}
.prod .badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(244,241,234,0.85);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  z-index: 2;
}
.prod .badge.gold {
  background: var(--gold);
  color: #fff;
}
.prod .img {
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, #EFEADE, #DAD3C2);
  overflow: hidden;
  position: relative;
}
.prod .img::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 110%, rgba(20,20,15,0.18), transparent);
  pointer-events: none;
}
.prod .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.prod:hover .img img { transform: scale(1.04); }

.prod .body {
  padding: 26px 24px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.prod .kicker {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep);
}
.prod h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.prod .desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}
.prod .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.prod .price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}
.prod .price .cur {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-left: 6px;
  font-family: var(--sans);
}
.prod .add {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px 0;
  color: var(--ink);
  font-family: var(--sans);
  border-bottom: 1px solid var(--ink);
  transition: color 200ms, border-color 200ms;
}
.prod .add:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }
.prod .add.added {
  color: var(--gold-deep); border-bottom-color: transparent; pointer-events: none;
}

@media (max-width: 880px) {
  .products .head { flex-direction: column; align-items: flex-start; }
  .prod-grid { grid-template-columns: 1fr; }
}

/* ───────── Founder ───────── */
.founder {
  background: var(--ink);
  color: #F4F1EA;
  padding: 130px 0 130px;
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(184,146,78,0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(201,195,182,0.10), transparent 60%);
  pointer-events: none;
}
.founder .grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.founder .portrait {
  aspect-ratio: 4/5;
  position: relative;
  background: #1F1E18;
  overflow: hidden;
  border: 1px solid rgba(214,182,115,0.25);
}
.founder .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder .portrait .ph {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(214,182,115,0.06) 0px,
      rgba(214,182,115,0.06) 2px,
      transparent 2px,
      transparent 12px
    ),
    linear-gradient(180deg, #2A2820 0%, #14140F 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(214,182,115,0.55);
  text-align: center;
  padding: 24px;
  line-height: 1.8;
}
.founder .eyebrow { color: var(--gold-soft); }
.founder .eyebrow::before { background: var(--gold-soft); }

.founder h2 {
  color: #F4F1EA;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  margin: 22px 0 24px;
  letter-spacing: -0.01em;
}
.founder h2 em { font-family: var(--serif); font-style: italic; color: var(--gold-soft); }
.founder p {
  color: rgba(244,241,234,0.78);
  font-size: 15px;
  line-height: 1.8;
  max-width: 580px;
}
.founder p + p { margin-top: 16px; }
.founder .sign {
  margin-top: 32px;
  display: flex; align-items: center; gap: 18px;
}
.founder .sig {
  font-family: "Allura", "Brush Script MT", cursive;
  font-size: 44px;
  color: var(--gold-soft);
  line-height: 1;
  letter-spacing: 0.01em;
}
.founder .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.55);
}

@media (max-width: 960px) {
  .founder .grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ───────── USDA band ───────── */
.usda-band {
  padding: 50px 0;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.usda-band .row {
  display: flex;
  align-items: center; justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.usda-band .seal {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center; font-weight: 600;
  line-height: 1.2;
  padding: 8px;
  flex: 0 0 auto;
}
.usda-band .stat {
  display: flex; flex-direction: column;
  font-family: var(--serif);
}
.usda-band .stat .n { font-size: 32px; line-height: 1; color: var(--ink); }
.usda-band .stat .l { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-family: var(--sans); margin-top: 8px; }

/* ───────── Newsletter ───────── */
.news {
  padding: 110px 0 90px;
  text-align: center;
}
.news h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.news h2 em { font-family: var(--serif); font-style: italic; color: var(--gold-deep); }
.news p { color: var(--ink-soft); margin: 18px auto 32px; max-width: 540px; font-size: 15px; line-height: 1.7; }
.news form {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
  align-items: center;
}
.news form.success { border-bottom-color: var(--gold-deep); }
.news input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 16px 4px;
  font: inherit;
  font-size: 15px;
  outline: none;
  color: var(--ink);
}
.news input::placeholder { color: var(--muted); }
.news button {
  background: none; border: 0; cursor: pointer;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 0 10px 16px;
  display: inline-flex; gap: 10px; align-items: center;
}
.news button:hover { color: var(--gold-deep); }
.news .msg { margin-top: 16px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); min-height: 14px; }

/* ───────── Footer ───────── */
footer {
  background: var(--ink);
  color: rgba(244,241,234,0.7);
  padding: 70px 0 30px;
  font-size: 13px;
  line-height: 1.7;
}
footer .grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,241,234,0.10);
}
footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: #F4F1EA;
  margin-bottom: 20px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer ul a:hover { color: var(--gold-soft); }
footer .brand p { margin-top: 18px; max-width: 360px; color: rgba(244,241,234,0.6); }
footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.5);
  gap: 20px;
  flex-wrap: wrap;
}
footer .bottom .gold-line {
  display: inline-block; width: 30px; height: 1px; background: var(--gold);
  margin-right: 12px; vertical-align: middle;
}
@media (max-width: 760px) {
  footer .grid { grid-template-columns: 1fr 1fr; }
  footer .brand { grid-column: span 2; }
}

/* ───────── Mini bag drawer ───────── */
.bag-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--line-2);
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 40;
  display: flex; flex-direction: column;
  box-shadow: -30px 0 80px -30px rgba(20,20,15,0.40);
}
.bag-drawer.open { transform: translateX(0); }
.bag-drawer header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.bag-drawer header h3 {
  font-family: var(--serif);
  font-size: 22px;
}
.bag-drawer .close {
  background: none; border: 0; cursor: pointer; padding: 4px; font: inherit;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
}
.bag-drawer .items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px;
}
.bag-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--muted);
  gap: 18px;
}
.bag-empty .ico {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.bag-empty p { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink-soft); }

.bag-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.bag-item .thumb {
  width: 76px; height: 76px;
  background: var(--bg-mist);
  overflow: hidden;
}
.bag-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.bag-item .n { font-family: var(--serif); font-size: 16px; }
.bag-item .k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.bag-item .qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.bag-item .qty button {
  width: 22px; height: 22px;
  background: none;
  border: 1px solid var(--line-2);
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
.bag-item .qty button:hover { border-color: var(--ink); }
.bag-item .qty .v { min-width: 14px; text-align: center; font-size: 13px; }
.bag-item .price { font-family: var(--serif); font-size: 16px; color: var(--ink); }
.bag-item .remove {
  display: block;
  margin-top: 8px;
  background: none; border: 0; cursor: pointer; padding: 0;
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); text-align: right;
}
.bag-item .remove:hover { color: var(--gold-deep); }

.bag-drawer footer {
  background: var(--bg);
  color: var(--ink);
  padding: 22px 28px 26px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.bag-drawer footer .total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
}
.bag-drawer footer .total .l {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.bag-drawer footer .total .v { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.bag-drawer footer .ship {
  font-size: 11px; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 16px;
}
.bag-drawer footer .btn {
  width: 100%;
  justify-content: center;
}

.scrim {
  position: fixed; inset: 0;
  background: rgba(20,20,15,0.30);
  opacity: 0; pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 35;
}
.scrim.open { opacity: 1; pointer-events: auto; }

/* ───────── Out-of-stock page ───────── */
.stock-page {
  min-height: 100dvh;
  background:
    radial-gradient(900px 560px at 80% 0%, rgba(214,182,115,0.14), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}
.stock-main {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}
.stock-logo {
  width: 190px;
  height: auto;
  margin: 0 auto 44px;
}
.stock-panel {
  width: min(680px, 100%);
  text-align: center;
}
.stock-panel h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  margin: 22px 0 20px;
}
.stock-panel p {
  max-width: 520px;
  margin: 0 auto 34px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.stock-form {
  display: flex;
  align-items: stretch;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
.stock-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line-2);
  background: rgba(244,241,234,0.58);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 0 18px;
  outline: none;
}
.stock-form input:focus {
  border-color: var(--gold-deep);
  background: rgba(244,241,234,0.86);
}
.stock-form .btn {
  white-space: nowrap;
}
.stock-form.success input {
  border-color: var(--gold-deep);
}
.stock-msg {
  min-height: 18px;
  margin-top: 18px;
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.stock-back {
  display: inline-block;
  margin-top: 30px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.stock-back:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}
@media (max-width: 640px) {
  .stock-main {
    place-items: start center;
    padding-top: 44px;
  }
  .stock-logo {
    width: 160px;
    margin-bottom: 38px;
  }
  .stock-form {
    flex-direction: column;
  }
  .stock-form input,
  .stock-form .btn {
    min-height: 54px;
    width: 100%;
    justify-content: center;
  }
}

/* ───────── Scroll reveal ───────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 90ms; }
.reveal.d2 { transition-delay: 180ms; }
.reveal.d3 { transition-delay: 270ms; }
.reveal.d4 { transition-delay: 360ms; }

/* Custom selection */
::selection { background: var(--gold); color: #fff; }
