/* ═══════════════════════════════════════════════════════════
   RECOOKIFY — Complete Design System
   Theme: Modern Kentucky Kitchen
   Direction: Dark-anchored editorial with forest green + 
   burnt sienna accents. Magazine-grade typography, 
   bold horizontal rhythm, ink-stamp details.
   Fonts: Libre Baskerville (headings) + Outfit (body)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,500&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --forest:       #1E3A2F;   /* deep forest green - primary */
  --forest-mid:   #2D5440;   /* medium forest */
  --forest-light: #3D6B52;   /* lighter forest */
  --sienna:       #B85C3A;   /* burnt sienna accent */
  --sienna-light: #D4714A;   /* lighter sienna */
  --gold:         #C8973A;   /* warm gold detail */
  --cream:        #F7F2E8;   /* warm off-white background */
  --parchment:    #EDE5D4;   /* slightly darker cream */
  --ink:          #1A1410;   /* near-black text */
  --ink-mid:      #3D3028;   /* medium dark */
  --ink-light:    #6B5D52;   /* muted text */
  --white:        #FFFFFF;
  --rule:         rgba(30, 58, 47, 0.15);  /* divider lines */

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Libre Baskerville', Georgia, serif;
  --font-sans:    'Outfit', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(26,20,16,.08);
  --shadow-md:  0 8px 32px rgba(26,20,16,.12);
  --shadow-lg:  0 20px 60px rgba(26,20,16,.18);

  --max-w: 1260px;
  --section-pad: 96px 32px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY SCALE ───────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 26px); }
h4 { font-size: 18px; }
p  { color: var(--ink-mid); }

/* ── UTILITY ────────────────────────────────────────────── */
.inner { max-width: var(--max-w); margin: 0 auto; }
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 12px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--forest);
  transition: background .2s, color .2s, transform .15s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--forest);
  transition: background .2s, color .2s, transform .15s;
}
.btn-secondary:hover { background: var(--forest); color: var(--white); transform: translateY(-1px); }

/* ── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--forest);
  border-bottom: 3px solid var(--gold);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex; align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--sienna) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  border-bottom: none !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--sienna-light) !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; width: 40px; height: 40px;
}
.hamburger span {
  display: block; height: 2px; width: 24px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}
.mobile-nav {
  display: none;
  background: var(--forest-mid);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: 16px 32px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul li a {
  display: block; padding: 10px 0;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.mobile-nav ul li a:hover { color: var(--gold); }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  background: var(--parchment);
  border-bottom: 1px solid var(--rule);
  padding: 12px 32px;
  font-size: 12px;
  font-family: var(--font-sans);
  color: var(--ink-light);
  letter-spacing: 0.03em;
}
.breadcrumb a { color: var(--forest); font-weight: 500; }
.breadcrumb a:hover { color: var(--sienna); }
.breadcrumb .sep { margin: 0 10px; opacity: .4; }

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex; align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,58,47,.85) 0%, rgba(30,58,47,.5) 100%);
}
.page-hero .inner {
  position: relative; z-index: 1;
  padding: 72px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.page-hero .label { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  font-family: var(--font-sans);
  max-width: 560px;
}

/* ── HOME HERO ──────────────────────────────────────────── */
.home-hero {
  background: var(--forest);
  overflow: hidden;
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
/* Diagonal cut between text and image */
.home-hero::after {
  content: '';
  position: absolute;
  right: 48%;
  top: 0; bottom: 0;
  width: 80px;
  background: var(--forest);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 48px;
  max-width: 580px;
}
.hero-content .label { color: var(--gold); }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-style: italic;
}
.hero-content h1 em { font-style: normal; color: var(--gold); }
.hero-content p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  margin-bottom: 36px;
  font-family: var(--font-sans);
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img {
  position: relative;
  overflow: hidden;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.88) saturate(1.1);
}
/* Floating stat pills */
.hero-stats {
  position: absolute; bottom: 32px; left: -20px; z-index: 4;
  display: flex; flex-direction: column; gap: 10px;
}
.stat-pill {
  background: var(--white);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
}
.stat-pill span { font-size: 20px; }

/* ── SECTION WRAPPER ────────────────────────────────────── */
.section { padding: var(--section-pad); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 52px; }
.section-header .label { display: block; margin-bottom: 8px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 17px; color: var(--ink-light);
  max-width: 520px; line-height: 1.7;
  font-family: var(--font-sans);
}
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}

/* ── RECIPE CARDS ───────────────────────────────────────── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.recipe-grid.col-4 { grid-template-columns: repeat(4, 1fr); }
.recipe-grid.col-2 { grid-template-columns: 1fr 1fr; }

.recipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  color: inherit;
}
.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.recipe-card.featured { grid-column: span 1; }

.recipe-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.recipe-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.recipe-card:hover .recipe-card-img img { transform: scale(1.04); }

.recipe-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}
.recipe-tag.green  { background: var(--forest-light); }
.recipe-tag.rust   { background: var(--sienna); }
.recipe-tag.gold   { background: var(--gold); color: var(--ink); }

.recipe-card-body {
  padding: 22px 24px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.recipe-card-body h3 {
  font-size: 18px; margin-bottom: 8px;
  font-family: var(--font-display);
  color: var(--ink);
}
.recipe-card-body p {
  font-size: 14px; line-height: 1.6;
  color: var(--ink-light); flex: 1; margin-bottom: 16px;
  font-family: var(--font-sans);
}
.recipe-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 12px; font-weight: 600;
  color: var(--forest); font-family: var(--font-sans);
  letter-spacing: 0.02em;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}

/* ── SEASON FEATURE STRIP ───────────────────────────────── */
.season-feature {
  background: var(--forest);
  padding: var(--section-pad);
}
.season-feature .section-header .label { color: var(--gold); }
.season-feature .section-header h2 { color: var(--white); }
.season-feature .section-header p  { color: rgba(255,255,255,.65); }

/* Season tabs */
.season-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid rgba(255,255,255,.12);
  margin-bottom: 44px;
}
.season-tab {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 13px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 12px 24px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.season-tab.active, .season-tab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Season recipe mini-cards */
.season-recipe-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, transform .2s;
  color: inherit;
}
.season-recipe-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.season-recipe-card img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  opacity: .9;
}
.season-recipe-card-body { padding: 14px 16px; }
.season-recipe-card-body h4 {
  font-size: 14px; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
  font-family: var(--font-sans);
}
.season-recipe-card-body p {
  font-size: 12px; color: rgba(255,255,255,.55); font-family: var(--font-sans);
}
.season-tab-panel { display: none; }
.season-tab-panel.active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── ABOUT / VALUES STRIP ───────────────────────────────── */
.about-strip {
  background: var(--parchment);
  border-top: 4px solid var(--forest);
}
.about-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--section-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-strip-img {
  position: relative;
}
.about-strip-img img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
/* Decorative frame offset */
.about-strip-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 3px solid var(--forest);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ── BLOG / KITCHEN NOTES ───────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  aspect-ratio: 16/9; overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 22px 24px 26px; }
.blog-card-category {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sienna);
  margin-bottom: 10px; font-family: var(--font-sans);
}
.blog-card-body h3 {
  font-size: 18px; margin-bottom: 10px;
  font-family: var(--font-display);
  line-height: 1.3;
}
.blog-card-body p { font-size: 14px; line-height: 1.65; color: var(--ink-light); font-family: var(--font-sans); }
.blog-card-date {
  display: block; font-size: 12px; color: var(--ink-light);
  margin-top: 14px; font-family: var(--font-sans);
}

/* Blog featured hero card */
.blog-featured {
  display: grid; grid-template-columns: 1.3fr 1fr;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  margin-bottom: 56px;
  border: 1px solid rgba(0,0,0,.07);
  color: inherit;
  transition: transform .25s, box-shadow .25s;
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: 0 28px 80px rgba(26,20,16,.2); }
.blog-featured-img { overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-body {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.blog-featured-body .label { color: var(--sienna); }
.blog-featured-body h2 { font-size: clamp(22px, 2.5vw, 34px); margin-bottom: 16px; line-height: 1.25; }
.blog-featured-body p { font-size: 16px; line-height: 1.7; font-family: var(--font-sans); margin-bottom: 28px; }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter {
  background: var(--sienna);
  padding: 72px 32px;
  text-align: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: 'RECOOKIFY';
  position: absolute;
  font-family: var(--font-display);
  font-size: 180px; font-weight: 700;
  color: rgba(255,255,255,.04);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none;
}
.newsletter h2 {
  font-family: var(--font-display);
  color: var(--white); font-size: clamp(24px,3vw,42px);
  margin-bottom: 12px; font-style: italic;
}
.newsletter p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 36px; font-family: var(--font-sans); }
.newsletter-form {
  display: flex; justify-content: center;
  gap: 0; max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1; padding: 15px 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255,255,255,.12);
  color: var(--white); font-size: 15px; font-family: var(--font-sans);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form input:focus { border-color: rgba(255,255,255,.7); }
.newsletter-form button {
  background: var(--ink); color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 15px 28px; font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; font-family: var(--font-sans);
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--forest); border-color: var(--forest); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,.75);
  padding: 72px 32px 0;
  border-top: 4px solid var(--gold);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,.6); font-family: var(--font-sans);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background .2s;
}
.footer-social a:hover { background: var(--gold); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,.65);
  font-family: var(--font-sans);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item .icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 14px; color: rgba(255,255,255,.65);
  line-height: 1.5; font-family: var(--font-sans);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.4);
  font-family: var(--font-sans); letter-spacing: 0.05em;
}

/* ── FILTER BAR ─────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-bottom: 2px solid var(--rule);
  position: sticky; top: 72px; z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.filter-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 32px;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 13px;
  font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-light);
  padding: 18px 22px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.filter-btn:hover { color: var(--forest); }
.filter-btn.active { color: var(--forest); border-bottom-color: var(--forest); }

/* ── RECIPE DETAIL PAGE ─────────────────────────────────── */
.recipe-detail-wrapper {
  max-width: 860px; margin: 0 auto;
  padding: 56px 32px 100px;
}
.recipe-detail-meta-bar {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
}
.recipe-detail-meta-bar .meta-item {
  display: flex; flex-direction: column; gap: 3px;
}
.recipe-detail-meta-bar .meta-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-light); font-family: var(--font-sans);
}
.recipe-detail-meta-bar .meta-val {
  font-size: 16px; font-weight: 700; color: var(--forest); font-family: var(--font-sans);
}
.recipe-detail-img {
  width: 100%; border-radius: var(--radius-lg);
  margin-bottom: 48px; box-shadow: var(--shadow-md);
  aspect-ratio: 16/7; object-fit: cover;
}
.recipe-detail-body h2 {
  font-size: 22px; margin: 40px 0 18px;
  color: var(--forest);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rule);
}
.ingredients-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 8px;
}
.ingredients-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-mid); font-family: var(--font-sans);
  padding-bottom: 10px; border-bottom: 1px solid var(--rule);
}
.ingredients-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sienna); flex-shrink: 0; margin-top: 7px;
}
.steps-list {
  list-style: none; display: flex; flex-direction: column; gap: 20px;
}
.steps-list li {
  display: flex; gap: 20px; align-items: flex-start;
  font-size: 15px; color: var(--ink-mid); line-height: 1.75;
  font-family: var(--font-sans);
}
.step-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; font-family: var(--font-sans);
  margin-top: 3px;
}
.tip-box {
  background: var(--parchment);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px; margin: 36px 0;
}
.tip-box h3 {
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 12px; font-family: var(--font-sans);
}
.tip-box p { font-size: 15px; font-family: var(--font-sans); color: var(--ink-mid); }
.related-box {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 32px 36px; margin-top: 56px;
}
.related-box h3 {
  font-family: var(--font-display);
  color: var(--white); font-size: 22px; margin-bottom: 20px;
}
.related-box ul { display: flex; flex-direction: column; gap: 12px; }
.related-box ul li a {
  color: var(--gold); font-weight: 600; font-family: var(--font-sans);
  font-size: 15px;
  display: flex; align-items: center; gap: 8px;
}
.related-box ul li a::after { content: '→'; }
.related-box ul li a:hover { color: var(--white); }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--forest);
  box-shadow: var(--shadow-sm);
}
.value-card .icon { font-size: 28px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; line-height: 1.7; font-family: var(--font-sans); color: var(--ink-light); }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  padding: var(--section-pad);
  max-width: var(--max-w); margin: 0 auto;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail .icon-wrap {
  width: 44px; height: 44px;
  background: var(--forest);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-light); margin-bottom: 4px; font-family: var(--font-sans); font-weight: 600;
}
.contact-detail p, .contact-detail a {
  font-size: 15px; color: var(--ink); font-family: var(--font-sans); font-weight: 500;
}
.contact-detail a:hover { color: var(--forest); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
}
.contact-form-wrap h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-light); margin-bottom: 8px; font-family: var(--font-sans);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--rule);
  border-radius: var(--radius-sm);
  font-size: 15px; font-family: var(--font-sans);
  color: var(--ink); background: var(--cream);
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--forest); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ── SECTION LABEL DIVIDER ──────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sienna);
  font-family: var(--font-sans);
  margin-bottom: 24px;
}
.section-label::after {
  content: '';
  display: block; width: 40px; height: 2px;
  background: var(--sienna); opacity: .4;
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.fade-up { opacity: 0; transform: translateY(16px); animation: fadeUp .7s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-grid.col-4 { grid-template-columns: repeat(2, 1fr); }
  .season-tab-panel.active { grid-template-columns: repeat(2, 1fr); }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero::after { display: none; }
  .hero-content { max-width: 100%; padding: 60px 32px; }
  .hero-img { min-height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .recipe-grid, .recipe-grid.col-4 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 220px; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-strip-img::before { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; padding: 48px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { display: none; }
  .season-tab-panel.active { grid-template-columns: 1fr 1fr; }
  .nav-inner { padding: 0 20px; }
  .breadcrumb { padding: 10px 20px; }
}

@media (max-width: 480px) {
  .season-tabs { gap: 0; overflow-x: auto; }
  .season-tab { padding: 10px 14px; font-size: 11px; }
  .season-tab-panel.active { grid-template-columns: 1fr; }
  .filter-btn { padding: 14px 14px; font-size: 11px; }
}
