/* ───────────────────────────────────────────────────────────────────
   Wild Moon Organics — index v4 stylesheet
   Aligned to canonical brand system, with v3 type voice retained.
   ─────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: "Eraser";
  src: url("fonts/EraserRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* BEEF — berry / magenta family */
  --magenta:      #9C2347;
  --magenta-ink:  #5A0F26;
  --magenta-soft: #D78AA1;
  --magenta-wash: #F5DDE3;

  /* CHICKEN — ember / orange family */
  --orange:      #CB6E21;
  --orange-ink:  #7A3C0C;
  --orange-soft: #F1B785;
  --orange-wash: #FBE6D2;

  /* Neutrals */
  --ink:      #1F1612;    /* warm near-black, primary text */
  --cream:    #FBF6EC;    /* main section ground */
  --cream-2:  #F3EAD6;    /* dividers, soft borders */
  --paper:    #FFFCF5;    /* lightest ground variant */

  --rule: rgba(31, 22, 18, 0.14);
  --page-max: 1320px;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Inter", system-ui, sans-serif;
  --brush: "Eraser", "Cabin Sketch", cursive;
}

* { box-sizing: border-box; }
html { scrollbar-gutter: stable both-edges; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--page-max); margin: 0 auto; padding: 0 48px; }
.container-tight { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

/* ============================================================
   Type primitives — italic Cormorant kickers, no all-caps
   ============================================================ */
.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--magenta);
  letter-spacing: 0;
  margin: 0 0 22px;
  line-height: 1.3;
}
.kicker.chicken { color: var(--orange); }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  opacity: 0.85;
}

/* ============================================================
   Buttons — pill, single-tone
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover  { opacity: 0.88; }
.btn:active { transform: translateY(1px); }
.btn-beef    { background: var(--magenta); color: #fff; }
.btn-chicken { background: var(--orange);  color: #fff; }
.btn-ink     { background: var(--ink); color: var(--paper); }
.btn-ghost   {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-arrow::after {
  content: "→";
  font-family: var(--serif);
  font-size: 18px;
  margin-left: 2px;
}
.btn-sub {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  opacity: 0.7;
  margin-top: 14px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background: var(--cream);
  padding: clamp(20px, 2.2vw, 32px) 8vw;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--cream-2);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark img {
  width: clamp(240px, 22vw, 340px);
  height: clamp(80px, 7.3vw, 112px);
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  max-width: 100%;
}
.brand-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.25;
  color: var(--ink);
  opacity: 0.78;
  max-width: 200px;
}
.brand-tagline em {
  display: block;
  color: var(--orange);
  opacity: 0.9;
  font-size: clamp(13px, 1.1vw, 16px);
  margin-top: 4px;
}
@media (max-width: 1100px) {
  .brand-tagline { display: none; }
}
.nav-links {
  display: flex;
  gap: clamp(24px, 2.6vw, 44px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 27px);
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--orange); border-bottom-color: var(--orange); }

/* Hamburger toggle — hidden on desktop, shown via mobile media query */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 28px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.site-header .btn {
  padding: 24px 44px;
  font-size: 26px;
  letter-spacing: 0.04em;
}
.site-header .btn-arrow::after {
  font-size: 30px;
  margin-left: 6px;
}

/* ============================================================
   Wave divider — the brand gesture, wider + taller
   ============================================================ */
.wave {
  position: absolute;
  left: -240px;
  right: -240px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.wave-mixed { background-image: url("assets/wave-mixed.svg"); }
.wave-white { background-image: url("assets/wave-white.svg"); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: clamp(560px, 78vh, 820px);
}
.hero-copy {
  padding: 110px 60px 160px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-copy > * {
  opacity: 0;
  animation: rise .9s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: .10s; }
.hero-copy > *:nth-child(2) { animation-delay: .22s; }
.hero-copy > *:nth-child(3) { animation-delay: .34s; }
.hero-copy > *:nth-child(4) { animation-delay: .48s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy > * { opacity: 1; animation: none; }
}

.hero-eyebrow { margin: 0 0 22px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(60px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.hero h1 em { font-style: italic; color: var(--magenta); font-weight: 500; }
.hero h1 em.chicken { color: var(--orange); }
.hero .lede {
  margin: 0 0 40px;
  max-width: 460px;
  text-wrap: balance;
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; }

.hero-image-wrap {
  position: relative;
  background: var(--cream-2);
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.10); }
  to   { transform: scale(1.00); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image-wrap img { animation: none; }
}

/* Wave at hero bottom — wider, taller, more prominent.
   z-index 0 so it sits BEHIND the hero image (which gets z-index 1). */
.hero .wave {
  bottom: -1px;
  height: 360px;
  z-index: 0;
}
.hero-copy { z-index: 2; }
.hero-image-wrap { z-index: 1; }

/* ============================================================
   Section primitives — alternating grounds
   ============================================================ */
.section {
  padding: 110px 0;
  position: relative;
}
.section-cream        { background: var(--cream); }
.section-paper        { background: var(--paper); }
.section-orange-wash  { background: var(--orange-wash); }
.section-magenta-wash { background: var(--magenta-wash); }

.section-head {
  margin-bottom: 64px;
  max-width: 720px;
}
.section-head .kicker { margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.section-head h2 em { font-style: italic; color: var(--magenta); }
.section-head h2 em.chicken { color: var(--orange); }

/* ============================================================
   Athlete band — full-bleed photographic moment
   ============================================================ */
.athlete-band {
  position: relative;
  min-height: 1100px;
  background: #0a0a0a;
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 130px 0;
}
/* Long cream-to-transparent fades at top and bottom of the athlete-band.
   The top fade is intentionally tall so that on a typical above-the-fold
   view the user doesn't see any hard black edge. */
.athlete-band::before,
.athlete-band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  z-index: 1;
  pointer-events: none;
}
.athlete-band::before {
  top: 0;
  height: 140px;
  background: linear-gradient(180deg,
    var(--cream) 0%,
    var(--cream) 20%,
    rgba(251,246,236,0) 100%
  );
}
.athlete-band::after {
  bottom: 0;
  height: 100px;
  background: linear-gradient(0deg,
    var(--magenta-wash) 0%,
    var(--magenta-wash) 18%,
    rgba(245, 221, 227, 0) 100%
  );
}
.athlete-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/brent_rope_pull.png");
  background-size: auto 92%;
  background-position: 75% center;
  background-repeat: no-repeat;
}
.athlete-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.78) 35%,
    rgba(10,10,10,0.30) 58%,
    rgba(10,10,10,0) 78%
  );
}
.athlete-play {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1.5px solid rgba(251, 246, 236, 0.7);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--paper);
  transition: transform 0.25s ease, background 0.2s, border-color 0.2s;
  padding: 0;
}
.athlete-play:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--paper);
}
.athlete-play .play-icon {
  width: 0; height: 0;
  border-left: 18px solid var(--paper);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}
.athlete-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  transform: translateX(calc(-6vw - 125px));
}
@media (max-width: 900px) {
  .athlete-content { transform: none; }
}
.athlete-band .kicker.on-dark {
  color: var(--orange-soft);
  margin-bottom: 30px;
  font-size: clamp(26px, 2.1vw, 31px);
}
.athlete-band blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.2;
  color: var(--paper);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.athlete-band blockquote p { margin: 0; }
.athlete-band .attribution.on-dark {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 25px;
  color: var(--paper);
  opacity: 0.78;
}
.brent-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.brent-socials a {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1.5px solid rgba(251, 246, 236, 0.5);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.brent-socials a:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  transform: translateY(-1px);
}
.brent-socials svg { width: 18px; height: 18px; fill: currentColor; }

/* ============================================================
   Products section
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.product {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--cream-2);
}
.product-figure {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
}
.product-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-body { padding: 36px 40px 40px; }
.product-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 14px;
  opacity: 0.85;
}
.product-beef .product-eyebrow { color: var(--magenta); }
.product-chicken .product-eyebrow { color: var(--orange); }

.product-name {
  font-family: var(--brush);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.9;
  margin: 0 0 18px;
  letter-spacing: 0;
}
.product-chicken .product-name { font-size: 76px; }
.product-beef .product-name { color: var(--magenta); }
.product-chicken .product-name { color: var(--orange); }

.product-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 26px;
  max-width: 340px;
  opacity: 0.85;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--cream-2);
  border-bottom: 1px solid var(--cream-2);
  padding: 18px 0;
}
.product-stats .stat { display: flex; flex-direction: column; align-items: flex-start; }
.product-stats .stat strong {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
}
.product-beef .product-stats .stat strong { color: var(--magenta); }
.product-chicken .product-stats .stat strong { color: var(--orange); }
.product-stats .stat span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  margin-top: 4px;
  opacity: 0.6;
}

.product-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  padding-bottom: 3px;
  border-bottom: 1.5px solid currentColor;
}
.product-beef .product-link { color: var(--magenta); }
.product-chicken .product-link { color: var(--orange); }

/* ============================================================
   Testimonial section — quiet editorial
   ============================================================ */
.testimonial { text-align: center; }
.testimonial .kicker { margin-bottom: 32px; }
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.testimonial blockquote p {
  margin: 0 0 24px;
}
.testimonial blockquote p:last-child { margin-bottom: 0; }
.testimonial .attribution {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  opacity: 0.75;
}

/* ============================================================
   Ingredient marquee
   ============================================================ */
.ingredients-band {
  padding: 100px 0 110px;
  background: var(--cream);
  overflow: hidden;
}
.ingredients-band .head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.ingredients-band .head .kicker { margin-bottom: 14px; }
.ingredients-band .head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.ingredients-band .head h2 em { font-style: italic; color: var(--magenta); }
.ingredients-band .head h2 em.chicken { color: var(--orange); }

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  animation: marquee 75s linear infinite;
  padding-right: 56px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.m-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.m-item img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--cream-2);
}
.m-item span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.m-item .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--magenta-soft);
  display: inline-block;
  margin-left: 4px;
}
.m-item:nth-child(even) .dot { background: var(--orange-soft); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ingredients-band .cta-row {
  text-align: center;
  margin-top: 60px;
}

/* ============================================================
   Footer
   ============================================================ */
.pre-footer-wave {
  position: relative;
  height: 220px;
  margin-top: -80px;
  pointer-events: none;
}
.pre-footer-wave .wave { top: 0; height: 220px; }

/* Brand wave bleeding into the testimonial section from the top edge */
.testimonial-band { position: relative; overflow: hidden; }
.testimonial-band .container-tight { position: relative; z-index: 1; }
.testimonial-wave {
  top: -40px;
  height: 280px;
  z-index: 0;
  opacity: 0.85;
  mix-blend-mode: multiply;
}

.site-footer {
  background: var(--cream);
  padding: 0 0 0;
  position: relative;
}
.footer-inner {
  padding: 60px 0 24px;
  border-top: 1px solid var(--cream-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr auto auto auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--cream-2);
}
.footer-brand img {
  width: clamp(220px, 18vw, 300px);
  height: clamp(72px, 6vw, 100px);
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  margin-bottom: 22px;
  max-width: 100%;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.45;
  margin: 0 0 22px;
  max-width: 360px;
  opacity: 0.78;
}
.footer-brand .socials { display: flex; gap: 12px; }
.site-footer .footer-col .socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.site-footer .footer-col .socials a {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.site-footer .footer-col .socials a:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--paper);
}
.site-footer .footer-col .socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-brand .socials a {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-brand .socials a:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--paper);
}
.footer-brand .socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--orange);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  opacity: 0.6;
  flex-wrap: wrap;
}
.footer-seals-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 0 0;
}
.footer-seals-row img {
  height: 64px;
  width: auto;
  opacity: 0.95;
}
@media (max-width: 600px) {
  .footer-seals-row img { height: 52px; }
}
.footer-seals {
  display: flex; align-items: center; gap: 14px;
  opacity: 1;
}
.footer-seals img { height: 44px; width: auto; }

/* ============================================================
   Responsive — tablet & phone passes
   ============================================================ */

/* TABLET (≤1024) — collapse hero to 1-col, copy first, image below */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .container-tight { padding: 0 32px; }
  .site-header { padding: 18px 4vw; }

  /* Gap between hero and Brent section on tablet + mobile */
  .athlete-band { margin-top: 40px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    min-height: 0;
    order: 2;
  }
  .hero-image-wrap img { animation: none; }
  .hero-copy { padding: 70px 28px 90px; order: 1; }
  .hero h1 { font-size: clamp(48px, 6.5vw, 92px); }

  .athlete-band { min-height: 880px; }
  .athlete-content { transform: translateX(calc(-3vw - 60px)); }
  .testimonial blockquote { font-size: clamp(26px, 3.6vw, 40px); }
  .section-head h2 { font-size: clamp(36px, 5vw, 56px); }

  .product-name { font-size: 76px; }
  .ingredients-band .head h2 { font-size: clamp(30px, 4vw, 46px); }
}

/* MOBILE LAYOUT (≤900) — keep collapse, refine sizes */
@media (max-width: 900px) {
  .hero-image-wrap { aspect-ratio: 3/2; }
  .athlete-content { transform: none; }
  .athlete-grid, .products-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* PHONE (≤800) — header hamburger + Brent stack */
@media (max-width: 800px) {
  .container { padding: 0 24px; }
  .container-tight { padding: 0 24px; }

  /* Header: show hamburger, hide nav until toggled, brand-tagline hidden */
  .site-header { padding: 14px 24px; position: relative; }
  .header-row { gap: 16px; }
  .brand-mark img {
    width: clamp(180px, 56vw, 240px);
    height: clamp(60px, 18vw, 80px);
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
  }
  .nav-toggle { display: inline-flex; }
  .header-row nav { order: 3; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    border-bottom: 1px solid var(--cream-2);
    z-index: 20;
  }
  .header-row.is-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--cream-2);
    font-size: 22px;
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links a.is-active { border-bottom-color: var(--cream-2); }
  /* hamburger to X */
  .header-row.is-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .header-row.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .header-row.is-open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* Hero */
  .hero h1 { font-size: clamp(38px, 10vw, 56px); margin: 0 0 20px; }
  .hero .lede { font-size: 19px; margin: 0 0 28px; }
  .hero-copy { padding: 56px 24px 80px; }
  .hero-image-wrap { min-height: 320px; }

  /* Athlete section — stack: photo on top, text below in solid black */
  .athlete-band {
    min-height: auto;
    display: block;
    padding: 0;
  }
  .athlete-band::before, .athlete-band::after { display: none; }
  .athlete-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 56vh;
    min-height: 380px;
    background-size: cover;
    background-position: 60% center;
  }
  .athlete-bg::after {
    background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.5) 70%, rgba(10,10,10,0.9) 100%);
  }
  .athlete-play {
    right: 50%;
    top: 50%;
    /* Nudge up and right of the photo's center so it sits in the negative space, not on Brent */
    transform: translate(calc(50% + 32px), calc(-50% - 32px));
    width: 72px; height: 72px;
  }
  .athlete-play:hover {
    transform: translate(calc(50% + 32px), calc(-50% - 32px)) scale(1.06);
    background: rgba(0, 0, 0, 0.5);
  }
  /* Specificity bump so .container's later padding rule can't override */
  .athlete-band .athlete-content {
    transform: none;
    max-width: 100%;
    padding: 50px 28px 70px;
    background: #0a0a0a;
  }
  .athlete-band .kicker.on-dark { font-size: 22px; margin-bottom: 24px; }
  .athlete-band blockquote { font-size: clamp(22px, 5.4vw, 30px); }
  .athlete-band .attribution.on-dark { font-size: 17px; margin-top: 26px; }
  .brent-socials a { width: 38px; height: 38px; }

  /* Section padding tighter */
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(32px, 7.5vw, 48px); }

  /* Products */
  .product-body { padding: 26px 24px 30px; }
  .product-name { font-size: 56px; }
  .product-chicken .product-name { font-size: 48px; }
  .product-tagline { font-size: 19px; }
  .product-stats .stat strong { font-size: 26px; }

  /* Testimonial */
  .testimonial blockquote { font-size: clamp(22px, 5.5vw, 32px); }
  .testimonial .attribution { font-size: 16px; }

  /* Ingredients marquee */
  .ingredients-band { padding: 70px 0 80px; }
  .ingredients-band .head h2 { font-size: clamp(26px, 6vw, 38px); }
  .marquee-track { gap: 36px; padding-right: 36px; }
  .m-item { gap: 12px; }
  .m-item img { width: 38px; height: 38px; }
  .m-item span { font-size: 21px; }

  /* Footer */
  .footer-inner { padding: 50px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-brand img { width: 220px; height: 70px; }
  .footer-col h4 { font-size: 19px; }
  .footer-col a { font-size: 17px; }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    font-size: 13px;
    padding: 18px 0;
  }
}

/* SMALL PHONE (≤420) */
@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .athlete-band .athlete-content { padding: 44px 22px 60px; }
  .hero h1 { font-size: 36px; }
  .hero .lede { font-size: 17px; }
  .hero-copy { padding: 44px 18px 60px; }
  .product-name { font-size: 48px; }
  .product-chicken .product-name { font-size: 42px; }
  .footer-seals img { height: 36px; }
}

/* ============================================================
   About page
   ============================================================ */
.about-hero {
  background: var(--cream);
  padding: 70px 0 30px;
  text-align: center;
  position: relative;
}
.about-hero + .section { padding-top: 70px; }
.about-hero + .ingredients-band { padding-top: 70px; }
  text-align: center;
  position: relative;
}
.about-hero-inner { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.about-hero .kicker { margin-bottom: 12px; }
.about-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.about-hero h1 em { font-style: italic; color: var(--magenta); font-weight: 500; }
.about-hero h1 em.chicken { color: var(--orange); }
.about-hero .lede {
  margin: 0 auto;
  max-width: 680px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.about-story .story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.story-grid .kicker { margin-bottom: 14px; }
.story-grid .display-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.story-copy p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.88;
  margin: 0 0 18px;
}
.story-copy p:last-child { margin-bottom: 0; }

/* Process band — photo + copy */
.process-band {
  background: var(--paper);
  padding: 110px 0;
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1320px;
}
.process-figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: 0 18px 48px rgba(31, 22, 18, 0.12);
}
.process-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  /* Slight desaturation + warmth so the documentary photo bridges
     to the editorial product photography on the rest of the site. */
  filter: saturate(0.82) contrast(1.04) brightness(0.98) sepia(0.06);
}
.process-copy .kicker { margin-bottom: 14px; }
.process-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.process-copy p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.88;
  margin: 0 0 16px;
  max-width: 460px;
}

/* Bones / sourcing cards */
.bones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.bones-card {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: 16px;
  padding: 36px 36px 32px;
}
.bones-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 16px;
}
.bones-beef .bones-eyebrow { color: var(--magenta); }
.bones-chicken .bones-eyebrow { color: var(--orange); }
.bones-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.bones-card ul {
  margin: 0;
  padding-left: 22px;
  list-style: disc;
}
.bones-card li {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 8px;
}

/* About page responsive */
@media (max-width: 1024px) {
  .about-story .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; gap: 50px; }
  .bones-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-band { padding: 80px 0; }
  .about-hero { padding: 60px 0 24px; }
  .about-hero + .section { padding-top: 54px; }
  .about-hero + .ingredients-band { padding-top: 54px; }
}
@media (max-width: 800px) {
  .bones-card { padding: 28px 24px; }
  .process-figure img { aspect-ratio: 3/4; }
}

/* ============================================================
   About page — origin, turning point, use cases
   ============================================================ */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.origin-figure { margin: 0; }
.origin-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  background: var(--cream-2);
  box-shadow: 0 18px 48px rgba(31, 22, 18, 0.10);
  filter: saturate(0.92) contrast(1.02);
}
.origin-figure figcaption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  opacity: 0.7;
  text-align: center;
  margin-top: 14px;
}
.origin-copy .kicker { margin-bottom: 14px; }
.display-h em { font-style: italic; color: var(--magenta); }
.display-h em.chicken { color: var(--orange); }
.origin-copy .display-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.origin-copy p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.88;
  margin: 0 0 16px;
}

.turning-point { text-align: center; }
.turning-point .kicker { margin-bottom: 36px; }
.turning-point blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
  max-width: 920px;
  margin: 0 auto;
}
.turning-point blockquote p { margin: 0; }
.turning-intro {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.88;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
/* Bold + italic em accents on the about page */
.about-page h1 em,
.about-page h2 em,
.about-page .display-h em,
.about-page .turning-point-copy em {
  font-weight: 700;
}

.turning-point .turning-attribution {
  margin-top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--magenta);
  text-align: center;
}

/* Wave divider, flipped — bleeds into the turning-point section from above */
.turning-point-section {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}
.turning-point-section .container,
.turning-point-section .container-tight { position: relative; z-index: 1; }

/* Two-column layout inside turning-point: photo + Sean's quote */
.turning-point-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
  max-width: 1280px;
}
.turning-figure { margin: 0; }
.turning-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(31, 22, 18, 0.12);
  filter: saturate(0.92) contrast(1.02);
}
.turning-point-copy { text-align: left; }
.turning-point-copy .kicker,
.in-store-copy .kicker {
  font-size: clamp(28px, 2.4vw, 36px);
  margin-bottom: 18px;
}
.turning-point-copy .kicker { margin-bottom: 18px; }
.turning-point-copy .turning-intro,
.turning-point-copy .turning-close {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.85;
  text-align: left;
  max-width: none;
}
.turning-point-copy .turning-intro { margin: 0 0 28px; }
.turning-point-copy .turning-close { margin: 26px 0 0; }
.turning-point-copy blockquote {
  text-align: left;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.turning-point-copy blockquote p { margin: 0; }
.turning-point-copy .turning-attribution {
  text-align: left;
  margin-top: 22px;
}
@media (max-width: 900px) {
  .turning-point-grid { grid-template-columns: 1fr; gap: 40px; }
}
.wave-top {
  position: absolute;
  left: -240px;
  right: -240px;
  top: -90px;
  height: 240px;
  background-image: url("assets/wave-mixed.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.wave-flipped { transform: scaleY(-1); }

@media (max-width: 700px) {
  .turning-point-section { padding-top: 110px; }
  .wave-top { height: 180px; top: -70px; }
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 36px;
  max-width: 1200px;
  margin: 0 auto;
}
.use-case {
  padding: 28px 26px;
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: 14px;
}
.use-case h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  color: var(--magenta);
  margin: 0 0 12px;
}
.use-case:nth-child(2n) h3 { color: var(--orange); }
.use-case p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
}

.contact-cta { padding: 80px 0 110px; }

@media (max-width: 1024px) {
  .origin-grid { grid-template-columns: 1fr; gap: 40px; }
  .use-cases-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .use-cases-grid { grid-template-columns: 1fr; }
}

/* In-store sampling moment (about page) */
.in-store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.in-store-figure { margin: 0; }
.in-store-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(31, 22, 18, 0.10);
  filter: saturate(0.95) contrast(1.02);
}
.in-store-copy .kicker { margin-bottom: 14px; }
.in-store-copy .display-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.in-store-copy p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.88;
  margin: 0;
}
@media (max-width: 1024px) {
  .in-store-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Ingredient board feature image (nutrition page) */
.ingredient-board-figure {
  margin: 0 auto;
  max-width: 560px;
}
.ingredient-board-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(31, 22, 18, 0.10);
  filter: saturate(0.95) contrast(1.04);
}

/* ============================================================
   Nutrition page
   ============================================================ */
.nutrition-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.nutrition-card {
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px 36px 30px;
}
.nutrition-content {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}
.nutrition-product-photo {
  margin: 0;
  background: var(--cream-2);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.nutrition-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.nutrition-side .product-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  margin: 0 0 6px;
  opacity: 0.85;
}
.product-beef .nutrition-side .product-eyebrow { color: var(--magenta); }
.product-chicken .nutrition-side .product-eyebrow { color: var(--orange); }
.nutrition-side .product-name {
  margin: 0 0 18px;
  font-size: 64px;
  line-height: 0.9;
}
.nutrition-card.product-chicken .product-name { font-size: 54px; }
.nf-toggle {
  display: flex;
  gap: 3px;
  margin: 8px 0 6px;
  background: rgba(31, 22, 18, 0.07);
  padding: 3px;
  border-radius: 999px;
}
.nf-tab {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 8px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
}
.nf-tab.is-active { background: var(--ink); color: var(--cream); }
.product-beef .nf-tab.is-active { background: var(--magenta); color: var(--cream); }
.product-chicken .nf-tab.is-active { background: var(--orange); color: var(--cream); }

.nutrition-facts-label {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  padding: 14px 16px 12px;
  font-family: var(--sans);
  color: var(--ink);
}
.nf-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.05;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.nf-title .nf-bilingual {
  font-weight: 700;
  font-size: 17px;
  font-style: italic;
  opacity: 0.85;
}
.nf-serving {
  font-size: 11px;
  margin: 0 0 6px;
  opacity: 0.78;
}
.nf-rule-thick { border-top: 6px solid var(--ink); margin: 4px 0; }
.nf-rule-medium { border-top: 1.5px solid var(--ink); margin: 4px 0; }
.nf-calories {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  font-size: 18px;
  margin: 2px 0;
}
.nf-calories strong { font-size: 24px; font-weight: 800; }
.nf-dv-header {
  text-align: right;
  font-weight: 700;
  font-size: 11px;
  margin: 0 0 2px;
}
.nf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 1.35;
}
.nf-table td {
  padding: 5px 0;
  border-top: 0.5px solid rgba(31, 22, 18, 0.18);
  vertical-align: top;
}
.nf-table tr:first-child td { border-top: 0; }
.nf-table td:last-child {
  text-align: right;
  font-weight: 700;
  width: 18%;
  white-space: nowrap;
}
.nf-table tr.indent td:first-child { padding-left: 14px; }
.nf-footer {
  font-size: 10.5px;
  line-height: 1.4;
  margin: 4px 0 0;
  opacity: 0.78;
}
.ingredients-list {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--cream-2);
}
.ingredients-list h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 10px;
}
.product-beef .ingredients-list h4 { color: var(--magenta); }
.product-chicken .ingredients-list h4 { color: var(--orange); }
.ingredients-list p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.82;
  margin: 0 0 10px;
}
.ingredients-list .organic-note {
  font-style: italic;
  font-size: 14px;
  opacity: 0.7;
}
.ingredients-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.ing-card {
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-radius: 12px;
  padding: 18px 14px 20px;
}
.ing-card img {
  width: 56px; height: 56px;
  border-radius: 999px;
  object-fit: cover;
  margin: 0 auto 10px;
  background: var(--cream-2);
}
.ing-card-water .water-icon {
  width: 56px; height: 56px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: linear-gradient(160deg, #e8f0f2 0%, #cfe4e7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ing-card-water .water-icon svg { width: 34px; height: 34px; }
.ing-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.2;
}
.ing-card p {
  font-family: var(--serif);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0.82;
  margin: 0;
}
@media (max-width: 1100px) {
  .nutrition-content { grid-template-columns: 1fr; gap: 24px; }
  .nutrition-product-photo { aspect-ratio: 3/2; max-height: 320px; }
  .ingredients-detail-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nutrition-products { grid-template-columns: 1fr; gap: 36px; }
  .ingredients-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ingredients-detail-grid { grid-template-columns: 1fr; }
  .nutrition-card { padding: 24px 24px 24px; }
  .nutrition-side .product-name { font-size: 52px; }
}

/* ============================================================
   Recipes page
   ============================================================ */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.recipe-card {
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.recipe-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(31, 22, 18, 0.10);
}
.recipe-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: var(--cream-2);
}
.recipe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.recipe-card:hover .recipe-img img { transform: scale(1.04); }
.recipe-body { padding: 22px 24px 26px; }
.recipe-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 6px;
}
.recipe-tags {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--magenta);
  margin: 0 0 10px;
}
.recipe-body p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0.82;
  margin: 0;
}
@media (max-width: 900px) {
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .recipes-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Stores page
   ============================================================ */
.stores-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stores-search {
  flex: 1;
  min-width: 240px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--cream-2);
  background: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  outline: none;
}
.stores-search:focus { border-color: var(--magenta); }
.stores-toggle {
  display: inline-flex;
  border: 1px solid var(--cream-2);
  border-radius: 999px;
  padding: 4px;
  background: var(--paper);
}
.stores-toggle button {
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
}
.stores-toggle button.is-active { background: var(--magenta); color: var(--paper); }
.stores-map {
  height: 560px;
  border-radius: 16px;
  margin-bottom: 40px;
  border: 1px solid var(--cream-2);
  overflow: hidden;
  background: var(--cream-2);
}
.stores-empty {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  opacity: 0.7;
  text-align: center;
  margin: 32px 0;
}
/* Leaflet popup brand polish */
.leaflet-popup-content {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.4;
  margin: 12px 14px;
}
.leaflet-popup-content strong {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.leaflet-popup-content em {
  color: var(--magenta);
  font-style: italic;
}
.stores-regions { display: flex; flex-direction: column; gap: 14px; }
.region {
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-radius: 12px;
  padding: 0;
}
.region summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
}
.region summary::-webkit-details-marker { display: none; }
.region summary::after {
  content: "+";
  font-size: 28px;
  color: var(--magenta);
  font-weight: 400;
  transition: transform 0.18s ease;
}
.region[open] summary::after { content: "−"; }
.region-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--orange);
  margin-left: auto;
  margin-right: 18px;
}
.region-list {
  list-style: none;
  margin: 0;
  padding: 6px 28px 24px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.4;
  columns: 2;
  column-gap: 32px;
}
.region-list li {
  display: block;
  padding: 6px 0;
  break-inside: avoid;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.region-list li:last-child { border-bottom: 0; }
.region-list li strong {
  display: block;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.region-list li .store-meta {
  display: block;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.6;
  font-style: italic;
}
@media (max-width: 720px) {
  .region-list { columns: 1; }
}

/* Contact form on stores page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}
.contact-info p {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.contact-info strong {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--magenta);
  margin-bottom: 2px;
}
.contact-info a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--cream-2); }
.contact-form { display: grid; gap: 18px; }
.contact-form label {
  display: grid;
  gap: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}
.contact-form input, .contact-form textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--cream-2);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--magenta); }
.contact-form button { justify-self: start; margin-top: 6px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Individual recipe page
   ============================================================ */
.recipe-page { background: var(--cream); }
.recipe-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
}
.recipe-hero-img {
  background-size: cover;
  background-position: center;
  background-color: var(--cream-2);
  min-height: 360px;
}
.recipe-hero-text {
  padding: 72px 48px 80px;
  align-self: center;
}
.recipe-hero-text h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 16px 0 8px;
}
.recipe-hero-text .recipe-tags {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--magenta);
  margin: 0 0 18px;
}
.recipe-hero-text .lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
}
.recipe-hero-text .recipe-serves {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 8px;
}
@media (max-width: 880px) {
  .recipe-hero { grid-template-columns: 1fr; }
  .recipe-hero-img { min-height: 260px; aspect-ratio: 16/10; }
  .recipe-hero-text { padding: 40px 24px 48px; }
}

.recipe-content { padding-top: 64px; padding-bottom: 80px; }
.recipe-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) { .recipe-detail-grid { grid-template-columns: 1fr; gap: 32px; } }
.recipe-ingredients h2,
.recipe-steps h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 18px;
}
.recipe-ingredients ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}
.recipe-ingredients li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--cream-2);
  position: relative;
}
.recipe-ingredients li:last-child { border-bottom: 0; }
.recipe-ingredients li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 19px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--magenta);
}
.recipe-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.recipe-steps li {
  counter-increment: step;
  position: relative;
  padding: 6px 0 18px 56px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
}
.recipe-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recipe-cta {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   Recipes page — collapsible category accordions
   ============================================================ */
.recipes-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.recipe-category {
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-radius: 16px;
  padding: 0;
}
.recipe-category summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
}
.recipe-category summary::-webkit-details-marker { display: none; }
.recipe-category summary::after {
  content: "+";
  font-size: 30px;
  color: var(--magenta);
  font-weight: 400;
  transition: transform 0.18s ease;
}
.recipe-category[open] summary::after { content: "−"; }
.recipe-category .region-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--orange);
  margin-left: auto;
  margin-right: 20px;
}
.recipes-grid-inside {
  padding: 8px 32px 32px;
  gap: 28px 24px;
}
@media (max-width: 600px) {
  .recipe-category summary { padding: 18px 22px; font-size: 22px; }
  .recipe-category .region-count { font-size: 16px; margin-right: 12px; }
  .recipes-grid-inside { padding: 4px 22px 24px; }
}
