*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #1a2e1a;
  --green-mid: #2d5016;
  --green-bright: #4a7c2f;
  --green-light: #8db87a;
  --green-pale: #e8f0e3;
  --cream: #f7f3ed;
  --warm-white: #faf8f4;
  --earth: #8b6914;
  --earth-light: #c4973a;
  --terracotta: #c4522a;
  --text-dark: #1a1a17;
  --text-mid: #3d3d35;
  --text-light: #7a7a6e;
  --border: rgba(26,46,26,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV — styles are in assets/js/nav.js ── */

/* ── PAGE BODY ── */
.page-body { padding-top: 68px; min-height: 100vh; }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh; background: var(--green-deep);
  display: flex; align-items: center; justify-content: space-between;
  padding: 6rem 8% 5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,124,47,0.25) 0%, transparent 60%);
}
.hero-emoji-bg { position: absolute; font-size: 8rem; opacity: 0.06; line-height: 1; pointer-events: none; user-select: none; }
.hero-emoji-bg.e1 { top: 10%; right: 5%; font-size: 10rem; }
.hero-emoji-bg.e2 { bottom: 15%; right: 18%; font-size: 6rem; }
.hero-emoji-bg.e3 { top: 40%; right: 35%; font-size: 4rem; }
.hero-content { position: relative; z-index: 2; max-width: 48%; flex-shrink: 0; }
.hero-tag {
  display: inline-block; background: rgba(141,184,122,0.2); border: 1px solid rgba(141,184,122,0.4);
  color: var(--green-light); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 40px; margin-bottom: 1.8rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900; line-height: 1.02; color: var(--cream); letter-spacing: -0.03em; margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--green-light); }
.hero p { font-size: 1.15rem; color: rgba(247,243,237,0.7); max-width: 540px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-bright); color: white; padding: 14px 28px; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.hero-cta:hover { background: var(--green-light); transform: translateY(-2px); }
.hero-mobile-text { display: none; }

/* ── SECTIONS ── */
.section { padding: 6rem 8%; }
.section-alt { background: var(--green-pale); }
.section-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 1rem; }
.section h2, .section-h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--green-deep); margin-bottom: 1.4rem;
}
.section-intro { font-size: 1.1rem; color: var(--text-mid); max-width: 640px; line-height: 1.8; margin-bottom: 3rem; }

/* ── ANIMAL COMPARE ── */
.animal-compare { background: var(--green-deep); padding: 5rem 8%; text-align: center; overflow: hidden; }
.animal-compare .section-label { color: var(--green-light); }
.animal-compare h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; color: var(--cream); letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.animal-compare .sub { font-size: 1.05rem; color: rgba(247,243,237,0.6); max-width: 560px; margin: 0 auto 3.5rem; line-height: 1.75; }
.animal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.animal-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 1.8rem 1rem; transition: all 0.3s; }
.animal-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.animal-card .emoji { font-size: 3.2rem; display: block; margin-bottom: 0.8rem; }
.animal-card .name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.3rem; }
.animal-card .label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 0.7rem; }
.label-pet { background: rgba(141,184,122,0.2); color: var(--green-light); border: 1px solid rgba(141,184,122,0.3); }
.label-exploited { background: rgba(196,82,42,0.2); color: #e88a6a; border: 1px solid rgba(196,82,42,0.3); }
.label-wild { background: rgba(196,151,58,0.2); color: var(--earth-light); border: 1px solid rgba(196,151,58,0.3); }
.animal-card .desc { font-size: 0.83rem; color: rgba(247,243,237,0.5); line-height: 1.5; }
.animal-card.highlight-bad { border-color: rgba(196,82,42,0.35); }
.compare-banner { background: rgba(196,82,42,0.12); border: 1px solid rgba(196,82,42,0.3); border-radius: 16px; padding: 1.8rem 2rem; max-width: 680px; margin: 0 auto; }
.compare-banner .big-q { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; font-style: italic; color: var(--cream); line-height: 1.35; }
.compare-banner .big-q span { color: #e88a6a; }

/* ── BENEFITS ── */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: 20px; overflow: hidden; border: 2px solid var(--border); }
.benefit-side { padding: 3rem 2.5rem; }
.benefit-side.humans { background: var(--cream); }
.benefit-side.animals { background: var(--green-deep); }
.benefit-side .side-emoji { font-size: 2.8rem; display: block; margin-bottom: 1rem; }
.benefit-side h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--green-deep); }
.benefit-side.animals h3 { color: var(--cream); }
.benefit-side .side-sub { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.benefit-side.animals .side-sub { color: rgba(247,243,237,0.45); }
.benefit-list { list-style: none; }
.benefit-list li { display: flex; gap: 14px; align-items: flex-start; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.benefit-list li:last-child { border-bottom: none; }
.benefit-side.animals .benefit-list li { border-color: rgba(255,255,255,0.1); }
.benefit-list .b-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.benefit-list .b-text strong { display: block; font-size: 0.95rem; font-weight: 500; color: var(--text-dark); margin-bottom: 2px; }
.benefit-side.animals .benefit-list .b-text strong { color: var(--cream); }
.benefit-list .b-text span { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }
.benefit-side.animals .benefit-list .b-text span { color: rgba(247,243,237,0.5); }

/* ── FACTS STRIP ── */
.facts-strip { background: var(--green-mid); padding: 2.5rem 8%; display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; justify-content: space-around; }
.fact-item { text-align: center; }
.fact-item .fact-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--cream); line-height: 1; display: block; }
.fact-item .fact-label { font-size: 0.82rem; color: rgba(247,243,237,0.55); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-top: 4px; }

/* ── MANIFESTO ── */
.manifesto { padding: 7rem 8%; text-align: center; background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.manifesto blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 400; font-style: italic; color: var(--green-deep); max-width: 780px; margin: 0 auto; line-height: 1.4; }
.manifesto blockquote em { color: var(--terracotta); font-style: normal; font-weight: 700; }

/* ── ARGUMENT / REBUTTAL ── */
.argument-section { padding: 6rem 8%; background: var(--cream); border-top: 1px solid var(--border); }
.argument-section .section-label { color: var(--terracotta); }
.argument-block { background: white; border: 1px solid var(--border); border-radius: 24px; overflow: hidden; margin-bottom: 2rem; box-shadow: 0 4px 20px rgba(26,46,26,0.05); }
.argument-them { background: #fdf3e8; padding: 2rem 2.5rem; display: flex; gap: 1.2rem; align-items: flex-start; border-bottom: 2px dashed rgba(196,82,42,0.2); }
.argument-them .arg-icon { font-size: 2rem; flex-shrink: 0; margin-top: 3px; }
.argument-them .arg-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--earth); margin-bottom: 0.5rem; }
.argument-them .arg-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--text-dark); line-height: 1.55; }
.argument-us { padding: 2rem 2.5rem; background: white; }
.argument-us .arg-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 0.8rem; }
.argument-us p { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }
.argument-us p:last-child { margin-bottom: 0; }
.argument-us p strong { color: var(--green-deep); font-weight: 500; }
.argument-us p em { color: var(--terracotta); font-style: normal; font-weight: 600; }
.more-args-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }

/* ── BULL TIMELINE ── */
.bull-timeline { background: var(--green-deep); border-radius: 20px; padding: 2.5rem; margin-top: 2rem; position: relative; overflow: hidden; }
.bull-timeline::before { content: '🐂'; position: absolute; right: 2rem; top: 50%; transform: translateY(-50%); font-size: 7rem; opacity: 0.07; pointer-events: none; }
.bull-timeline h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-light); margin-bottom: 1.8rem; font-style: italic; }
.timeline-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; position: relative; z-index: 2; }
.timeline-row:last-child { margin-bottom: 0; }
.timeline-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.timeline-dot.era { background: rgba(141,184,122,0.2); border: 1px solid rgba(141,184,122,0.4); }
.timeline-dot.bad { background: rgba(196,82,42,0.2); border: 1px solid rgba(196,82,42,0.4); }
.timeline-content { padding-top: 6px; }
.timeline-content strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--cream); margin-bottom: 0.3rem; }
.timeline-content span { font-size: 0.84rem; color: rgba(247,243,237,0.55); line-height: 1.6; }

/* ── LEATHER CALLOUT ── */
.leather-callout { background: rgba(196,82,42,0.08); border: 1px solid rgba(196,82,42,0.2); border-radius: 16px; padding: 1.5rem 2rem; margin-top: 2rem; display: flex; gap: 1rem; align-items: flex-start; }
.leather-callout .lc-emoji { font-size: 2.2rem; flex-shrink: 0; }
.leather-callout p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }
.leather-callout p strong { color: var(--terracotta); }

/* ── ACTION SECTION ── */
.action-section { padding: 6rem 8%; background: var(--green-deep); }
.action-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 3rem; }
.action-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem 1.5rem; transition: all 0.3s; }
.action-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); border-color: rgba(141,184,122,0.3); }
.action-card .ac-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.action-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.action-card p { font-size: 0.86rem; color: rgba(247,243,237,0.5); line-height: 1.65; }
.action-card .ac-step { display: inline-block; background: rgba(74,124,47,0.25); color: var(--green-light); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 0.8rem; }

/* ── VOICES ── */
.voices-section { padding: 6rem 8%; background: var(--warm-white); border-top: 1px solid var(--border); }
.voices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.voice-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 2rem; position: relative; }
.voice-card::before { content: '"'; position: absolute; top: -0.5rem; left: 1.5rem; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--green-pale); line-height: 1; }
.voice-card blockquote { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--text-dark); line-height: 1.6; margin-bottom: 1.2rem; position: relative; z-index: 2; }
.voice-card cite { font-size: 0.8rem; color: var(--text-light); font-style: normal; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.voice-card cite span { color: var(--green-bright); }

/* ── ENV DEEP DIVE ── */
.env-deep { padding: 6rem 8%; background: var(--green-pale); }
.env-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin: 3rem 0; }
.env-stat-card { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 2rem 1.5rem; text-align: center; }
.env-stat-card .es-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; }
.env-stat-card .es-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--green-deep); display: block; margin-bottom: 0.5rem; }
.env-stat-card .es-desc { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }
.env-callout { background: var(--green-deep); border-radius: 20px; padding: 2.5rem 3rem; max-width: 820px; margin: 0 auto; }
.env-callout p { font-size: 1rem; color: rgba(247,243,237,0.7); line-height: 1.85; margin-bottom: 1rem; }
.env-callout p:last-child { margin-bottom: 0; }
.env-callout p strong { color: var(--cream); }

/* ── RECIPES PAGE ── */
.recipes-hero { background: var(--green-deep); padding: 5rem 8% 4rem; text-align: center; padding-top: calc(68px + 4rem); }
.recipes-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: var(--cream); letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.05; }
.recipes-hero h1 em { font-style: italic; color: var(--green-light); }
.recipes-manifesto { background: rgba(196,82,42,0.12); border: 1px solid rgba(196,82,42,0.3); border-radius: 14px; padding: 1.4rem 2rem; max-width: 700px; margin: 1.5rem auto 0; }
.recipes-manifesto p { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: #e88a6a; line-height: 1.55; text-align: center; }
.recipes-manifesto p strong { color: var(--cream); font-style: normal; display: block; margin-top: 0.4rem; font-size: 0.8rem; font-family: 'DM Sans', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.recipe-cards-grid { padding: 4rem 8%; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.recipe-card { background: white; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; cursor: pointer; transition: all 0.3s; text-decoration: none; display: block; color: inherit; }
.recipe-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,46,26,0.12); border-color: var(--green-bright); }
.recipe-card-emoji { background: var(--green-pale); height: 160px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.recipe-card-body { padding: 1.5rem; }
.recipe-card-body .rc-tag { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 0.6rem; }
.recipe-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.6rem; line-height: 1.25; }
.recipe-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.2rem; }
.recipe-card-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.meta-pill { display: inline-flex; align-items: center; gap: 5px; background: var(--green-pale); border-radius: 30px; padding: 4px 12px; font-size: 0.78rem; color: var(--green-mid); font-weight: 500; }
.read-recipe-btn { width: 100%; background: var(--green-deep); color: var(--cream); border: none; border-radius: 10px; padding: 12px; font-size: 0.9rem; font-weight: 500; cursor: pointer; margin-top: 1rem; font-family: 'DM Sans', sans-serif; transition: all 0.2s; display: block; text-align: center; }
.read-recipe-btn:hover { background: var(--green-bright); }

/* ── RECIPE DETAIL PAGE ── */
.recipe-detail-header { background: var(--green-deep); padding: 5rem 8% 3rem; position: relative; overflow: hidden; padding-top: calc(68px + 3rem); }
.recipe-detail-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(74,124,47,0.3) 0%, transparent 65%); }
.detail-emoji-bg { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); font-size: 10rem; opacity: 0.15; pointer-events: none; }
.back-btn { display: inline-flex; align-items: center; gap: 8px; color: rgba(247,243,237,0.6); font-size: 0.88rem; cursor: pointer; margin-bottom: 2rem; background: none; border: none; font-family: 'DM Sans', sans-serif; transition: color 0.2s; text-decoration: none; }
.back-btn:hover { color: var(--cream); }
.recipe-detail-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--cream); letter-spacing: -0.02em; line-height: 1.08; position: relative; z-index: 2; margin-bottom: 0.8rem; }
.recipe-detail-header .subtitle { font-size: 1.05rem; color: rgba(247,243,237,0.6); position: relative; z-index: 2; }
.recipe-body { padding: 4rem 8%; max-width: 1200px; margin: 0 auto; }
.recipe-body-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.ingredients-box { background: var(--green-pale); border-radius: 20px; padding: 2rem; height: fit-content; position: sticky; top: 88px; }
.ingredients-box h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 1.2rem; }
.ingredients-box ul { list-style: none; }
.ingredients-box ul li { padding: 0.6rem 0; border-bottom: 1px solid rgba(26,46,26,0.08); font-size: 0.92rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; }
.ingredients-box ul li:last-child { border-bottom: none; }
.ingredients-box ul li::before { content: '🌿'; font-size: 0.75rem; margin-top: 3px; }
.instructions-section h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--green-deep); margin-bottom: 1.8rem; }
.step-item { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num { min-width: 40px; height: 40px; background: var(--green-deep); color: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.step-text { font-size: 1rem; color: var(--text-mid); line-height: 1.75; padding-top: 8px; }
.warning-note { background: rgba(196,82,42,0.08); border: 1px solid rgba(196,82,42,0.2); border-radius: 10px; padding: 0.8rem 1rem; margin: 1rem 0; font-size: 0.88rem; color: var(--terracotta); }
.variant-tab-group { margin-top: 2rem; }
.variant-tabs { display: flex; gap: 4px; background: var(--green-pale); border-radius: 12px; padding: 4px; margin-bottom: 1.5rem; width: fit-content; flex-wrap: wrap; }
.variant-tab { padding: 8px 20px; border-radius: 9px; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; cursor: pointer; background: transparent; color: var(--text-light); transition: all 0.2s; }
.variant-tab.active { background: var(--green-deep); color: var(--cream); }
.variant-content { display: none; }
.variant-content.active { display: block; }

/* ── PRICE / WEAR HERO ── */
.price-hero { background: var(--green-deep); padding: 6rem 8% 5rem; text-align: center; position: relative; overflow: hidden; padding-top: calc(68px + 4rem); }
.price-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: var(--cream); letter-spacing: -0.03em; margin-bottom: 1rem; line-height: 1.05; position: relative; z-index: 2; }
.price-hero h1 em { font-style: italic; color: #e88a6a; }
.price-hero p { font-size: 1.1rem; color: rgba(247,243,237,0.65); max-width: 600px; margin: 0 auto; line-height: 1.75; position: relative; z-index: 2; }
.price-manifesto-banner { background: rgba(196,82,42,0.12); border: 1px solid rgba(196,82,42,0.3); border-radius: 14px; padding: 1.4rem 2rem; max-width: 700px; margin: 1.5rem auto 0; position: relative; z-index: 2; }
.price-manifesto-banner p { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: #e88a6a; line-height: 1.55; text-align: center; }

/* ── DISH CARDS ── */
.dish-card { background: white; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.dish-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,46,26,0.1); }
.dish-card-top { background: var(--green-pale); height: 140px; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; }
.dish-card-body { padding: 1.5rem; }
.dc-origin { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.4rem; }
.dish-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.8rem; }
.cost-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.cost-badge { font-size: 0.75rem; font-weight: 500; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.05em; }
.badge-blood { background: rgba(196,82,42,0.12); color: var(--terracotta); border: 1px solid rgba(196,82,42,0.25); }
.badge-life  { background: rgba(26,46,26,0.08); color: var(--green-deep); border: 1px solid rgba(26,46,26,0.15); }
.badge-water { background: rgba(74,124,47,0.08); color: var(--green-bright); border: 1px solid rgba(74,124,47,0.2); }
.dish-animal-toll { background: rgba(196,82,42,0.05); border: 1px solid rgba(196,82,42,0.15); border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1rem; }
.toll-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.5rem; }
.dish-animal-toll p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }
.dish-vegan-line { font-size: 0.88rem; color: var(--green-mid); font-weight: 500; padding: 0.6rem 0; border-top: 1px solid var(--border); }

/* ── ABOUT HERO ── */
.about-hero { background: var(--green-deep); padding: 5rem 8% 4rem; text-align: center; padding-top: calc(68px + 4rem); }
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: var(--cream); letter-spacing: -0.03em; margin-bottom: 1rem; }
.about-hero p { font-size: 1.1rem; color: rgba(247,243,237,0.65); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.about-sections { padding: 5rem 8%; }
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--border); }
.about-block:last-child { border-bottom: none; }
.about-block.reverse { direction: rtl; }
.about-block.reverse > * { direction: ltr; }
.about-emoji-panel { background: var(--green-pale); border-radius: 24px; height: 300px; display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--green-deep); margin-bottom: 1rem; line-height: 1.2; }
.about-text p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }

/* ── DAIRY MYTH ── */
.dairy-myth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }

/* ── FOOTER ── */
footer { background: var(--green-deep); padding: 3rem 8%; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
footer .f-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--cream); margin-bottom: 0.8rem; }
footer .f-logo span { color: var(--green-light); }
footer p { font-size: 0.85rem; color: rgba(247,243,237,0.4); line-height: 1.6; }
footer .f-heart { color: var(--terracotta); }
footer a { color: var(--green-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }

/* ── COW WIDGET ── */
.hero-cow-widget { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: clamp(300px, 36vw, 500px); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; z-index: 3; user-select: none; }
.cow-orbit { position: absolute; inset: 0; border-radius: 50%; border: 1.5px dashed rgba(141,184,122,0.25); animation: orbitSpin 20s linear infinite; pointer-events: none; }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cow-orbit-item { position: absolute; width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; transition: box-shadow 0.25s; }
.cow-orbit-item.bad  { background: rgba(196,82,42,0.18); border: 1px solid rgba(196,82,42,0.35); }
.cow-orbit-item.good { background: rgba(74,124,47,0.18); border: 1px solid rgba(74,124,47,0.4); }
.cow-orbit-item:hover { box-shadow: 0 0 18px rgba(141,184,122,0.3); }
.cow-center { position: relative; z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 0; text-align: center; max-width: 55%; }
.cow-trigger-emoji { font-size: clamp(3.5rem, 8vw, 7rem); line-height: 1; display: block; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); filter: drop-shadow(0 0 22px rgba(141,184,122,0.4)); }
.cow-mood-label { margin-top: 0.7rem; font-family: 'DM Sans', sans-serif; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; transition: all 0.4s; opacity: 0.92; white-space: nowrap; }
.cow-mood-label.happy { background: rgba(74,124,47,0.25); color: var(--green-light); border: 1px solid rgba(74,124,47,0.35); }
.cow-mood-label.sad   { background: rgba(196,82,42,0.22); color: #e88a6a; border: 1px solid rgba(196,82,42,0.3); }
.cow-item-spotlight { font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: 1; display: block; margin-bottom: 0.4rem; min-height: 1.2em; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.cow-glow { position: absolute; inset: -20%; border-radius: 50%; transition: background 0.5s, opacity 0.5s; opacity: 0; pointer-events: none; z-index: 3; }
.cow-glow.happy { background: radial-gradient(circle, rgba(74,124,47,0.25) 0%, transparent 65%); opacity: 1; }
.cow-glow.sad   { background: radial-gradient(circle, rgba(196,82,42,0.25) 0%, transparent 65%); opacity: 1; }
.cow-hint { position: absolute; bottom: 2.2rem; right: 4%; width: clamp(300px, 36vw, 500px); text-align: center; font-size: 0.78rem; font-style: italic; color: rgba(247,243,237,0.48); letter-spacing: 0.03em; line-height: 1.75; white-space: nowrap; font-weight: 400; pointer-events: none; z-index: 5; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; align-items: center; padding: 5rem 6% 5rem; min-height: auto; }
  .hero-content { max-width: 100%; text-align: center; order: 1; }
  .hero-cow-widget { position: relative; right: auto; top: auto; transform: none; width: clamp(260px, 68vw, 400px); margin: 3.5rem auto 1rem; order: -1; }
  .cow-hint { position: static; right: auto; width: auto; white-space: normal; max-width: 260px; margin: 0 auto 2rem; }
  .about-block { grid-template-columns: 1fr; gap: 2rem; }
  .about-block.reverse { direction: ltr; }
  .dairy-myth-grid { grid-template-columns: 1fr !important; }
  .more-args-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .recipe-body-grid { grid-template-columns: 1fr; }
  .ingredients-box { position: static; top: auto; }
}
/* @media 640px nav rules moved to nav.js */
@media (max-width: 480px) {
  .hero { min-height: 100svh; padding: 0; padding-top: 68px; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
  .hero-content { display: none; }
  .hero-cow-widget { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(72vw, 270px); margin: 0; }
  .cow-orbit-item { width: 48px; height: 48px; font-size: 1.5rem; }
  .cow-trigger-emoji { font-size: 3.2rem; }
  .cow-mood-label { font-size: 0.64rem; padding: 4px 10px; }
  .cow-item-spotlight { font-size: 1.9rem; }
  .cow-hint { position: absolute; bottom: 2.5rem; left: 50% !important; right: auto !important; width: auto !important; transform: translateX(-50%) !important; white-space: normal !important; text-align: center; font-size: 0.7rem; max-width: 200px; }
  .hero-mobile-text { display: block; padding: 2.5rem 6% 2rem; background: var(--green-deep); text-align: center; }
}
