
/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; color: #2c2c2c; line-height: 1.7; background: #fafafa; }
img { max-width: 100%; height: auto; display: block; }
a { color: #c0392b; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 780px; margin: 0 auto; padding: 0 20px; }

/* === HEADER === */
.site-header { background: #fff; border-bottom: 2px solid #c0392b; padding: 14px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-logo { font-size: 1.5rem; font-weight: bold; color: #c0392b; }
.site-header nav { display: flex; gap: 20px; }
.site-header nav a { font-family: Arial, sans-serif; font-size: 0.9rem; color: #555; }

/* === HOMEPAGE === */
.hero-banner { background: linear-gradient(135deg, #c0392b, #e74c3c); color: white; text-align: center; padding: 60px 20px; }
.hero-banner h1 { font-size: 2.5rem; margin-bottom: 10px; }
.hero-banner p { font-size: 1.2rem; opacity: 0.9; }

.recipe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; padding: 40px 0; }
.recipe-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.recipe-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.recipe-card a { display: block; color: inherit; text-decoration: none; }
.recipe-card img { width: 100%; height: 280px; object-fit: cover; }
.card-body { padding: 16px; }
.card-body h3 { font-size: 1rem; margin-bottom: 8px; color: #2c2c2c; }
.card-meta { display: flex; gap: 12px; font-size: 0.8rem; color: #777; font-family: Arial, sans-serif; }

/* === ARTICLE PAGE === */
.article-main { padding: 30px 0 60px; }

.hero-image-wrap { margin: 0 -20px 30px; max-height: 600px; overflow: hidden; border-radius: 0; }
@media (min-width: 600px) { .hero-image-wrap { margin: 0 0 30px; border-radius: 8px; } }
.hero-image { width: 100%; max-height: 600px; object-fit: cover; object-position: center; }

.article-title { font-size: 2rem; line-height: 1.25; margin-bottom: 20px; color: #1a1a1a; }
@media (max-width: 600px) { .article-title { font-size: 1.5rem; } }

.article-intro p { margin-bottom: 1rem; font-size: 1.05rem; color: #3a3a3a; }

/* === QUICK ANSWER BOX (SEO direct answer near top) === */
.quick-answer { background: #fffbf0; border-left: 4px solid #c0392b; border-radius: 0 6px 6px 0; padding: 14px 18px; margin: 0 0 24px; }
.qa-label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #c0392b; font-family: Arial, sans-serif; margin-bottom: 6px; }
.quick-answer p { margin: 0; font-size: 1rem; color: #2c2c2c; line-height: 1.6; }

/* === RECIPE QUICK FACTS === */
.recipe-quick-facts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; background: #fff8f5; border: 1px solid #f0d0c5; border-radius: 8px; padding: 16px; margin: 24px 0; text-align: center; }
@media (max-width: 500px) { .recipe-quick-facts { grid-template-columns: repeat(3, 1fr); } }
.fact .label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: #999; font-family: Arial, sans-serif; margin-bottom: 4px; }
.fact .value { display: block; font-size: 0.95rem; font-weight: bold; color: #c0392b; font-family: Arial, sans-serif; }

/* === SECTIONS === */
.ingredients-section, .instructions-section, .tips-section, .substitutions-section, .storage-section, .faq-section {
  margin: 32px 0;
  padding: 28px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
h2 { font-size: 1.4rem; color: #1a1a1a; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #f0d0c5; }
h3 { font-size: 1.1rem; color: #2c2c2c; margin: 16px 0 8px; }

.ingredients-list { list-style: none; }
.ingredients-list li { padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 1rem; }
.ingredients-list li:last-child { border-bottom: none; }
.ingredients-list li::before { content: "✓ "; color: #c0392b; font-weight: bold; }

.instructions-list { list-style: none; counter-reset: step; }
.instructions-list li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid #f5f5f5; align-items: flex-start; }
.instructions-list li:last-child { border-bottom: none; }
.step-num { flex-shrink: 0; width: 28px; height: 28px; background: #c0392b; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: bold; font-family: Arial, sans-serif; margin-top: 2px; }

.tips-list { list-style: none; }
.tips-list li { padding: 8px 0 8px 20px; border-bottom: 1px dashed #eee; position: relative; }
.tips-list li::before { content: "→"; position: absolute; left: 0; color: #c0392b; }
.tips-list li:last-child { border-bottom: none; }

.substitutions-grid { display: flex; flex-direction: column; gap: 12px; }
.substitution { background: #f9f9f9; border-left: 3px solid #c0392b; padding: 10px 14px; border-radius: 0 4px 4px 0; font-size: 0.95rem; }
.substitution .note { color: #777; font-size: 0.85rem; display: block; margin-top: 3px; }

/* === FAQ === */
.faq-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1rem; color: #c0392b; margin-bottom: 8px; }
.faq-item p { color: #3a3a3a; }

/* === ADS === */
.ad-container { min-height: 90px; margin: 24px 0; background: #f9f9f9; border: 1px dashed #ddd; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: #bbb; font-family: Arial, sans-serif; }
.ad-placeholder { margin: 20px 0; min-height: 4px; }

/* === HERO VIDEO === */
.hero-video-section { background: #000; padding: 40px 0; }
.video-wrap { max-width: 600px; margin: 0 auto; text-align: center; }
.hero-video { width: 100%; border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.video-caption { color: #F5C518; font-family: Georgia, serif; font-size: 1.1rem; margin-top: 14px; font-style: italic; }

/* === FOOTER === */
.site-footer { background: #2c2c2c; color: #aaa; text-align: center; padding: 30px 20px; margin-top: 40px; }
.site-footer a { color: #ccc; margin: 0 10px; font-size: 0.85rem; font-family: Arial, sans-serif; }
.site-footer p { font-family: Arial, sans-serif; font-size: 0.85rem; margin-bottom: 10px; }

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .ingredients-section, .instructions-section, .tips-section, .substitutions-section, .storage-section, .faq-section { padding: 18px; }
  .recipe-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}

/* === RECIPES INDEX PAGE === */
.recipes-index-page { background: var(--la-page, #EDD9A8); font-family: Georgia, serif; }
.recipes-index-page .site-header { background: #2A1408; border-bottom: 2px solid #E8B420; }
.recipes-index-page .site-logo { color: #E8B420; }
.recipes-index-page .site-header nav a { color: #F5EDD6; }
.recipes-index-page .site-header nav a.active { color: #E8B420; }

.recipes-index-main { padding: 40px 0 80px; }
.recipes-index-main .container { max-width: 1200px; }

.recipes-index-hero { text-align: center; padding: 40px 20px 32px; }
.recipes-index-title { font-family: 'Barlow Condensed', Georgia, serif; font-size: 3.5rem; font-weight: 900; color: #2A1408; letter-spacing: -0.5px; line-height: 1; }
.recipes-index-sub { font-size: 1.1rem; color: #5A3418; margin-top: 10px; font-style: italic; }

/* Category filters */
.cat-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0 20px 32px; }
.cat-filter { background: #F5EDD6; border: 1.5px solid rgba(180,120,40,0.3); color: #5A3418; padding: 7px 18px; border-radius: 999px; font-family: Arial, sans-serif; font-size: 0.85rem; cursor: pointer; transition: all 0.15s; }
.cat-filter:hover { background: #E2CB96; }
.cat-filter.active { background: #2A1408; color: #E8B420; border-color: #2A1408; }

/* Recipe grid */
.recipes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; padding: 0 20px; }

.recipe-card { background: #F5EDD6; border: 1.5px solid rgba(180,120,40,0.22); border-radius: 12px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.15s, box-shadow 0.15s; }
.recipe-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(42,20,8,0.12); text-decoration: none; }

.recipe-card-img { width: 100%; height: 200px; background: #E2CB96 center/cover no-repeat; }
.recipe-card-img--empty { background: linear-gradient(135deg, #E2CB96, #C4880E33); }

.recipe-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.recipe-card-cat { font-family: Arial, sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #C04818; font-weight: 700; }
.recipe-card-title { font-family: Georgia, serif; font-size: 1.05rem; font-weight: bold; color: #1E0E04; line-height: 1.35; }
.recipe-card-desc { font-family: Arial, sans-serif; font-size: 0.82rem; color: #5A3418; line-height: 1.5; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.recipe-card-meta { display: flex; gap: 12px; font-family: Arial, sans-serif; font-size: 0.78rem; color: #8A6030; margin-top: 4px; }

@media (max-width: 640px) {
  .recipes-index-title { font-size: 2.4rem; }
  .recipes-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .recipe-card-img { height: 140px; }
}
@media (max-width: 400px) {
  .recipes-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BENTO HOMEPAGE — FORK AROUND & FIND OUT KITCHEN
   Palette: Louisiana Afternoon
   Deep porch shade / Amber light / Creole brick / Magnolia cream
   ============================================================ */

:root {
  /* Louisiana Afternoon — light palette */
  --la-page:       #D4E8E4;   /* duck egg, page background */
  --la-cream:      #F5EDD6;   /* magnolia white, light cells */
  --la-ivory:      #F9F4E8;   /* near-white, lightest surfaces */
  --la-tan:        #E2CB96;   /* warm sand, medium cells */
  --la-porch:      #2A1408;   /* deep shade under live oak, dark anchor */
  --la-border:     rgba(180,120,40,0.22);
  --la-border-lt:  rgba(180,120,40,0.14);
  --la-gold:       #E8B420;   /* afternoon sun, matches logo */
  --la-amber:      #C4880E;   /* deeper amber, label text on light */
  --la-terra:      #C04818;   /* Creole brick in late sun */
  --la-terra-lt:   rgba(192,72,24,0.12);
  --la-text:       #1E0E04;   /* warm near-black for body text */
  --la-text-mid:   #5A3418;   /* warm brown mid-tone */
  --la-text-dim:   #8A6030;   /* muted tan, secondary */
  --la-cream-dim:  rgba(240,226,196,0.72);
}

html { height: 100%; }

body.bento-page {
  background: var(--la-page);
  font-family: 'Barlow Condensed', system-ui, Arial, sans-serif;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  grid-template-rows: 1.6fr 1fr 0.45fr 1fr;
  grid-template-areas:
    "logo    latest  video"
    "browser open    menu"
    "browser search  menu"
    "tagline search  menu";
  gap: 8px;
  padding: 8px;
  height: 100vh;
  height: 100dvh;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* ── SHARED CELL BASE ── */
.bento-cell {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ── LOGO CELL (top left) — black bg matches the logo ── */
.cell-logo {
  grid-area: logo;
  background: #000;
  border: none;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
}
.bento-logo-img-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  overflow: hidden;
}
.bento-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.bento-logo-url {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  padding: 6px 12px;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,0.4);
}

/* ── LATEST ARTICLE CELL (middle top, large — image hero) ── */
.cell-latest {
  grid-area: latest;
  background: var(--la-porch) center/cover no-repeat;
  border: none;
  padding: 0;
  justify-content: flex-end;
}
.latest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,252,245,0.97) 0%, rgba(255,252,245,0.80) 50%, rgba(255,252,245,0.0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px;
}
.latest-link, .latest-empty {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-end;
}
.latest-link:hover .latest-title { color: var(--la-red); }
.latest-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--la-red);
  font-family: Arial, sans-serif;
  font-weight: 700;
}
.latest-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.05;
  color: #111;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  transition: color 0.2s;
  max-width: 600px;
  text-shadow: none;
}
.latest-meta {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--la-red);
  margin: 6px 0 10px;
}
.latest-intro {
  font-size: 1rem;
  color: #222;
  line-height: 1.65;
  max-width: 520px;
  font-family: Georgia, serif;
  font-weight: 700;
}
.latest-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--la-gold);
  margin-top: 4px;
}
.latest-cta .arrow { transition: transform 0.2s; }
.latest-link:hover .latest-cta .arrow { transform: translateX(5px); }

/* ── RECIPE MENU CELL (right column, spans 2 rows) ── */
.cell-menu {
  grid-area: menu;
  background: var(--la-cream);
  border: 1.5px solid var(--la-border-lt);
  padding: 24px 20px;
  gap: 8px;
}
.menu-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--la-text-dim);
  font-family: Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.menu-item {
  display: block;
  padding: 12px 16px;
  background: var(--la-ivory);
  border: 1px solid var(--la-border-lt);
  border-radius: 8px;
  color: var(--la-text);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1;
}
.menu-item:hover {
  background: var(--la-terra);
  color: var(--la-cream);
  border-color: var(--la-terra);
  text-decoration: none;
}
.menu-all-link {
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--la-text-dim);
  font-family: Arial, sans-serif;
  text-decoration: none;
  transition: color 0.15s;
}
.menu-all-link:hover { color: var(--la-terra); text-decoration: none; }

/* ── PHOTO SUBMIT CELL (bottom left — 1fr row) ── */
.cell-browser {
  grid-area: tagline;
  background: var(--la-tan);
  border: 1.5px solid var(--la-border-lt);
  padding: 20px 24px;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
}
.cell-browser .tagline-top { font-size: 1.8rem; }
.cell-browser .tagline-mid { font-size: 1.45rem; margin: 3px 0; }
.cell-browser .tagline-bot { font-size: 1.25rem; }
.cell-browser .tagline-cta { margin-top: 10px; padding: 7px 14px; font-size: 0.62rem; }
.browser-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--la-text-mid);
  font-family: Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
.browser-list { display: flex; flex-direction: column; gap: 2px; overflow-y: auto; flex: 1; }
.browser-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(180,120,40,0.2);
  text-decoration: none;
  gap: 8px;
  transition: opacity 0.15s;
}
.browser-item:last-child { border-bottom: none; }
.browser-item:hover { opacity: 0.65; text-decoration: none; }
.browser-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--la-text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-meta {
  font-size: 0.65rem;
  color: var(--la-text-mid);
  font-family: Arial, sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}
.browser-empty { color: var(--la-text-dim); font-size: 0.82rem; }

/* ── POPULAR SEARCH CELL — Creole brick / terracotta ── */
.cell-search {
  grid-area: search;
  background: var(--la-terra);
  border: none;
  padding: 24px 28px;
  gap: 14px;
}
.search-label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--la-cream);
  font-family: 'Barlow Condensed', sans-serif;
}
.search-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.search-tag {
  display: inline-block;
  padding: 6px 13px;
  background: rgba(240,226,196,0.15);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--la-cream);
  text-decoration: none;
  transition: background 0.15s;
  font-family: Arial, sans-serif;
}
.search-tag:hover { background: rgba(240,226,196,0.28); text-decoration: none; color: var(--la-ivory); }

/* ── VIDEO CELL (bottom, spans left + middle) ── */
.cell-video {
  grid-area: video;
  background: var(--la-porch);
  border: none;
  overflow: hidden;
  padding: 0;
}
.bento-video-el {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.video-vol-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}
.video-vol-btn:hover { background: rgba(0,0,0,0.8); transform: scale(1.1); }

/* ── ARTICLE BROWSER CELL (left middle — tall 1.5fr row) ── */
.cell-tagline {
  grid-area: browser;
  background: var(--la-ivory);
  border: 1.5px solid var(--la-border-lt);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tagline-top, .tagline-mid, .tagline-bot {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.tagline-top { font-size: 3.2rem; color: var(--la-porch); }
.tagline-mid { font-size: 2.5rem; color: var(--la-terra); margin: 6px 0; }
.tagline-bot { font-size: 2.2rem; color: rgba(180,100,30,0.4); }
.tagline-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--la-porch);
  color: var(--la-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  transition: opacity 0.15s;
  align-self: flex-start;
}
.tagline-cta:hover { opacity: 0.82; text-decoration: none; }

/* ── OPEN CELL (bottom center — brand statement) ── */
.cell-open {
  grid-area: open;
  background: var(--la-cream);
  border: 1.5px solid var(--la-border-lt);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.open-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--la-porch);
}
.open-sub {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--la-porch);
  opacity: 0.7;
  margin-top: 14px;
  line-height: 1.55;
  max-width: 380px;
}
.open-link {
  margin-top: 20px;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--la-terra);
  text-decoration: none;
  align-self: flex-start;
}
.open-link:hover { text-decoration: underline; }

/* ── BENTO FOOTER ── */
.bento-footer {
  background: var(--la-porch);
  border-top: none;
  padding: 8px 20px;
  flex-shrink: 0;
}
.bento-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #5A3418;
  font-family: Arial, sans-serif;
  letter-spacing: 0.05em;
}
.bento-footer nav { display: flex; gap: 20px; }
.bento-footer nav a { color: #5A3418; text-decoration: none; }
.bento-footer nav a:hover { color: var(--la-gold); }

/* ── BENTO RESPONSIVE ── */
@media (max-width: 900px) {
  body.bento-page { min-height: auto; }
  .bento-grid { min-height: auto; }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "logo    latest"
      "browser latest"
      "search  menu"
      "tagline open"
      "video   video";
    gap: 8px;
    padding: 8px;
  }
  .cell-latest { min-height: 220px; }
  .cell-video { min-height: 220px; }
}

@media (max-width: 560px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "latest"
      "browser"
      "search"
      "menu"
      "tagline"
      "open"
      "video";
    gap: 6px;
    padding: 6px;
  }
  .bento-logo-text { font-size: 1.5rem; }
  .latest-title { font-size: 1.4rem; }
  .cell-video { min-height: 200px; }
  .cell-open { padding: 20px 24px; }
  .open-headline { font-size: 2.8rem; }
  .cell-video { min-height: 220px; }
}

/* === BENTO SEO SECTION === */
.bento-seo {
  background: var(--la-porch);
  color: var(--la-cream);
  padding: 56px 40px;
}
.bento-seo-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 48px;
}
.seo-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--la-gold);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.seo-col--main p {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(240,226,196,0.8);
  margin-bottom: 12px;
}
.seo-cat-heading {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--la-gold);
  margin-bottom: 14px;
}
.seo-cat-list, .seo-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seo-cat-list li, .seo-popular-list li {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(240,226,196,0.65);
  line-height: 1.4;
}
.seo-cat-list a, .seo-popular-list a {
  color: rgba(240,226,196,0.9);
  text-decoration: none;
  font-weight: 600;
}
.seo-cat-list a:hover, .seo-popular-list a:hover { color: var(--la-gold); text-decoration: underline; }

@media (max-width: 900px) {
  .bento-seo { padding: 40px 24px; }
  .bento-seo-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .seo-col--main { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .bento-seo-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* === BREADCRUMB === */
.breadcrumb { background: #f5f0ea; border-bottom: 1px solid #e0d6c8; padding: 10px 0; font-family: Arial, sans-serif; font-size: 0.82rem; color: #8A6030; }
.breadcrumb .container { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: #C04818; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: #c5b89a; }
.breadcrumb span[aria-current] { color: #5A3418; }

/* === RELATED RECIPES === */
.related-recipes { margin: 48px 0 0; border-top: 2px solid #e0d6c8; padding-top: 36px; }
.related-recipes-title { font-family: Georgia, serif; font-size: 1.4rem; color: #1E0E04; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.related-card { display: block; color: inherit; text-decoration: none; border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s; }
.related-card:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(0,0,0,0.12); text-decoration: none; }
.related-card-img { height: 130px; background-color: #e8dfcb; background-size: cover; background-position: center; }
.related-card-img--empty { background: linear-gradient(135deg, #C04818 0%, #e07640 100%); }
.related-card-body { padding: 12px; }
.related-card-title { font-family: Georgia, serif; font-size: 0.92rem; font-weight: bold; color: #1E0E04; line-height: 1.3; }

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .related-card-img { height: 100px; }
}

/* === ABOUT / PRIVACY PAGES === */
.about-page { max-width: 680px; }
.about-page h2 { font-size: 1.4rem; margin: 36px 0 12px; color: #1E0E04; border-bottom: 1px solid #e0d6c8; padding-bottom: 6px; }
.about-page p { margin-bottom: 1rem; font-size: 1rem; color: #3a3a3a; line-height: 1.75; }
.about-page a { color: #C04818; }
.about-page a:hover { text-decoration: underline; }

/* === ACTIVE NAV LINK === */
.site-header nav a.active { color: #C04818; font-weight: bold; }
