/* ============================================
   QUEEN HEART — Baroque Modern Design System v3
   ============================================ */

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

@font-face {
  font-family: 'Galliard Serif';
  src: url('../fonts/maison-galliard-serif.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Galliard Script';
  src: url('../fonts/maison-galliard-script.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Galliard Sans';
  src: url('../fonts/maison-galliard-sans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --ruby:    #CB2C30;
  --gold:    #FBDD7A;
  --bronze:  #713F2A;
  --cream:   #E9DB9C;
  --aqua:    #39A6CE;

  --ivory:   #F4ECD8;
  --parchment: #EDE1C2;
  --ink:     #1A1410;
  --ink-soft: #2E2520;
  --gold-deep: #B68A3E;
  --gold-light: #E4C77B;
  --rose: #F0E0DA;

  --f-serif: 'Galliard Serif', 'Cormorant Garamond', 'Times New Roman', serif;
  --f-script: 'Galliard Script', 'Pinyon Script', cursive;
  --f-display: 'Galliard Sans', 'Montserrat', sans-serif;
  --f-body: 'Montserrat', 'Galliard Sans', sans-serif;

  --maxw: 1400px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.15 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; border: none; background: none; outline: none; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s ease, padding .4s ease;
}
.nav.scrolled {
  background: rgba(244, 236, 216, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .7rem var(--gutter);
  border-bottom: 1px solid rgba(182, 138, 62, .15);
}

/* Brand logo using actual SVG wordmark */
.nav__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--bronze);
}
.nav__brand-logo {
  height: 30px;
  width: auto;
  transition: height .3s;
}
.nav.scrolled .nav__brand-logo { height: 26px; }

.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a {
  font-family: var(--f-body);
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: .4rem 0;
  color: var(--ink-soft);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1px;
  background: var(--gold-deep);
  transition: right .4s cubic-bezier(.7,0,.3,1);
}
.nav__links a:hover::after { right: 0; }
.nav__links a.is-active::after { right: 0; }

/* No more nav__cta — site has no commerce CTA in nav */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__brand-logo { height: 24px; }
  .nav.scrolled .nav__brand-logo { height: 22px; }
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--parchment) 100%);
  padding: 6rem var(--gutter) 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__inner {
  position: relative;
  text-align: center;
  z-index: 3;
  max-width: 1100px;
  margin: 2rem auto 0;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--f-body);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bronze);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .9s .2s forwards;
}
.hero__eyebrow::before, .hero__eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--gold-deep); }

.hero__title {
  font-family: var(--f-serif);
  font-weight: normal;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  line-height: 1.1; /* increased from .95 to prevent ascender clipping */
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 1rem;
  /* Add a little top breathing room */
  padding-top: .15em;
}
.hero__title-line {
  display: block;
  overflow: visible; /* important: let ascenders show */
  padding-top: .12em;
  margin-top: -.12em;
}
.hero__title-line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
.hero__title-line:nth-child(1) span { animation-delay: .35s; }
.hero__title-line:nth-child(2) span { animation-delay: .55s; }
.hero__title em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--ruby);
  font-size: .94em;
  padding: 0 .12em;
  display: inline-block;
  line-height: .9;
}
.hero__sub {
  font-family: var(--f-script);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--bronze);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s .9s forwards;
  line-height: 1.2;
}
.hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}

/* Hero packs fan */
.hero__packs {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  height: clamp(260px, 32vw, 420px);
  padding: 0 var(--gutter);
}
.hero__pack {
  position: absolute;
  bottom: -40px;
  width: clamp(150px, 16vw, 240px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .3));
  opacity: 0;
}
.hero__pack img { width: 100%; height: auto; }
.hero__pack--salmon  { left: 8%;  --rot: -16deg; animation: packEnter 1.2s cubic-bezier(.16,1,.3,1) 1.2s forwards, floatRot 5s ease-in-out infinite 2.5s; }
.hero__pack--beef    { left: 30%; --rot: -6deg;  animation: packEnter 1.2s cubic-bezier(.16,1,.3,1) 1.35s forwards, floatRot 5s ease-in-out infinite 2.6s; }
.hero__pack--chicken { right: 30%; --rot: 6deg;  animation: packEnter 1.2s cubic-bezier(.16,1,.3,1) 1.5s forwards, floatRot 5s ease-in-out infinite 2.7s; }
.hero__pack--turkey  { right: 8%;  --rot: 16deg; animation: packEnter 1.2s cubic-bezier(.16,1,.3,1) 1.65s forwards, floatRot 5s ease-in-out infinite 2.8s; }

@keyframes packEnter {
  0%   { opacity: 0; transform: rotate(0deg) translateY(120px) scale(.85); }
  100% { opacity: 1; transform: rotate(var(--rot)) translateY(0) scale(1); }
}
@keyframes floatRot {
  0%, 100% { transform: rotate(var(--rot)) translateY(0); }
  50%      { transform: rotate(var(--rot)) translateY(-12px); }
}

@media (max-width: 700px) {
  .hero__packs { height: 240px; }
  .hero__pack { width: 34vw; }
  .hero__pack--salmon  { left: 2%; }
  .hero__pack--beef    { left: 26%; }
  .hero__pack--chicken { right: 26%; }
  .hero__pack--turkey  { right: 2%; }
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-body);
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bronze);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  opacity: 0;
  animation: fadeIn 1.5s 2.5s forwards;
  z-index: 4;
}
.hero__scroll-line {
  width: 1px; height: 35px;
  background: linear-gradient(180deg, var(--gold-deep), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 2.1rem;
  font-family: var(--f-body);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.btn--primary { background: var(--ink); color: var(--ivory); }
.btn--primary:hover { background: var(--ruby); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(203, 44, 48, .3); }
.btn--ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); transform: translateY(-3px); }
.btn--ruby { background: var(--ruby); color: var(--gold-light); }
.btn--ruby:hover { background: var(--ink); transform: translateY(-3px); }
.btn--gold { background: var(--gold-light); color: var(--ink); }
.btn--gold:hover { background: var(--ivory); transform: translateY(-3px); }
.btn__arrow { display: inline-flex; transition: transform .4s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ROYAL CARTOUCHE BUTTON — the brand's signature gold-framed CTA */
.btn-royal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 4.5rem;
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: .04em;
  color: var(--gold-light);
  background: transparent;
  min-width: 320px;
  transition: transform .5s cubic-bezier(.16,1,.3,1), color .4s;
}
.btn-royal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/btn_cartouche.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: filter .4s;
  pointer-events: none;
}
.btn-royal--ruby::before { filter: brightness(0) saturate(100%) invert(28%) sepia(74%) saturate(2870%) hue-rotate(347deg) brightness(89%) contrast(89%); }
.btn-royal--ruby { color: var(--ruby); }
.btn-royal--ruby:hover::before { filter: none; }
.btn-royal--ruby:hover { color: var(--gold-light); }
.btn-royal--ink { color: var(--ink); }
.btn-royal--ink::before { filter: brightness(0) saturate(100%) invert(9%) sepia(13%) saturate(1107%) hue-rotate(355deg) brightness(94%) contrast(91%); }
.btn-royal--ink:hover::before { filter: none; }
.btn-royal--ink:hover { color: var(--gold-light); }
.btn-royal:hover { transform: translateY(-3px); }
.btn-royal__text {
  position: relative;
  z-index: 1;
  line-height: 1;
  white-space: nowrap;
}
.btn-royal__sub {
  position: absolute;
  z-index: 1;
  top: -1.4em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-body);
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  background: var(--ivory);
  padding: .25rem .9rem;
  border: 1px solid var(--gold-deep);
  border-radius: 100px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .btn-royal { padding: 1.2rem 2.5rem; min-width: 240px; }
}

/* CARTOUCHE BADGE (pill) — for feature labels matching pack badges */
.cartouche-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.6rem;
  font-family: var(--f-body);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  position: relative;
  min-width: 140px;
}
.cartouche-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/btn_pill.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* MARQUEE */
.marquee {
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  padding: 1.4rem 0;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.marquee__track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--f-script);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee__item::after {
  content: '';
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23CB2C30'><path d='M12 21s-7-4.5-9.5-9.5C.7 7.5 3.5 4 7 4c2 0 3.5 1 5 3 1.5-2 3-3 5-3 3.5 0 6.3 3.5 4.5 7.5C19 16.5 12 21 12 21z'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}

/* SECTIONS */
.section { padding: clamp(5rem, 10vw, 8rem) var(--gutter); position: relative; }
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--f-body);
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bronze);
  margin-bottom: 1.2rem;
}
.section__eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold-deep); }
.section__title {
  font-family: var(--f-serif);
  font-weight: normal;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.section__title em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--ruby);
  font-size: 1.05em;
}
.section__lead {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  max-width: 620px;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.js .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); }
.js .reveal.in { opacity: 1; transform: translateY(0); }
.js .reveal-stagger > * { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.js .reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.js .reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.js .reveal-stagger.in > *:nth-child(2) { transition-delay: .1s; }
.js .reveal-stagger.in > *:nth-child(3) { transition-delay: .2s; }
.js .reveal-stagger.in > *:nth-child(4) { transition-delay: .3s; }
.js .reveal-stagger.in > *:nth-child(5) { transition-delay: .4s; }
.js .reveal-stagger.in > *:nth-child(6) { transition-delay: .5s; }

/* ============================================
   COURT — bigger cards, flavour Q monograms
   ============================================ */
.court { background: var(--ivory); position: relative; }
.court__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem; margin-bottom: 4rem;
}
.court__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1100px) { .court__cards { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 600px) { .court__cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  aspect-ratio: 3/4.6;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  isolation: isolate;
}
.card::before { content: ''; position: absolute; inset: 0; background: var(--card-color); z-index: -2; }
.card::after { content: ''; position: absolute; inset: 12px; border: 1px solid var(--card-accent); border-radius: 8px; z-index: -1; opacity: .4; }
.card--salmon  { --card-color: var(--aqua);   --card-accent: #B8E1F1; --card-text: #FFFFFF; --card-text-soft: rgba(255,255,255,.85); --card-q-color: #FFFFFF; }
.card--beef    { --card-color: var(--ruby);   --card-accent: var(--gold-light); --card-text: var(--gold-light); --card-text-soft: rgba(228, 199, 123, .85); --card-q-color: var(--gold-light); }
.card--chicken { --card-color: var(--cream);  --card-accent: var(--bronze); --card-text: var(--bronze); --card-text-soft: rgba(113, 63, 42, .8); --card-q-color: var(--bronze); }
.card--turkey  { --card-color: var(--bronze); --card-accent: var(--gold-light); --card-text: var(--gold-light); --card-text-soft: rgba(228, 199, 123, .85); --card-q-color: var(--gold-light); }

/* Q monogram in card corner (uses flavour-specific Q SVG) */
.card__q {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  width: 38px;
  height: auto;
  z-index: 2;
  color: var(--card-q-color);
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
}
.card__q svg { width: 100%; height: auto; fill: var(--card-q-color); }
.card__q-heart {
  width: 12px;
  height: 12px;
  fill: var(--card-q-color);
  display: block;
}
.card__q--br {
  top: auto; left: auto;
  bottom: 1.4rem; right: 1.4rem;
  transform: rotate(180deg);
}

.card__heart-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.15), transparent 70%);
  z-index: 0;
}

.card__product {
  position: absolute;
  top: 50%; left: 50%;
  width: 95%; /* BIGGER pouch */
  transform: translate(-50%, -52%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}
.card:hover .card__product { transform: translate(-50%, -56%) scale(1.05); }
.card:hover { transform: translateY(-8px); }

.card__label { position: relative; z-index: 2; text-align: center; color: var(--card-text); }
.card__name { font-family: var(--f-serif); font-size: 1.6rem; letter-spacing: .04em; margin-bottom: .2rem; }
.card__meta { font-family: var(--f-script); font-size: 1.15rem; color: var(--card-text-soft); line-height: 1.2; }
.card__link { position: absolute; inset: 0; z-index: 3; }

/* ============================================
   STORY / LINEUP / etc
   ============================================ */
.story { background: var(--parchment); position: relative; }
.story__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; } }
.story__visual { position: relative; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; }
.story__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.story__visual:hover img { transform: scale(1.05); }
.story__visual-frame { position: absolute; inset: 1rem; border: 1px solid var(--gold-deep); z-index: 2; pointer-events: none; opacity: .5; }
.story__stamp {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 160px; height: 160px;
  background: var(--ruby); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; animation: spin 30s linear infinite;
}
.story__stamp svg { width: 100%; height: 100%; }
.story__stamp-heart {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  fill: var(--gold-light);
  animation: heartbeat 1.5s ease-in-out infinite;
}
.story__signature {
  font-family: var(--f-script);
  font-size: 1.6rem;
  color: var(--ruby);
  margin-top: 2rem;
  display: inline-block;
}
.story__body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  max-width: 540px;
}

.lineup { background: var(--cream); position: relative; overflow: hidden; }
.lineup__grid { display: grid; grid-template-columns: 0.95fr 1.4fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .lineup__grid { grid-template-columns: 1fr; } }
.lineup__stats { display: flex; gap: 2.5rem; margin: 2.5rem 0; flex-wrap: wrap; }
.lineup__stat { display: flex; flex-direction: column; gap: .3rem; }
.lineup__stat-num { font-family: var(--f-serif); font-size: 2.2rem; color: var(--ruby); line-height: 1; }
.lineup__stat-label { font-family: var(--f-body); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: var(--bronze); }
.lineup__image { position: relative; aspect-ratio: 16/10; border-radius: 14px; overflow: hidden; }
.lineup__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(.16,1,.3,1); }
.lineup__image:hover img { transform: scale(1.04); }
.lineup__image-frame { position: absolute; inset: 1rem; border: 1px solid var(--gold-deep); opacity: .35; z-index: 2; pointer-events: none; border-radius: 6px; }
.lineup__caption {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-script); font-size: 1.4rem; color: var(--bronze);
  z-index: 2;
  background: rgba(233, 219, 156, .85);
  padding: .4rem 1.5rem; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.lineup__caption em { font-style: normal; color: var(--ruby); }

/* PILLARS */
.pillars { background: var(--ink); color: var(--ivory); }
.pillars .section__eyebrow { color: var(--gold-light); }
.pillars .section__eyebrow::before { background: var(--gold-deep); }
.pillars .section__title { color: var(--ivory); }
.pillars .section__title em { color: var(--gold-light); }
.pillars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 4rem; }
@media (max-width: 900px) { .pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pillars__grid { grid-template-columns: 1fr; } }

.pillar {
  padding: 2.5rem 1.8rem;
  border: 1px solid rgba(228, 199, 123, .2);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color .5s, background .5s, transform .5s;
}
.pillar:hover { border-color: var(--gold-light); background: rgba(228, 199, 123, .04); transform: translateY(-4px); }
.pillar__icon {
  width: 80px; height: 80px;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar__title { font-family: var(--f-serif); font-size: 1.5rem; margin-bottom: .8rem; letter-spacing: .02em; color: var(--ivory); }
.pillar__body { font-family: var(--f-body); font-size: .9rem; line-height: 1.65; color: rgba(244, 236, 216, .75); }
.pillar__num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--f-serif); font-size: .85rem;
  color: var(--gold-deep); letter-spacing: .1em; font-style: italic;
}

.pillars--light { background: var(--ivory); color: var(--ink); }
.pillars--light .section__eyebrow { color: var(--bronze); }
.pillars--light .section__eyebrow::before { background: var(--gold-deep); }
.pillars--light .section__title { color: var(--ink); }
.pillars--light .pillar { border-color: rgba(182, 138, 62, .25); background: rgba(255, 255, 255, .35); }
.pillars--light .pillar:hover { border-color: var(--gold-deep); background: rgba(255, 255, 255, .65); }
.pillars--light .pillar__icon { color: var(--ruby); }
.pillars--light .pillar__title { color: var(--ink); }
.pillars--light .pillar__body { color: var(--ink-soft); }
.pillars--light .pillar__num { color: var(--gold-deep); }

/* SCIENCE */
.science { background: var(--parchment); position: relative; }
.science__head { text-align: center; margin-bottom: 5rem; }
.science__head .section__eyebrow { justify-content: center; display: inline-flex; }
.science__head .section__title { margin: 0 auto 1rem; }
.science__head .section__lead { margin: 0 auto; }
.science__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .science__grid { grid-template-columns: 1fr; } }
.science__points { display: flex; flex-direction: column; gap: 2rem; }
.sci-point {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(182, 138, 62, .25);
}
.sci-point:last-child { border-bottom: none; }
.sci-point__icon { width: 64px; height: 64px; color: var(--ruby); }
.sci-point__icon svg { width: 100%; height: 100%; }
.sci-point__title { font-family: var(--f-serif); font-size: 1.6rem; margin-bottom: .5rem; color: var(--ink); }
.sci-point__body { font-family: var(--f-body); font-size: .95rem; line-height: 1.7; color: var(--ink-soft); }
.science__panel { background: var(--ivory); border: 1px solid rgba(182, 138, 62, .3); border-radius: 14px; padding: 2.5rem 2rem; position: relative; }
.science__panel-title { font-family: var(--f-serif); font-size: 1.8rem; margin-bottom: .3rem; color: var(--ink); }
.science__panel-sub { font-family: var(--f-script); font-size: 1.4rem; color: var(--ruby); margin-bottom: 1.5rem; }
.science__panel-table { width: 100%; border-collapse: collapse; }
.science__panel-table th, .science__panel-table td { text-align: left; padding: .85rem 0; border-bottom: 1px solid rgba(182, 138, 62, .2); font-family: var(--f-body); }
.science__panel-table th { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); font-weight: 600; }
.science__panel-table td { font-size: .95rem; color: var(--ink); }
.science__panel-table td:last-child { text-align: right; font-family: var(--f-serif); color: var(--ruby); font-size: 1.1rem; }
.science__panel-foot { margin-top: 1.5rem; font-family: var(--f-body); font-size: .75rem; color: var(--bronze); font-style: italic; }

/* INGREDIENTS */
.ingredients { background: var(--ivory); position: relative; overflow: hidden; }
.ingredients__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
@media (max-width: 900px) { .ingredients__grid { grid-template-columns: 1fr; } }
.ingredients__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(0,0,0,.12); }
.ing {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
  align-items: center;
  transition: padding-left .4s ease;
}
.ing:hover { padding-left: 1rem; }
.ing__num { font-family: var(--f-serif); font-size: 1.2rem; color: var(--bronze); font-style: italic; }
.ing__name { font-family: var(--f-serif); font-size: clamp(1.3rem, 2vw, 1.8rem); letter-spacing: -.01em; }
.ing__pct { font-family: var(--f-script); font-size: 1.3rem; color: var(--ruby); }

.ingredients__visual {
  position: relative; aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, var(--rose), var(--parchment));
  border-radius: 50%;
  overflow: visible;
  display: flex; align-items: center; justify-content: center;
}
.ingredients__visual img {
  width: 75%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.25));
  animation: floatY 6s ease-in-out infinite;
}
.ingredients__visual-ring {
  position: absolute; inset: -10px;
  border: 1px dashed var(--gold-deep);
  border-radius: 50%; opacity: .4;
  animation: spin 60s linear infinite;
}

/* FEEDING */
.feeding { background: var(--cream); position: relative; }
.feeding__head { text-align: center; margin-bottom: 4rem; }
.feeding__head .section__eyebrow { justify-content: center; display: inline-flex; }
.feeding__head .section__title { margin: 0 auto; }
.feeding__table-wrap {
  max-width: 900px; margin: 0 auto;
  background: var(--ivory);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(182, 138, 62, .3);
}
.feeding__table { width: 100%; border-collapse: collapse; }
.feeding__table thead th {
  font-family: var(--f-body);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze);
  padding: 1rem .5rem;
  text-align: left;
  border-bottom: 2px solid var(--gold-deep);
}
.feeding__table thead th:last-child { text-align: right; }
.feeding__table tbody td {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  padding: 1.4rem .5rem;
  border-bottom: 1px solid rgba(182, 138, 62, .2);
  color: var(--ink);
}
.feeding__table tbody td:last-child {
  text-align: right;
  color: var(--ruby);
  font-family: var(--f-script);
  font-size: 1.6rem;
}
.feeding__table tbody tr:last-child td { border-bottom: none; }
.feeding__note { text-align: center; margin-top: 2rem; font-family: var(--f-body); font-size: .85rem; color: var(--bronze); font-style: italic; }

/* DECREE */
.decree { background: var(--ruby); color: var(--ivory); text-align: center; position: relative; overflow: hidden; }
.decree::before { content: ''; position: absolute; inset: 1rem; border: 1px solid var(--gold-light); opacity: .3; pointer-events: none; }
.decree::after  { content: ''; position: absolute; inset: 1.4rem; border: 1px solid var(--gold-light); opacity: .2; pointer-events: none; }
.decree__crown { width: 70px; height: 70px; margin: 0 auto 2rem; color: var(--gold-light); }
.decree__quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 2rem;
  color: var(--gold-light);
}
.decree__quote::before { content: '« '; color: var(--ivory); }
.decree__quote::after  { content: ' »'; color: var(--ivory); }
.decree__cite { font-family: var(--f-script); font-size: 1.4rem; color: var(--ivory); }

/* DISTRIBUTE */
.distribute { background: var(--ink); color: var(--ivory); padding: clamp(4rem, 8vw, 6rem) var(--gutter); position: relative; overflow: hidden; }
.distribute__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .distribute__inner { grid-template-columns: 1fr; } }
.distribute__eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--f-body); font-size: .7rem; letter-spacing: .35em; text-transform: uppercase; font-weight: 500;
  color: var(--gold-light); margin-bottom: 1rem;
}
.distribute__eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold-deep); }
.distribute__title { font-family: var(--f-serif); font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.05; margin-bottom: 1.2rem; }
.distribute__title em { font-family: var(--f-script); font-style: normal; color: var(--gold-light); }
.distribute__body { font-family: var(--f-body); font-size: 1rem; line-height: 1.7; color: rgba(244, 236, 216, .75); max-width: 540px; margin-bottom: 2rem; }
.distribute__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.distribute__visual { display: flex; justify-content: center; align-items: center; position: relative; }
.distribute__map { width: 100%; max-width: 560px; opacity: .9; }
@media (max-width: 900px) {
  .distribute__map { max-width: 480px; }
}

/* CONTACT */
.contact { background: var(--ivory); position: relative; }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: flex-start; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__info-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(182, 138, 62, .25);
}
.contact__info-item:last-child { border-bottom: none; }
.contact__info-icon { width: 48px; height: 48px; color: var(--ruby); }
.contact__info-icon svg { width: 100%; height: 100%; }
.contact__info-label { font-family: var(--f-body); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--bronze); margin-bottom: .3rem; }
.contact__info-value { font-family: var(--f-serif); font-size: 1.25rem; color: var(--ink); line-height: 1.4; }
.contact__form { background: var(--parchment); border-radius: 14px; padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid rgba(182, 138, 62, .25); }
.contact__form-title { font-family: var(--f-serif); font-size: 1.8rem; margin-bottom: 1.5rem; }
.contact__form-title em { font-family: var(--f-script); font-style: normal; color: var(--ruby); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-field label { font-family: var(--f-body); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: var(--bronze); }
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--f-body); font-size: 1rem;
  padding: .8rem 1rem;
  background: var(--ivory);
  border: 1px solid rgba(182, 138, 62, .35);
  border-radius: 6px;
  color: var(--ink);
  transition: border-color .25s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--ruby); }
.form-field textarea { min-height: 120px; resize: vertical; }
.contact__form button { margin-top: 1rem; width: 100%; justify-content: center; }

.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .6rem; margin-top: .3rem; }
.checkbox-item { display: flex; align-items: center; gap: .6rem; padding: .6rem .9rem; background: var(--ivory); border: 1px solid rgba(182, 138, 62, .35); border-radius: 6px; cursor: pointer; transition: border-color .2s, background .2s; font-family: var(--f-body); font-size: .9rem; color: var(--ink); }
.checkbox-item:hover { border-color: var(--ruby); }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--ruby); margin: 0; cursor: pointer; }
.checkbox-item input[type="checkbox"]:checked + span { color: var(--ruby); font-weight: 600; }
.checkbox-item:has(input:checked) { border-color: var(--ruby); background: rgba(203, 44, 48, .04); }

/* FAQ */
.faq { background: var(--parchment); }
.faq__list { max-width: 900px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid rgba(182, 138, 62, .3); }
.faq__item summary {
  list-style: none;
  padding: 1.6rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--f-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--ink);
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--ruby); }
.faq__item summary::after {
  content: '+';
  font-family: var(--f-serif); font-size: 1.8rem;
  color: var(--gold-deep);
  transition: transform .3s, color .3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); color: var(--ruby); }
.faq__body { font-family: var(--f-body); font-size: .98rem; line-height: 1.75; color: var(--ink-soft); padding: 0 0 1.6rem; max-width: 800px; }

/* FOOTER */
.footer { background: var(--ink); color: var(--ivory); padding: 5rem var(--gutter) 2rem; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(228, 199, 123, .15);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand-logo { width: 220px; height: auto; margin-bottom: 1.5rem; filter: brightness(0) invert(.85) sepia(.4) saturate(2) hue-rotate(5deg); }
.footer__brand-tag { font-family: var(--f-script); font-size: 1.2rem; color: var(--gold-light); margin-bottom: 1.5rem; }
.footer__brand-blurb { font-family: var(--f-body); font-size: .88rem; line-height: 1.65; opacity: .7; max-width: 320px; }
.footer__col-title { font-family: var(--f-body); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: var(--gold-light); margin-bottom: 1.5rem; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: .7rem; }
.footer__col a { font-family: var(--f-body); font-size: .9rem; opacity: .75; transition: opacity .3s, color .3s; }
.footer__col a:hover { opacity: 1; color: var(--gold-light); }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-family: var(--f-body); font-size: .78rem; opacity: .6; }
.footer__heart { display: inline-block; color: var(--ruby); animation: heartbeat 1.5s ease-in-out infinite; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes scrollPulse { 0%, 100% { opacity: .3; transform: scaleY(.5); } 50% { opacity: 1; transform: scaleY(1); } }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 20%, 50% { transform: scale(1.15); } }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* PRODUCT DETAIL */
.product-page { padding-top: 5rem; }
.product-hero { position: relative; overflow: hidden; padding: 4rem var(--gutter); }
.product-hero.beef    { background: var(--ruby);   --ph-text: var(--gold-light); color: var(--ivory); }
.product-hero.salmon  { background: var(--aqua);   --ph-text: #FFFFFF; color: var(--ivory); }
.product-hero.chicken { background: var(--cream);  --ph-text: var(--bronze); color: var(--bronze); }
.product-hero.turkey  { background: var(--bronze); --ph-text: var(--gold-light); color: var(--ivory); }
.product-hero::before, .product-hero::after { content: ''; position: absolute; border: 1px solid var(--ph-text); opacity: .25; pointer-events: none; }
.product-hero::before { inset: 1.5rem; }
.product-hero::after  { inset: 2rem; }
.product-hero__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; min-height: 70vh; padding: 2rem 0; }
@media (max-width: 900px) { .product-hero__grid { grid-template-columns: 1fr; gap: 2rem; } }
.product-hero__text { position: relative; z-index: 2; }
.product-hero__suit {
  font-family: var(--f-serif); font-size: 1.4rem; letter-spacing: .3em;
  color: var(--ph-text); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .8rem;
}
.product-hero__suit svg { width: 18px; height: 18px; fill: currentColor; }
.product-hero__title { font-family: var(--f-serif); font-size: clamp(3rem, 7vw, 6rem); line-height: .95; margin-bottom: 1rem; color: var(--ph-text); }
.product-hero__sub { font-family: var(--f-script); font-size: clamp(1.3rem, 2vw, 1.8rem); margin-bottom: 2rem; opacity: .9; }
.product-hero__desc { font-family: var(--f-body); font-size: 1.05rem; line-height: 1.7; max-width: 500px; margin-bottom: 2.5rem; opacity: .92; }
.product-hero__pouch { position: relative; text-align: center; }
.product-hero__pouch img { max-width: 75%; margin: 0 auto; filter: drop-shadow(0 30px 80px rgba(0,0,0,.4)); animation: floatY 5s ease-in-out infinite; }
.product-hero__badges { display: flex; gap: .7rem; flex-wrap: wrap; margin-bottom: 2rem; }
.product-hero__badge {
  padding: .55rem 1.1rem;
  border: 1px solid var(--ph-text);
  border-radius: 100px;
  font-family: var(--f-body); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
  color: var(--ph-text);
}

.product-nutrition { background: var(--parchment); padding: 6rem var(--gutter); }
.product-nutrition__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 900px) { .product-nutrition__grid { grid-template-columns: repeat(2, 1fr); } }
.nut-stat { text-align: center; padding: 2rem 1rem; border-left: 1px solid var(--gold-deep); }
.nut-stat:first-child { border-left: none; }
@media (max-width: 900px) { .nut-stat { border-left: none; border-top: 1px solid var(--gold-deep); padding-top: 1.5rem; } .nut-stat:first-child { border-top: none; } }
.nut-stat__value { font-family: var(--f-serif); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--ruby); line-height: 1; margin-bottom: .5rem; }
.nut-stat__label { font-family: var(--f-body); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; font-weight: 500; color: var(--bronze); }

.other-variants { background: var(--ivory); padding: 6rem var(--gutter); }
.variant-row { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .variant-row { grid-template-columns: 1fr; } }
.variant { aspect-ratio: 4/3; border-radius: 12px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 1.8rem; transition: transform .5s; }
.variant:hover { transform: translateY(-6px); }
.variant img { position: absolute; right: -10%; top: 50%; transform: translateY(-50%); height: 110%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }
.variant__label { position: relative; z-index: 2; font-family: var(--f-serif); font-size: 1.6rem; }
.variant--salmon  { background: var(--aqua); color: #fff; }
.variant--beef    { background: var(--ruby); color: var(--gold-light); }
.variant--chicken { background: var(--cream); color: var(--bronze); }
.variant--turkey  { background: var(--bronze); color: var(--gold-light); }

/* PAGE HERO shared */
.page-hero { padding: 10rem var(--gutter) 5rem; text-align: center; background: var(--parchment); position: relative; overflow: hidden; }
.page-hero__title { font-family: var(--f-serif); font-size: clamp(2.8rem, 7vw, 6rem); line-height: 1.05; max-width: 900px; margin: 0 auto 1.5rem; padding-top: .12em; }
.page-hero__title em { font-family: var(--f-script); font-style: normal; color: var(--ruby); }
.page-hero__lead { font-family: var(--f-body); font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.75; max-width: 680px; margin: 0 auto; color: var(--ink-soft); }

/* HERITAGE */
.heritage-timeline { padding: 8rem var(--gutter); background: var(--ivory); }
.timeline { max-width: 900px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 1.2rem; top: 0; bottom: 0; width: 1px; background: var(--gold-deep); }
.tl-item { padding-left: 4rem; position: relative; margin-bottom: 4rem; }
.tl-item::before {
  content: ''; position: absolute;
  left: 0; top: -.5rem;
  width: 2.5rem; height: 2.5rem;
  background: var(--ruby); border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E4C77B'><path d='M12 21s-7-4.5-9.5-9.5C.7 7.5 3.5 4 7 4c2 0 3.5 1 5 3 1.5-2 3-3 5-3 3.5 0 6.3 3.5 4.5 7.5C19 16.5 12 21 12 21z'/></svg>");
  background-size: 60% 60%; background-position: center; background-repeat: no-repeat;
}
.tl-year { font-family: var(--f-script); font-size: 2rem; color: var(--ruby); margin-bottom: .5rem; }
.tl-title { font-family: var(--f-serif); font-size: 1.8rem; margin-bottom: .8rem; }
.tl-body { font-family: var(--f-body); font-size: .98rem; line-height: 1.7; color: var(--ink-soft); max-width: 600px; }

/* NUTRIENT CARDS */
.nutrient-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
@media (max-width: 900px) { .nutrient-cards { grid-template-columns: 1fr; } }
.nutrient { background: var(--ivory); border: 1px solid rgba(182, 138, 62, .3); border-radius: 14px; padding: 2.5rem 2rem; transition: transform .4s, box-shadow .4s; }
.nutrient:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.nutrient__icon { width: 72px; height: 72px; color: var(--ruby); margin-bottom: 1.5rem; }
.nutrient__icon svg { width: 100%; height: 100%; }
.nutrient__name { font-family: var(--f-serif); font-size: 1.5rem; margin-bottom: .5rem; }
.nutrient__sub { font-family: var(--f-script); font-size: 1.2rem; color: var(--ruby); margin-bottom: 1rem; }
.nutrient__body { font-family: var(--f-body); font-size: .95rem; line-height: 1.7; color: var(--ink-soft); }

/* PARALLAX BEAUTY SHOT (full-bleed image with overlay text) */
.beauty-bleed {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.beauty-bleed__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.beauty-bleed__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.beauty-bleed__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 236, 216, .85) 0%, rgba(244, 236, 216, .4) 45%, transparent 70%);
  z-index: 1;
}
.beauty-bleed__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem var(--gutter);
  width: 100%;
}
.beauty-bleed__text {
  max-width: 480px;
}
@media (max-width: 900px) {
  .beauty-bleed__overlay { background: linear-gradient(180deg, rgba(244, 236, 216, .9) 0%, rgba(244, 236, 216, .6) 100%); }
  .beauty-bleed__text { max-width: none; }
}

/* WORDMARK BACKGROUND WATERMARK */
.wordmark-watermark {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 1000px);
  height: auto;
  opacity: .12;
  pointer-events: none;
  z-index: 0;
}

/* UTILITIES */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.divider { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin: 4rem 0; color: var(--gold-deep); }
.divider__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-deep), transparent); max-width: 200px; }
.divider__heart { width: 20px; height: 20px; fill: var(--ruby); }
