/* ============================================================
   Cooking with Sage — Ghost Theme Stylesheet
   ============================================================ */

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

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

/* ---- Koenig Editor Width Classes ---- */
.kg-width-wide {
    max-width: calc(var(--max-width) + 200px);
    margin-left: auto;
    margin-right: auto;
}
.kg-width-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.kg-width-full img {
    width: 100%;
}

/* ---- Design Tokens ---- */
:root {
    /* Brand */
    --sage: #6b8f5e;
    --sage-light: #e8f0e4;
    --sage-mid: #a3bf97;
    --sage-dark: #3d5c33;
    --cream: #faf7f2;
    --charcoal: #2c2c2a;
    --white: #ffffff;
    --muted: #6b6b67;
    --border: #e2ddd6;

    /* Series accents */
    --terra: #c4673a;
    --terra-light: #f5e8e0;
    --terra-dark: #8b3e1f;
    --amber: #d4890a;
    --amber-light: #fef3dc;
    --amber-dark: #7a5200;

    /* Scorecard pills */
    --green-yes: #eaf3de;      --green-yes-text: #3b6d11;
    --amber-maybe: #faeeda;    --amber-maybe-text: #854f0b;
    --red-no: #fcebeb;         --red-no-text: #a32d2d;

    /* Era colors (Eras Dinner) */
    --era1: #2d6a8f;  --era1-light: #e8f2f8;
    --era2: #c9a227;  --era2-light: #fdf6dc;
    --era3: #8b3a6b;  --era3-light: #f5eaf2;
    --era4: #b03030;  --era4-light: #faeaea;
    --era5: #2a7a6b;  --era5-light: #e8f4f1;
    --era6: #1a1a2e;  --era6-light: #e8e8f0;
    --era7: #c4678a;  --era7-light: #fceef4;

    /* Corn Dinner colors */
    --corn1: #3d6b11;
    --corn2: #7a9e1e;
    --corn3: #c9a227;
    --corn4: #e8c050;
    --corn5: #f9f0c8;
    --corn-dark: #2a4a0a;

    /* Dinner badge colors */
    --plum: #3d1f4e;
    --plum-mid: #6b3d8a;
    --plum-light: #f0eaf5;
    --plum-accent: #d4a0ff;
    --navy: #1e3a5f;
    --navy-light: #e8eef5;
    --gold: #b8860b;
    --gold-light: #fdf6dc;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Ghost custom font hooks */
    --gh-font-heading: var(--font-display);
    --gh-font-body: var(--font-body);

    /* Layout */
    --nav-height: 64px;
    --max-width: 1200px;
    --radius: 8px;
    --radius-lg: 16px;
}

/* ---- Base ---- */
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    font-size: 15px;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* ---- Utility Classes ---- */
.text-muted { color: var(--muted); }
.text-small { font-size: 14px; }
.text-xs { font-size: 12px; }
.text-center { text-align: center; }
.font-display { font-family: var(--font-display); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.btn-amber { background: var(--amber); color: var(--white); border: none; padding: 12px 28px; border-radius: 28px; font-size: 14px; font-weight: 600; display: inline-block; transition: background 0.2s; }
.btn-amber:hover { background: var(--amber-dark); color: var(--white); }
.btn-charcoal { background: var(--charcoal); color: var(--white); border: none; padding: 12px 28px; border-radius: 28px; font-size: 14px; font-weight: 600; display: inline-block; transition: background 0.2s; }
.btn-charcoal:hover { background: #1a1a18; color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--sage-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: var(--sage);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.nav-logo-icon::after {
    content: '\1F33F';
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
}
.nav-links li a {
    color: var(--muted);
    transition: color 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
    color: var(--sage-dark);
}
.nav-cta {
    background: var(--sage);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
    display: inline-block;
}
.nav-cta:hover {
    background: var(--sage-dark);
    color: var(--white);
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 64px 48px 32px;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.social-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.social-link:hover { color: var(--white); }
.footer-heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.footer-links li a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* Hero */
.home-hero {
    background: var(--sage-dark);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}
.home-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,143,94,0.3), transparent 70%);
    pointer-events: none;
}
.home-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sage-mid);
    margin-bottom: 16px;
}
.home-hero h1 {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}
.home-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 32px;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--sage);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
    background: var(--sage-mid);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
    border-color: var(--white);
    transform: translateY(-1px);
}
.hero-stats {
    display: flex;
    gap: 32px;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--sage);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pillar strip */
.pillar-strip {
    padding: 64px 48px;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pillar-strip-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pillar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.pillar-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.pillar-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.pillar-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}
.pillar-card.sage h3 { color: var(--sage-dark); }
.pillar-card.terra h3 { color: var(--terra-dark); }
.pillar-card.amber h3 { color: var(--amber-dark); }

/* Fresh off the Stove (latest posts) */
.fresh-section {
    padding: 64px 48px;
    background: var(--white);
}
.fresh-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
}
.section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--sage);
}
.section-link:hover { color: var(--sage-dark); }
.fresh-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
}

/* Map teaser */
.map-teaser {
    background: var(--sage-dark);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}
.map-teaser-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.map-teaser h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}
.map-teaser p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}
.progress-bar-wrap {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    height: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}
.progress-bar-fill {
    background: var(--sage-mid);
    height: 100%;
    border-radius: 20px;
    transition: width 0.6s ease;
}
.progress-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}
.map-teaser-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-preview {
    text-align: center;
}
.map-preview-grid {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 4px;
    margin-bottom: 16px;
    max-width: 340px;
}
.mp-empty {
    aspect-ratio: 1;
}
.mp-block {
    aspect-ratio: 1;
    border-radius: 3px;
    background: rgba(255,255,255,0.15);
}
.mp-block.done {
    background: var(--sage-mid);
}
.map-preview-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.mpl {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mpl-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.mpl-dot.done {
    background: var(--sage-mid);
}
.map-preview-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ============================================================
   POST CARD (shared partial)
   ============================================================ */
.post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.post-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--sage-light);
}
.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.post-card:hover .post-card-image img {
    transform: scale(1.03);
}
.post-card-featured {
    grid-column: span 2;
}
.post-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
}
.badge-sage { background: var(--sage-light); color: var(--sage-dark); }
.badge-terra { background: var(--terra-light); color: var(--terra-dark); }
.badge-amber { background: var(--amber-light); color: var(--amber-dark); }
.badge-plum { background: var(--plum-light); color: var(--plum); }
.badge-music { background: var(--plum-light); color: var(--plum); }
.badge-food { background: var(--sage-light); color: var(--sage-dark); }
.badge-film { background: var(--navy-light); color: var(--navy); }
.badge-holiday { background: var(--gold-light); color: var(--gold); }
.post-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.3;
}
.post-card-excerpt {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card-meta {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 12px;
    align-items: center;
}
.post-card-meta span { display: flex; align-items: center; gap: 4px; }

/* Scorecard mini pills on cards */
.sc-mini-pills {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.sc-mini-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

/* ============================================================
   NEWSLETTER CTA (shared partial)
   ============================================================ */
.newsletter-cta {
    padding: 64px 48px;
    text-align: center;
    border-top: 3px solid var(--terra);
}
.newsletter-cta.terra-bg { background: var(--terra-light); border-top: 3px solid var(--terra); }
.newsletter-cta.plum-bg { background: var(--plum); color: var(--white); }
.newsletter-cta.sage-bg { background: var(--sage-light); }
.newsletter-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}
.newsletter-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}
.newsletter-cta p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5;
}
.newsletter-cta.plum-bg p { color: rgba(255,255,255,0.7); }
.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: 28px;
    font-size: 14px;
    font-family: var(--font-body);
    width: 300px;
    max-width: 100%;
    background: var(--white);
}
.newsletter-form button {
    padding: 12px 28px;
    border: none;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--terra);
    transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--terra-dark); }
.newsletter-cta.plum-bg .newsletter-form button { background: var(--white); color: var(--plum); }
.newsletter-cta.plum-bg .newsletter-form button:hover { background: var(--plum-accent); color: var(--plum); }
.newsletter-cta.sage-bg .newsletter-form button { background: var(--sage); }
.newsletter-cta.sage-bg .newsletter-form button:hover { background: var(--sage-dark); }
.newsletter-btn-sending,
.newsletter-btn-success { display: none; }
.newsletter-form.loading .newsletter-btn-default { display: none; }
.newsletter-form.loading .newsletter-btn-sending { display: inline-block; }
.newsletter-form.success .newsletter-btn-default { display: none; }
.newsletter-form.success .newsletter-btn-success { display: inline-block; }
.newsletter-note { font-size: 12px; color: var(--muted); margin-top: 12px; }
.newsletter-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}
.newsletter-cta.plum-bg .newsletter-eyebrow { color: rgba(255,255,255,0.55); }

/* ============================================================
   POST TEMPLATE (post.hbs / text Food Fact)
   ============================================================ */

/* Food Fact breadcrumb */
.fact-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
}
.fact-breadcrumb-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    font-size: 13px;
    color: var(--muted);
}
.fact-breadcrumb-inner a { color: var(--muted); }
.fact-breadcrumb-inner a:hover { color: var(--plum); }
.fact-breadcrumb-inner span:last-child {
    color: var(--charcoal);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}

/* Jump bar */
.jump-bar {
    background: var(--white);
    border-bottom: 2px solid var(--sage-light);
    padding: 0 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: var(--nav-height);
    z-index: 900;
    font-size: 13px;
}
.jump-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.breadcrumb {
    display: flex;
    gap: 8px;
    color: var(--sage);
    font-size: 12px;
}
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { color: var(--sage-dark); }
.breadcrumb-sep { color: var(--sage); }
.jump-recipe-btn {
    background: var(--sage);
    color: var(--white);
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.jump-recipe-btn:hover { background: var(--sage-dark); }

/* Post hero */
.post-hero-image {
    width: 100%;
    position: relative;
}
.post-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}
.post-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.post-hero-no-image {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px 48px 32px;
    text-align: center;
    font-size: 64px;
}

/* Post layout */
.post-layout {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}
.post-main { min-width: 0; }

/* Post header */
.post-series-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.post-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}
.post-custom-excerpt {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.post-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--muted);
    margin: 16px 0 32px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

/* Post body */
.post-body {
    font-size: 16px;
    line-height: 1.85;
    max-width: 680px;
}
.post-body h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}
.post-body h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
}
.post-body p {
    margin-bottom: 20px;
}
.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
    list-style: disc;
}
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
    border-left: 3px solid var(--sage);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--muted);
}
.post-body img {
    border-radius: var(--radius);
    margin: 24px 0;
}
.post-body a {
    color: var(--sage);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.post-body a:hover { color: var(--sage-dark); }

/* Ghost content wrapper (Koenig editor output) */
.gh-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sage-light);
}
.gh-content h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.gh-content p { margin-bottom: 1.25rem; }
.gh-content a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.gh-content a:hover { color: var(--sage-dark); }
.gh-content blockquote {
    background: var(--sage-light);
    border-left: 4px solid var(--sage);
    padding: 20px 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--muted);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.gh-content blockquote p { margin: 0; }
.gh-content figure { margin: 24px 0; }
.gh-content figure img { border-radius: var(--radius); width: 100%; }
.gh-content figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 8px; }
.gh-content ul, .gh-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.gh-content ul { list-style: disc; }
.gh-content ol { list-style: decimal; }
.gh-content li { margin-bottom: 8px; }
.gh-content hr { border: none; border-top: 2px solid var(--border); margin: 48px 0; }
.gh-content img { border-radius: var(--radius); }

/* Koenig card styles */
.kg-gallery-container { display: flex; flex-direction: column; max-width: var(--max-width); width: 100%; margin: 24px 0; }
.kg-gallery-row { display: flex; gap: 8px; margin-bottom: 8px; }
.kg-gallery-row:last-child { margin-bottom: 0; }
.kg-gallery-image { flex: 1; overflow: hidden; border-radius: var(--radius); }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.kg-bookmark-card { margin: 24px 0; }
.kg-bookmark-container {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.kg-bookmark-content { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.kg-bookmark-title { font-size: 16px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.kg-bookmark-description {
    font-size: 14px; color: var(--muted); line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.kg-bookmark-metadata { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; color: var(--muted); }
.kg-bookmark-thumbnail { width: 200px; flex-shrink: 0; overflow: hidden; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-video-card { margin: 24px 0; border-radius: var(--radius); overflow: hidden; }
.kg-video-card video { width: 100%; border-radius: var(--radius); }
.kg-embed-card { margin: 24px 0; }
.kg-embed-card iframe { max-width: 100%; border-radius: var(--radius); border: none; display: block; }
.video-content .kg-embed-card iframe { width: 100%; aspect-ratio: 9/16; height: auto; }
.kg-button-card { margin: 24px 0; text-align: center; }
.kg-btn {
    display: inline-block; padding: 12px 28px; border-radius: 28px;
    font-size: 14px; font-weight: 600; background: var(--sage); color: var(--white);
    text-decoration: none; transition: background 0.2s;
}
.kg-btn:hover { background: var(--sage-dark); color: var(--white); }

/* Honest reaction callout */
.honest-reaction {
    background: var(--terra-light);
    border-left: 4px solid var(--terra);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
}
.honest-reaction-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--terra);
    margin-bottom: 8px;
}
.honest-reaction p {
    font-style: italic;
    color: var(--terra-dark);
    margin-bottom: 0;
}

/* Post sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.sidebar-widget h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 16px;
}
.sidebar-related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-related-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.sidebar-related-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--sage-light);
}
.sidebar-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-related-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* Sidebar newsletter widget (dark) */
.sidebar-newsletter {
    background: var(--sage-dark);
    border: none;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}
.sidebar-newsletter h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
}
.sidebar-newsletter p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}
.sidebar-newsletter input[type="email"] {
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-family: var(--font-body);
    margin-bottom: 10px;
    box-sizing: border-box;
}
.sidebar-newsletter .btn-terra {
    width: 100%;
    text-align: center;
    display: block;
}

/* Honest Reaction callout (Ghost Callout card styled for this theme) */
.post-body .kg-callout-card {
    background: var(--terra-light);
    border-left: 4px solid var(--terra);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 28px 0;
}
.post-body .kg-callout-emoji {
    font-size: 24px;
    line-height: 1.4;
    flex-shrink: 0;
}
.post-body .kg-callout-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--charcoal);
    font-style: italic;
}

/* Post tags */
.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.post-tag {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--charcoal);
}
.post-tag:hover { background: var(--sage-light); color: var(--charcoal); }

/* Prev/next navigation */
.post-prev-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.post-prev-next a {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}
.post-prev-next a:hover { border-color: var(--sage); }
.post-prev-next .pn-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.post-prev-next .pn-title {
    font-size: 15px;
    font-weight: 600;
}
.post-prev-next .next { text-align: right; }

/* ============================================================
   SCORECARD
   ============================================================ */
.scorecard {
    background: var(--white);
    border: 2px solid var(--sage-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}
.scorecard-header {
    background: var(--sage-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}
.scorecard-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.scorecard-link {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}
.scorecard-link:hover { color: var(--white); }
.scorecard-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.scorecard-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.scorecard-row:nth-child(2n) { border-right: none; }
.scorecard-row:nth-child(n+3) { border-bottom: none; }
.scorecard-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.sc-pill {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}
.pill-easy, .pill-yes, .pill-absolutely {
    background: var(--green-yes);
    color: var(--green-yes-text);
    border: 1.5px solid rgba(59, 109, 17, 0.3);
    font-weight: 700;
}
.pill-medium, .pill-maybe, .pill-sorta {
    background: var(--amber-maybe);
    color: var(--amber-maybe-text);
    border: 1.5px solid rgba(133, 79, 11, 0.3);
    font-weight: 700;
}
.pill-hard, .pill-no, .pill-overrated {
    background: var(--red-no);
    color: var(--red-no-text);
    border: 1.5px solid rgba(163, 45, 45, 0.3);
    font-weight: 700;
}
.pill-send-help {
    background: var(--red-no);
    color: var(--red-no-text);
    border: 1.5px solid rgba(163, 45, 45, 0.3);
    font-weight: 700;
}
.sc-pill-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.sc-pill.pill-inactive {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    opacity: 1;
    font-weight: 400;
}

/* ============================================================
   RECIPE CARD
   ============================================================ */
.recipe-card {
    background: var(--white);
    border: 2px solid var(--sage);
    border-radius: 20px;
    overflow: hidden;
    margin: 32px 0;
    display: none;
}
.recipe-card.visible { display: block; }
.recipe-card-header {
    background: var(--sage-dark);
    color: var(--white);
    padding: 24px;
}
.recipe-card-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
.recipe-card-meta-row {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}
.recipe-card-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--sage-light);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}
.servings-control {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid var(--sage);
    border-radius: 20px;
    padding: 4px 8px;
}
.servings-control button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.servings-control button:hover { background: var(--sage-light); }
.servings-count {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}
.unit-toggle {
    display: none; /* Hidden until metric conversion is implemented — see TODO */
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
}
.unit-toggle button {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    background: none;
    color: var(--muted);
    transition: all 0.2s;
}
.unit-toggle button.active {
    background: var(--sage);
    color: var(--white);
}
.recipe-card-body {
    padding: 24px;
}
.recipe-card-body h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}
.ingredient-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    position: relative;
    transition: background 0.15s;
}
.ingredient-item:hover { background: var(--sage-light); padding-left: 8px; padding-right: 8px; }
.ingredient-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.ingredient-checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    background: var(--white);
}
.ingredient-checkmark::after {
    content: '\2713';
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.15s;
}
.ingredient-item input[type="checkbox"]:checked + .ingredient-checkmark {
    background: var(--sage);
    border-color: var(--sage);
}
.ingredient-item input[type="checkbox"]:checked + .ingredient-checkmark::after {
    opacity: 1;
}
.ingredient-item input[type="checkbox"]:focus-visible + .ingredient-checkmark {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}
.ingredient-item input[type="checkbox"]:checked ~ .ingredient-text {
    text-decoration: line-through;
    color: var(--muted);
}
.ingredient-amount {
    font-weight: 600;
    min-width: 50px;
}
.ingredient-unit {
    color: var(--muted);
    min-width: 50px;
}
.steps-list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}
.steps-list li {
    counter-increment: step;
    display: flex;
    gap: 16px;
    font-size: 15px;
    line-height: 1.7;
}
.steps-list li::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage-light);
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.recipe-notes {
    margin-top: 24px;
    padding: 16px;
    background: var(--amber-light);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--amber-dark);
}
.recipe-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.recipe-print-btn {
    background: var(--sage-light);
    color: var(--sage-dark);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.recipe-print-btn:hover { background: var(--sage-mid); color: var(--white); }

/* ============================================================
   TAG ARCHIVE (generic)
   ============================================================ */
.tag-archive-header {
    padding: 48px 48px 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.tag-archive-header h1 {
    font-size: 36px;
    margin-bottom: 8px;
}
.tag-archive-header p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.5;
}
.tag-archive-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 48px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--charcoal);
    transition: all 0.15s;
}
.pagination a:hover { border-color: var(--sage); color: var(--sage); }
.pagination .page-number { border: none; background: none; font-weight: 600; color: var(--muted); }
.pagination a[disabled],
.pagination a.disabled { opacity: 0.4; pointer-events: none; }

/* ============================================================
   STATE LANDING PAGE
   ============================================================ */

/* State breadcrumb bar (standalone — not shared with jump-bar) */
.state-breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 48px;
    font-size: 12px;
}
.state-breadcrumb-bar .breadcrumb {
    font-size: 12px;
}
.state-breadcrumb-bar .breadcrumb a {
    color: var(--sage);
    font-weight: 500;
}
.state-breadcrumb-bar .breadcrumb a:hover {
    text-decoration: underline;
}

/* State hero */
.state-hero {
    background: var(--sage-dark);
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}
.state-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.state-hero h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 8px;
}
.state-hero-region {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.state-hero-blurb {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 480px;
}
.state-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--sage);
    position: relative;
}
.state-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.state-stats-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 24px;
    padding: 12px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.state-stat-item { text-align: center; }
.state-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.state-stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}
.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-mid);
    margin-bottom: 8px;
}
.foodways-section .section-eyebrow {
    color: rgba(255,255,255,0.5);
}

/* Section nav (sticky) */
.state-section-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--nav-height);
    z-index: 800;
    padding: 0 48px;
}
.state-section-nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 32px;
    height: 48px;
    align-items: center;
}
.state-section-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.state-section-nav a:hover,
.state-section-nav a.active {
    color: var(--sage-dark);
    border-bottom-color: var(--sage);
}

/* Overview + Quick Facts */
.state-overview {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}
.state-overview-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--charcoal);
}
.state-overview-text p { margin-bottom: 16px; }

/* Quick facts sidebar */
.quick-facts-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: calc(var(--nav-height) + 64px);
}
.quick-facts-card h3 {
    font-size: 16px;
    margin-bottom: 16px;
}
.quick-fact-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.quick-fact-item:last-child { border-bottom: none; }
.quick-fact-label {
    color: var(--muted);
    font-weight: 500;
}
.quick-fact-value {
    font-weight: 600;
    text-align: right;
}

/* Foodways section */
.foodways-section {
    background: var(--sage-dark);
    padding: 64px 48px;
}
.foodways-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.foodways-section h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 32px;
}
.foodways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.foodway-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--white);
    display: block;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.foodway-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
    color: var(--white);
}
.foodway-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.foodway-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.foodway-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* State recipes grid */
.state-recipes-section {
    padding: 64px 48px;
}
.state-recipes-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.state-recipes-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
}
.state-recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.state-recipes-grid .post-card:first-child {
    grid-column: span 2;
}
.state-back-link {
    display: inline-block;
    margin-top: 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sage);
}
.state-back-link:hover { color: var(--sage-dark); }

/* ============================================================
   STATE ON A PLATE HUB (map page)
   ============================================================ */
.map-hero {
    background: var(--sage-dark);
    padding: 64px 48px;
}
.map-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.map-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 12px;
}
.map-hero h1 em { font-style: italic; color: var(--sage-mid); }
.map-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.map-progress-block {
    text-align: center;
}
.map-progress-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: var(--sage-mid);
    line-height: 1;
}
.map-progress-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

/* Filter bar */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 48px;
    position: sticky;
    top: var(--nav-height);
    z-index: 800;
}
.filter-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.filter-buttons {
    display: flex;
    gap: 8px;
}
.filter-btn {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--sage); color: var(--sage); }
.filter-btn.active {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}
.filter-search {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    font-family: var(--font-body);
    width: 220px;
    background: var(--white);
}
.filter-search:focus {
    outline: none;
    border-color: var(--sage);
}

/* D3 Map */
.map-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px;
    text-align: center;
}
.map-svg-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}
.map-svg-wrap svg { width: 100%; height: auto; }
.map-tooltip {
    position: absolute;
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 10;
    min-width: 190px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.map-tooltip.visible { opacity: 1; }
.map-tooltip #tt-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.map-tooltip #tt-status { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.map-tooltip #tt-recipes { font-size: 11px; color: rgba(255,255,255,0.6); }
.map-tooltip #tt-cta { font-size: 12px; font-weight: 600; color: var(--sage-mid); margin-top: 4px; }
.map-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 16px 0 4px;
    font-size: 13px;
    color: var(--muted);
}
.map-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.map-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}
.map-legend-dot.completed { background: #6b8f5e; }
.map-legend-dot.coming { background: #c8c4bc; }
.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: center;
}
.map-fallback {
    display: none;
    padding: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

/* Completed states grid */
.completed-section {
    padding: 64px 48px;
}
.completed-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.completed-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
}
.completed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Coming soon chips */
.coming-soon-section {
    padding: 0 48px 64px;
}
.coming-soon-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.coming-soon-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
}
.coming-soon-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.coming-soon-chip {
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}
.territory-chip {
    background: var(--amber-light);
    border-color: var(--amber);
    color: var(--amber-dark);
}

/* ============================================================
   POP CULTURE DINNERS HUB
   ============================================================ */
.dinners-hero {
    background: var(--terra-dark);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dinners-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(196,103,58,0.2);
    pointer-events: none;
}
.dinners-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.dinners-hero h1 {
    font-size: 60px;
    color: var(--white);
    margin-bottom: 12px;
}
.dinners-hero h1 em {
    font-style: italic;
    color: rgba(255,200,150,0.9);
}
.dinners-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}
.dinners-hero .hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.75;
}
.dinners-hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.dinners-hero-stats .hero-stat-num { color: rgba(255,200,150,0.9); font-size: 36px; font-weight: 900; }
.dinners-hero-stats .hero-stat-label { color: rgba(255,255,255,0.5); }

/* Featured dinner */
.featured-dinner-section {
    padding: 64px 48px;
}
.featured-dinner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.featured-dinner-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.featured-dinner-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--terra), var(--terra-dark));
}
.featured-dinner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-dinner-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-dinner-body h2 {
    font-size: 32px;
    margin-bottom: 12px;
}
.featured-dinner-body p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.course-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.course-pill {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 12px;
    background: var(--sage-light);
    color: var(--sage-dark);
}

/* All dinners grid */
.all-dinners-section {
    padding: 0 48px 64px;
}
.all-dinners-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.all-dinners-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
}
.dinners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dinner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.dinner-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.dinner-card-gradient {
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.dinner-card-gradient img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dinner-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.dinner-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.dinner-card-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.dinner-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.dinner-upcoming {
    border: 2px dashed var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    min-height: 340px;
}
.dinner-upcoming p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 12px;
}

/* How it works */
.how-it-works {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 48px;
}
.how-it-works-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.how-it-works h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
}
.how-it-works-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.how-step {
    text-align: center;
}
.how-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--terra-light);
    color: var(--terra-dark);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.how-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.how-step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Suggest a theme form */
.suggest-section {
    background: var(--terra-light);
    border-top: 3px solid var(--terra);
    padding: 64px 48px;
}
.suggest-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.suggest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.suggest-chip {
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--terra-light);
    font-size: 13px;
    color: var(--terra-dark);
}
.suggest-form-disabled {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--muted);
}

/* ============================================================
   DINNER POST (custom-dinner.hbs)
   ============================================================ */

/* Dinner jump bar */
.dinner-jump-bar {
    background: var(--white);
    border-bottom: 2px solid var(--sage);
    position: sticky;
    top: var(--nav-height);
    z-index: 900;
    padding: 0 48px;
}
.dinner-jump-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
}
.dinner-jump-links {
    display: flex;
    gap: 24px;
}
.dinner-jump-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}
.dinner-jump-links a:hover,
.dinner-jump-links a.active {
    color: var(--sage-dark);
    border-bottom-color: var(--sage);
}
.dinner-jump-cta {
    background: var(--sage);
    color: var(--white);
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.dinner-jump-cta:hover { background: var(--sage-dark); }

/* Dinner hero */
.dinner-hero {
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}
.dinner-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.dinner-hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    margin-bottom: 16px;
}
.dinner-hero-badge a { color: var(--white); }
.dinner-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}
.dinner-hero h1 em { font-style: italic; }
.dinner-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    line-height: 1.6;
}
.dinner-meta-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.dinner-meta-pill {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
}

/* Hero course strips */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.course-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.07);
    transition: background 0.2s;
}
.course-strip:hover { background: rgba(255,255,255,0.14); }
.course-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.course-strip-num {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    min-width: 20px;
}
.course-strip-name {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}
.course-strip-dish {
    font-style: italic;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-left: auto;
}

/* Dinner story section */
.story-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}
.story-body {
    font-size: 16px;
    line-height: 1.85;
}
.story-body h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}
.story-body h2:first-child { margin-top: 0; }
.story-body p { margin-bottom: 20px; }
.dinner-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sidebar card (operator-authored in content) */
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.sidebar-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}
.sidebar-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.sidebar-row:last-child { border-bottom: none; }
.sidebar-label { color: var(--muted); }
.sidebar-val { font-weight: 600; }

/* BTS Timeline */
.bts-section {
    background: var(--charcoal);
    padding: 64px 48px;
}
.bts-inner {
    max-width: 720px;
    margin: 0 auto;
}
.bts-section h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}
.dinner-bts-steps {
    display: flex;
    flex-direction: column;
}
.bts-step {
    display: flex;
    gap: 24px;
}
.bts-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48px;
    flex-shrink: 0;
}
.bts-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.bts-step-line {
    width: 2px;
    flex: 1;
    background: rgba(255,255,255,0.15);
    margin: 8px 0;
}
.bts-step-content {
    padding-bottom: 32px;
}
.bts-step-when {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
}
.bts-step-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.bts-step-body {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* BTS step color classes */
.step-c1 { background: var(--era1); } .when-c1 { background: var(--era1-light); color: var(--era1); }
.step-c2 { background: var(--era2); } .when-c2 { background: var(--era2-light); color: var(--era2); }
.step-c3 { background: var(--era3); } .when-c3 { background: var(--era3-light); color: var(--era3); }
.step-c4 { background: var(--era4); } .when-c4 { background: var(--era4-light); color: var(--era4); }
.step-c5 { background: var(--era5); } .when-c5 { background: var(--era5-light); color: var(--era5); }
.step-c6 { background: var(--era6); } .when-c6 { background: var(--era6-light); color: var(--era6); }
.step-c7 { background: var(--era7); } .when-c7 { background: var(--era7-light); color: var(--era7); }

/* Course cards */
.courses-section {
    padding: 64px 48px;
}
.courses-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.courses-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
}
.course-card {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--white);
}
.course-accent {
    width: 8px;
    flex-shrink: 0;
}
.course-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px;
    flex: 1;
}
.course-number-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.course-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}
.course-era-label {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}
.course-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.course-era-connection {
    font-style: italic;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 12px;
}
.course-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}
.course-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.course-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 12px;
    background: var(--sage-light);
    color: var(--sage-dark);
}
.recipe-summary-box {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
}
.recipe-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.recipe-summary-title {
    font-weight: 600;
    font-size: 14px;
}
.recipe-diff {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}
.diff-easy { background: var(--green-yes); color: var(--green-yes-text); }
.diff-medium { background: var(--amber-maybe); color: var(--amber-maybe-text); }
.diff-hard { background: var(--red-no); color: var(--red-no-text); }
.recipe-meta-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.recipe-meta-pill {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    background: var(--white);
    color: var(--muted);
}
.recipe-ingredients-preview {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}
.recipe-ingredients-preview strong { color: var(--charcoal); }
.recipe-view-btn {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sage);
    text-decoration: none;
    border: 1.5px solid var(--sage);
    padding: 6px 14px;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s;
}
.recipe-view-btn:hover {
    background: var(--sage);
    color: var(--white);
}

/* Master Plan tabs */
.masterplan-section {
    padding: 64px 48px;
    background: var(--cream);
}
.masterplan-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.masterplan-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
}
.tab-bar {
    display: flex;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: all 0.2s;
}
.tab-btn:hover { background: var(--sage-light); color: var(--sage-dark); }
.tab-btn[aria-selected="true"] {
    background: var(--sage);
    color: var(--white);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Timeline tab */
.dinner-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.timeline-block {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.timeline-block-header {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}
.timeline-block-header.two-weeks { background: var(--sage-dark); }
.timeline-block-header.one-week { background: var(--sage); }
.timeline-block-header.day-before { background: var(--terra); }
.timeline-block-header.day-of { background: var(--terra-dark); }
.timeline-tasks { padding: 16px; }
.timeline-task {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
}
.task-check {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 1px;
    cursor: pointer;
    transition: all 0.2s;
}
.task-check.checked {
    background: var(--sage);
    border-color: var(--sage);
}

/* Day-of schedule tab */
.day-of-timeline {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}
.day-of-header {
    padding: 16px 24px;
    font-weight: 600;
    background: var(--charcoal);
    color: var(--white);
}
.day-of-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-bottom: 1px solid var(--border);
}
.day-of-row:nth-child(even) { background: var(--cream); }
.day-of-time {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    border-right: 1px solid var(--border);
}
.day-of-task {
    padding: 12px 16px;
    font-size: 14px;
}
.day-of-task small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

/* Shopping list tab */
.shopping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.shopping-cat {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}
.shopping-cat-header {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    background: var(--charcoal);
    color: var(--white);
}
.shopping-items { padding: 12px 16px; }
.shopping-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}
.shop-check {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-radius: 3px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s;
}
.shop-check.checked {
    background: var(--sage);
    border-color: var(--sage);
}

/* Tips tab */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.tip-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.tip-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}
.tip-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.tip-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Gallery */
.gallery-section {
    padding: 64px 48px;
}
.gallery-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.gallery-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
}
.gallery-section .kg-gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.gallery-section .kg-gallery-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
}
.gallery-section .kg-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery-section .kg-gallery-image:hover img {
    transform: scale(1.02);
}
.gallery-section .kg-gallery-image.wide {
    grid-column: span 2;
}

/* Dinner related */
.dinner-related {
    padding: 0 48px 64px;
}
.dinner-related-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.dinner-related h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

/* ============================================================
   FOOD FACTS HUB
   ============================================================ */
.ff-hero {
    background: var(--plum);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ff-hero .hero-eyebrow {
    color: var(--plum-accent);
}
.ff-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 12px;
}
.ff-hero h1 em { color: var(--plum-accent); font-style: italic; }
.ff-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.ff-hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.ff-hero-stats .hero-stat-num { color: var(--plum-accent); font-family: var(--font-display); font-size: 36px; font-weight: 900; }
.ff-hero-stats .hero-stat-label { color: rgba(255,255,255,0.5); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }

/* Food Facts filter bar */
.ff-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 48px;
    position: sticky;
    top: var(--nav-height);
    z-index: 800;
}
.ff-filter-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ff-filter-btn {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    transition: all 0.2s;
}
.ff-filter-btn:hover { border-color: var(--amber); color: var(--amber); }
.ff-filter-btn.active {
    background: var(--amber);
    color: var(--white);
    border-color: var(--amber);
}

/* Masonry grid */
.ff-masonry-section {
    padding: 48px;
}
.ff-masonry-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.ff-masonry-grid {
    columns: 3;
    column-gap: 22px;
}
.ff-card {
    break-inside: avoid;
    margin-bottom: 22px;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ff-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Text article card */
.ff-card-text {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
}
.ff-card-badge-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}
.ff-card-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
}
.ff-card-text h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.ff-card-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ff-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}
.ff-card-cta {
    margin-left: auto;
    font-weight: 600;
    color: var(--plum-mid);
}

/* Highlighted card */
.ff-card-highlight {
    background: linear-gradient(135deg, var(--plum-light), #f5f0fa);
    border: 1px solid rgba(61,31,78,0.2);
    padding: 28px;
}
.ff-card-highlight .ff-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: var(--plum-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.ff-card-highlight h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}
.ff-card-highlight .ff-card-body { font-size: 14px; }

/* Video card */
.ff-card-video {
    background: var(--charcoal);
    color: var(--white);
    padding: 0;
}
.ff-video-slot {
    position: relative;
    overflow: hidden;
}
.ff-video-slot.portrait { aspect-ratio: 9/16; }
.ff-video-slot.landscape { aspect-ratio: 16/9; }
.ff-video-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ff-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--white);
    font-size: 22px;
}
.ff-duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}
.ff-platform-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}
.ff-card-video .ff-card-video-body {
    padding: 16px 20px;
}
.ff-card-video h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}
.ff-card-video .ff-card-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Load more */
.ff-load-more {
    text-align: center;
    padding: 32px 48px 0;
}
.load-more-btn {
    padding: 12px 28px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.2s;
}
.load-more-btn:hover { border-color: var(--sage); color: var(--sage); }

/* Platform strip */
.platform-strip {
    background: var(--charcoal);
    padding: 64px 48px;
}
.platform-strip-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.platform-strip h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}
.platform-strip p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.platform-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.platform-btn {
    padding: 10px 24px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--white);
    background: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}
.platform-btn:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

/* ============================================================
   VIDEO FACT POST (custom-ff-video.hbs)
   ============================================================ */
.video-hero {
    background: var(--charcoal);
    padding: 64px 48px;
}
.video-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.video-embed-area {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.video-hero-body h1 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 12px;
}
.video-hero-body p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}
.watch-buttons {
    display: flex;
    gap: 12px;
}
.watch-btn {
    padding: 10px 24px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    display: inline-block;
    transition: opacity 0.2s;
}
.watch-btn:hover { opacity: 0.9; }
.watch-btn.youtube { background: #ff0000; color: var(--white); }
.watch-btn.tiktok { background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); }

/* Transcript */
.transcript-note {
    background: var(--cream);
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--muted);
}
.video-timecode {
    display: inline-block;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 12px;
    font-weight: 600;
    background: var(--charcoal);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Platform links block */
.platform-links-block {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.platform-links-block span {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* Food Fact text post hero */
.ff-text-hero {
    background: var(--plum);
    padding: 64px 48px;
    text-align: center;
}
.ff-text-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}
.ff-text-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 16px;
}
.ff-text-hero .lead {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}
.ff-text-hero .post-meta { justify-content: center; color: rgba(255,255,255,0.5); }

/* TL;DR callout */
.ff-tldr {
    background: var(--plum-light);
    border-left: 4px solid var(--plum-mid);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-bottom: 32px;
}
.ff-tldr-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--plum-mid);
    margin-bottom: 8px;
}
.ff-tldr p {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}

/* Fact pullquote */
.fact-pullquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--plum);
    border-left: 3px solid var(--plum-mid);
    padding-left: 20px;
    margin: 32px 0;
    line-height: 1.4;
}

/* Related facts section */
.related-facts {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.related-facts h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.related-fact-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}
.related-fact-card:hover { border-color: var(--plum-mid); }
.related-fact-card .category-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--plum-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.related-fact-card h4 { font-size: 15px; }

/* Share strip */
.share-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}
.share-strip a {
    font-weight: 600;
    color: var(--plum-mid);
}
.share-strip a:hover { color: var(--plum); }

/* ============================================================
   START HERE PAGE
   ============================================================ */
.start-hero {
    background: var(--sage-dark);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.start-hero::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163,191,151,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.start-hero::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163,191,151,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.start-hero .hero-eyebrow {
    display: inline-flex;
    color: var(--sage-mid);
    background: rgba(163,191,151,0.2);
    border: 1px solid rgba(163,191,151,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.start-hero h1 {
    font-size: 64px;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 12px;
}
.start-hero h1 em {
    font-style: italic;
    color: var(--sage-mid);
}
.start-hero .btn-primary {
    background: var(--terra);
}
.start-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.start-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Best of section */
.bestof-section {
    padding: 64px 48px;
    background: var(--cream);
}
.bestof-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.bestof-section h2 {
    font-size: 28px;
    margin-bottom: 8px;
}
.bestof-subtitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 32px;
}
.bestof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bestof-empty {
    font-size: 15px;
    color: var(--muted);
    font-style: italic;
}

/* About strip */
.about-strip {
    padding: 64px 48px;
    background: var(--white);
}
.about-strip-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: flex-start;
}
.about-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--sage-light);
    border: 4px solid var(--sage-mid);
}
.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text .section-eyebrow { margin-bottom: 8px; }
.about-text h2 {
    font-size: 32px;
    margin-bottom: 12px;
}
.about-text p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.about-pizza {
    margin-top: 16px;
    padding: 12px 18px;
    background: var(--amber-light);
    border-left: 3px solid var(--amber);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 15px;
    color: var(--amber-dark);
}

/* Philosophy cards */
.philosophy-section {
    padding: 64px 48px;
}
.philosophy-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.philosophy-section h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 12px;
}
.philosophy-section h2 em {
    font-style: italic;
    color: var(--sage);
}
.philosophy-subtitle {
    font-size: 17px;
    color: var(--muted);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.philosophy-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
}
.philosophy-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.philosophy-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Three pillars */
.pillars-section {
    padding: 64px 48px;
    background: var(--white);
}
.pillars-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.pillars-section h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}
.pillar-detail-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}
.pillar-detail-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}
.pillar-detail-card.sage-accent .pillar-detail-num { color: var(--sage); }
.pillar-detail-card.terra-accent .pillar-detail-num { color: var(--terra); }
.pillar-detail-card.amber-accent .pillar-detail-num { color: var(--amber); }
.pillar-detail-body h3 { font-size: 22px; margin-bottom: 8px; }
.pillar-detail-body p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.pillar-detail-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}
.pillar-detail-body li {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 4px;
}

/* Pillar cards — vertical 3-column layout */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pillar-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pillar-card-header {
    padding: 28px 24px;
    color: var(--white);
    text-align: left;
}
.pillar-card-header.sage-header { background: var(--sage-dark); }
.pillar-card-header.terra-header { background: var(--terra-dark); }
.pillar-card-header.amber-header { background: var(--amber-dark); }
.pillar-card-header.plum-header { background: var(--plum); }
.pillar-card-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 12px;
    text-align: left;
}
.pillar-card-icon { font-size: 28px; margin-bottom: 8px; text-align: left; }
.pillar-card-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
}
.pillar-card-tag {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
    text-align: left;
}
.pillar-card-body {
    padding: 24px;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.pillar-card-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 12px;
    text-align: left;
}
.pillar-card-body ul {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 20px;
    flex: 1;
    text-align: left;
}
.pillar-card-body li {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
    text-align: left;
}
.pillar-card.sage-card .pillar-card-body li::marker { color: var(--sage); }
.pillar-card.terra-card .pillar-card-body li::marker { color: var(--terra); }
.pillar-card.amber-card .pillar-card-body li::marker { color: var(--amber); }
.pillar-card.plum-card .pillar-card-body li::marker { color: var(--plum-mid); }
.pillar-card-cta {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 4px;
    transition: background 0.2s;
}
.pillar-card.sage-card .pillar-card-cta { background: var(--sage-light); color: var(--sage-dark); }
.pillar-card.sage-card .pillar-card-cta:hover { background: var(--sage-mid); color: var(--white); }
.pillar-card.terra-card .pillar-card-cta { background: var(--terra-light); color: var(--terra-dark); }
.pillar-card.terra-card .pillar-card-cta:hover { background: #e8c0a0; color: var(--terra-dark); }
.pillar-card.amber-card .pillar-card-cta { background: var(--amber-light); color: var(--amber-dark); }
.pillar-card.amber-card .pillar-card-cta:hover { background: #f7e0a8; color: var(--amber-dark); }
.pillar-card.plum-card .pillar-card-cta { background: var(--plum-light); color: var(--plum); }
.pillar-card.plum-card .pillar-card-cta:hover { background: var(--plum-accent); color: var(--plum); }

/* FAQ Section */
.faq-section { padding: 64px 48px; background: var(--cream); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-section h2 { font-size: 28px; text-align: center; margin-bottom: 40px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--sage); }
.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--muted);
    flex-shrink: 0;
    transition: all 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--sage); color: var(--sage); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
    padding: 0 20px 16px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

/* Where to start */
.where-to-start {
    padding: 80px 48px;
    background: var(--cream);
}
.where-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.where-to-start h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.where-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 48px;
}
.where-path-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}
.where-path-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: box-shadow 0.2s;
}
.where-path-card:hover { box-shadow: var(--shadow-md); }
.where-path-icon { font-size: 36px; margin-bottom: 20px; }
.where-path-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
    line-height: 1.3;
}
.where-path-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}
.where-path-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--sage);
    text-decoration: none;
    margin-top: auto;
}
.where-path-link:hover { text-decoration: underline; }
.where-picks {
    border-top: 1px solid var(--border);
    padding-top: 48px;
}
.where-picks-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
}
.where-picks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* First reads */
.first-reads {
    padding: 64px 48px;
    background: var(--white);
}
.first-reads-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.first-reads h2 {
    font-size: 28px;
    margin-bottom: 32px;
}
.first-reads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.first-read-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.first-read-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.first-read-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--sage-light);
}
.first-read-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.first-read-body {
    padding: 16px;
}
.first-read-body h4 { font-size: 15px; line-height: 1.3; }

/* ============================================================
   GENERIC PAGE (page.hbs)
   ============================================================ */
.page-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px;
}
.page-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
}
.page-content .post-body {
    font-size: 16px;
    line-height: 1.85;
}

/* ============================================================
   ARCHIVE PAGE (page-archive.hbs)
   ============================================================ */
.archive-hero {
    background: var(--sage-dark);
    color: var(--white);
    padding: 64px 48px 48px;
    text-align: center;
}
.archive-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.archive-hero h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
}
.archive-hero-sub {
    font-size: 18px;
    opacity: 0.85;
}

.archive-controls {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 48px;
    position: sticky;
    top: var(--nav-height);
    z-index: 50;
}
.archive-controls-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.archive-search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 340px;
}
.archive-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--muted);
    pointer-events: none;
}
.archive-search-input {
    width: 100%;
    padding: 9px 14px 9px 36px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
}
.archive-search-input:focus {
    border-color: var(--sage);
    background: var(--white);
}
.archive-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.archive-filter-btn {
    padding: 7px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--muted);
    cursor: pointer;
    transition: all 0.15s;
}
.archive-filter-btn:hover {
    border-color: var(--sage);
    color: var(--sage);
}
.archive-filter-btn.active {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.archive-meta {
    padding: 16px 48px 0;
}
.archive-meta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.archive-count {
    font-size: 13px;
    color: var(--muted);
}

.archive-feed {
    padding: 24px 48px 80px;
}
.archive-feed-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
#archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.archive-item {
    display: contents;
}
.archive-empty {
    text-align: center;
    color: var(--muted);
    font-size: 16px;
    padding: 64px 0;
}

/* ============================================================
   ERROR PAGE (inline styles used, but base classes for reference)
   ============================================================ */

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    /* Nav */
    .nav-hamburger { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px 48px;
        gap: 24px;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.open { display: flex; }
    .nav-links { flex-direction: column; gap: 16px; font-size: 18px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    /* Homepage */
    .home-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-image { max-height: 300px; }
    .pillar-strip-inner { grid-template-columns: repeat(3, 1fr); }
    .fresh-grid { grid-template-columns: 1fr 1fr; }
    .fresh-grid .post-card:first-child { grid-row: auto; }
    .map-teaser-inner { grid-template-columns: 1fr; }

    /* State landing */
    .state-hero-inner { grid-template-columns: 1fr; }
    .state-overview { grid-template-columns: 1fr; }
    .foodways-grid { grid-template-columns: repeat(2, 1fr); }
    .state-recipes-grid { grid-template-columns: repeat(2, 1fr); }

    /* Map hub */
    .map-hero-inner { grid-template-columns: 1fr; }
    .completed-grid { grid-template-columns: repeat(2, 1fr); }

    /* Post layout */
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { order: 1; }

    /* Dinners hub */
    .featured-dinner-card { grid-template-columns: 1fr; }
    .dinners-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .suggest-inner { grid-template-columns: 1fr; }

    /* Dinner post */
    .dinner-hero-inner { grid-template-columns: 1fr; }
    .story-section { grid-template-columns: 1fr; }
    .dinner-sidebar { order: -1; }
    .course-inner { grid-template-columns: 1fr; }
    .dinner-timeline-grid { grid-template-columns: repeat(2, 1fr); }
    .shopping-grid { grid-template-columns: repeat(2, 1fr); }

    /* Food Facts */
    .ff-masonry-grid { columns: 2; }
    .platform-strip-inner { grid-template-columns: 1fr; }

    /* Video fact */
    .video-hero-inner { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }

    /* Start Here */
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .first-reads-grid { grid-template-columns: repeat(2, 1fr); }

    /* Tag archive */
    .tag-archive-grid { grid-template-columns: repeat(2, 1fr); }

    /* Archive page */
    .archive-controls { padding: 16px 24px; }
    .archive-controls-inner { flex-direction: column; align-items: stretch; }
    .archive-search-wrap { max-width: 100%; }
    .archive-meta { padding: 12px 24px 0; }
    .archive-feed { padding: 16px 24px 64px; }
    #archive-grid { grid-template-columns: repeat(2, 1fr); }

    /* Sections padding */
    .home-hero, .map-teaser, .dinners-hero, .ff-hero, .start-hero,
    .fresh-section, .pillar-strip, .map-hero, .filter-bar, .ff-filter-bar,
    .completed-section, .coming-soon-section, .featured-dinner-section,
    .all-dinners-section, .how-it-works, .suggest-section, .dinner-hero,
    .bts-section, .courses-section, .masterplan-section, .gallery-section,
    .dinner-related, .ff-masonry-section, .ff-load-more, .platform-strip,
    .video-hero, .ff-text-hero, .state-hero, .state-overview, .foodways-section,
    .state-recipes-section, .about-strip, .philosophy-section, .pillars-section,
    .where-to-start, .first-reads, .newsletter-cta, .page-content,
    .post-hero-image, .post-layout, .jump-bar, .dinner-jump-bar, .fact-breadcrumb,
    .state-section-nav, .tag-archive-header, .tag-archive-grid,
    .archive-hero, .map-container, .site-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
    .nav-inner { padding: 0 24px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    .pillar-strip-inner { grid-template-columns: 1fr; }
    .fresh-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .dinners-hero-stats { flex-direction: column; gap: 16px; }
    .ff-hero-stats { flex-direction: column; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }

    /* State */
    .foodways-grid { grid-template-columns: 1fr; }
    .state-recipes-grid { grid-template-columns: 1fr; }
    .completed-grid { grid-template-columns: 1fr; }

    /* Dinners */
    .dinners-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .dinner-timeline-grid { grid-template-columns: 1fr; }
    .shopping-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }

    /* Food Facts */
    .ff-masonry-grid { columns: 1; }

    /* Start Here */
    .philosophy-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .bestof-grid { grid-template-columns: 1fr; }
    .about-strip-inner { grid-template-columns: 1fr; }
    .about-avatar { width: 100px; height: 100px; }
    .where-path-cards { grid-template-columns: 1fr; }
    .where-picks-grid { grid-template-columns: repeat(2, 1fr); }
    .first-reads-grid { grid-template-columns: 1fr; }

    /* Tag archive */
    .tag-archive-grid { grid-template-columns: 1fr; }

    /* Archive page */
    .archive-hero h1 { font-size: 36px; }
    .archive-filter-bar { gap: 6px; }
    .archive-filter-btn { font-size: 12px; padding: 6px 12px; }
    #archive-grid { grid-template-columns: 1fr; }

    /* Post */
    .post-title { font-size: 32px; }
    .post-prev-next { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }

    /* Course card */
    .course-card { flex-direction: column; }
    .course-accent { width: 100%; height: 8px; }

    /* Jump bars horizontal scroll */
    .dinner-jump-links { overflow-x: auto; white-space: nowrap; }
    .filter-buttons { overflow-x: auto; white-space: nowrap; }

    /* Headings — clamp() handles responsive sizing; only override specific sections if needed */

    /* Sections padding */
    .home-hero, .map-teaser, .dinners-hero, .ff-hero, .start-hero,
    .fresh-section, .pillar-strip, .map-hero, .filter-bar, .ff-filter-bar,
    .completed-section, .coming-soon-section, .featured-dinner-section,
    .all-dinners-section, .how-it-works, .suggest-section, .dinner-hero,
    .bts-section, .courses-section, .masterplan-section, .gallery-section,
    .dinner-related, .ff-masonry-section, .ff-load-more, .platform-strip,
    .video-hero, .ff-text-hero, .state-hero, .state-overview, .foodways-section,
    .state-recipes-section, .about-strip, .philosophy-section, .pillars-section,
    .where-to-start, .first-reads, .newsletter-cta, .page-content,
    .post-hero-image, .post-layout, .jump-bar, .dinner-jump-bar, .fact-breadcrumb,
    .state-section-nav, .tag-archive-header, .tag-archive-grid,
    .map-container, .site-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
    .nav-inner { padding: 0 16px; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .site-nav, .jump-bar, .dinner-jump-bar, .fact-breadcrumb, .post-sidebar, .dinner-sidebar,
    .post-prev-next, .newsletter-cta, .site-footer, .tab-bar,
    .recipe-card-controls, .filter-bar, .ff-filter-bar, .state-section-nav,
    .nav-hamburger, .hero-ctas, .btn-primary, .btn-ghost { display: none !important; }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    a { color: #000; text-decoration: none; }
    h1, h2, h3, h4 {
        break-after: avoid;
        color: #000;
    }
    .recipe-card { display: block !important; break-inside: avoid; }
    .recipe-card-body { break-inside: avoid; }
    img { max-width: 100%; }
}
