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

/* ===== RESET & ROOT ===== */
:root {
    --primary: #c0392b;
    --primary-dark: #96281b;
    --primary-light: #e74c3c;
    --secondary: #222222;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --background: #ffffff;
    --surface: #f9f9f9;
    --border: #e8e8e8;
    --border-light: #f0f0f0;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
    --radius: 4px;
    --radius-md: 8px;
    --container: 1200px;
    --sidebar-w: 300px;
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--background);
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--secondary);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== TOP BAR ===== */
#top-bar {
    background: var(--secondary);
    color: #ccc;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-social { display: flex; gap: 14px; }
.top-bar-social a { color: #aaa; transition: color var(--transition); }
.top-bar-social a:hover { color: #fff; }
.top-bar-social svg { width: 14px; height: 14px; fill: currentColor; }

/* ===== HEADER ===== */
#site-header {
    background: #fff;
    border-bottom: 3px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}
.site-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.5px;
}
.logo-main span { color: var(--secondary); }
.logo-sub {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Search */
.header-search {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    flex: 1;
    max-width: 380px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.header-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.header-search input {
    border: none; background: transparent;
    padding: 9px 16px; font-size: 0.9rem; color: var(--text);
    width: 100%; outline: none;
}
.header-search button {
    background: var(--primary); border: none;
    color: #fff; padding: 9px 16px;
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.5px;
    transition: background var(--transition);
    flex-shrink: 0;
}
.header-search button:hover { background: var(--primary-dark); }

/* ===== NAVIGATION ===== */
#site-nav {
    background: var(--secondary);
}
.nav-inner {
    display: flex;
    align-items: stretch;
}
.nav-item {
    position: relative;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 13px 18px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}
.nav-link:hover, .nav-item:hover > .nav-link {
    background: var(--primary);
    color: #fff;
}
.nav-link .chevron {
    width: 10px; height: 10px;
    fill: currentColor;
    transition: transform var(--transition);
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
    min-width: 560px;
    padding: 24px;
    z-index: 999;
    gap: 32px;
    grid-template-columns: repeat(3, 1fr);
}
.nav-item:hover .mega-menu { display: grid; }
.mega-col h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    margin-bottom: 10px;
}
.mega-col a {
    display: block;
    padding: 5px 0;
    color: var(--text);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.mega-col a:hover { color: var(--primary); padding-left: 4px; }

/* Simple dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow);
    min-width: 160px;
    z-index: 999;
}
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--text);
    font-size: 0.88rem;
    transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--surface); color: var(--primary); }

/* ===== AD BANNER ===== */
.ad-banner {
    text-align: center;
    padding: 12px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.ad-banner ins, .ad-banner .ad-placeholder {
    display: block;
    width: 728px; max-width: 100%;
    height: 90px;
    margin: 8px auto 0;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: #aaa;
}

/* ===== LAYOUT: CONTENT + SIDEBAR ===== */
.page-body {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-w);
    gap: 40px;
    padding: 36px 0;
    align-items: start;
}
.main-content { min-width: 0; }
.sidebar { min-width: 0; }

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 24px;
}
.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}
.section-header h2 span { color: var(--primary); }
.section-header .browse-all {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    transition: color var(--transition);
}
.section-header .browse-all:hover { color: var(--primary-dark); }

/* ===== FEATURED HERO ===== */
#featured-hero {
    background: var(--secondary);
    padding: 40px 0;
    margin-bottom: 0;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}
.hero-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.hero-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}
.hero-main:hover img { transform: scale(1.04); }
.hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.85) 100%);
}
.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 8px;
}
.hero-overlay h2 {
    color: #fff;
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}
.hero-overlay p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.hero-side-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.hero-side-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}
.hero-side-card:hover img { transform: scale(1.05); }
.hero-side-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 14px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.hero-side-overlay h3 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}
.hero-side-overlay .type-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 2px;
    margin-bottom: 5px;
}

/* ===== CATEGORY PILLS ===== */
#category-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.cat-strip-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 24px;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
}
.cat-btn .cat-icon { font-size: 1.5rem; }
.cat-btn:hover { color: var(--primary); border-bottom-color: var(--primary); }
.cat-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ===== RECIPE GRID ===== */
.recipe-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.recipe-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.recipe-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: box-shadow var(--transition), transform var(--transition);
    cursor: pointer;
}
.recipe-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.recipe-card-img {
    position: relative;
    overflow: hidden;
}
.recipe-card-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.recipe-card:hover .recipe-card-img img { transform: scale(1.06); }
.card-type-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
}
.recipe-card-body {
    padding: 14px 16px 18px;
}
.recipe-card-category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}
.recipe-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color var(--transition);
}
.recipe-card:hover .recipe-card-title { color: var(--primary); }
.recipe-card-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.recipe-card-meta .dot { width: 3px; height: 3px; background: #ccc; border-radius: 50%; }

/* Horizontal recipe card (list style) */
.recipe-row {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: background var(--transition);
    align-items: center;
}
.recipe-row:last-child { border-bottom: none; }
.recipe-row:hover { background: var(--surface); margin: 0 -12px; padding-left: 12px; padding-right: 12px; }
.recipe-row-img {
    width: 80px; height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.recipe-row-img img { width: 100%; height: 100%; object-fit: cover; }
.recipe-row-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
    line-height: 1.3;
}
.recipe-row-info span { font-size: 0.75rem; color: var(--primary); font-weight: 700; }

/* ===== SIDEBAR ===== */
.sidebar-widget {
    margin-bottom: 32px;
}
.sidebar-widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 8px;
    margin-bottom: 16px;
}
.ad-sidebar-box {
    background: var(--surface);
    border: 1px dashed #ccc;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #bbb;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

/* Newsletter widget */
.newsletter-widget {
    background: var(--secondary);
    color: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
}
.newsletter-widget h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 8px;
}
.newsletter-widget p { font-size: 0.85rem; color: #ccc; margin-bottom: 16px; }
.newsletter-widget input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.88rem;
    margin-bottom: 10px;
    background: #fff;
}
.newsletter-widget button {
    width: 100%;
    padding: 11px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition);
}
.newsletter-widget button:hover { background: var(--primary-light); }

/* Category links widget */
.cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.cat-list a:last-child { border-bottom: none; }
.cat-list a:hover { color: var(--primary); }
.cat-list a span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== FULL-WIDTH PROMO SECTION ===== */
.promo-section {
    background: var(--surface);
    padding: 56px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 40px 0;
}
.promo-section h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}
.promo-section p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 24px;
}
.promo-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}
.promo-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===== VIDEO SECTION ===== */
.video-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.video-card {
    cursor: pointer;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    position: relative;
}
.video-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.video-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.video-card:hover .video-card-thumb img { transform: scale(1.05); opacity: 0.85; }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 52px; height: 52px;
    background: rgba(192,57,43,0.92);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--primary); }
.play-btn::after {
    content: '';
    border: 0 solid transparent;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 15px solid #fff;
    margin-left: 4px;
}
.video-card-info {
    background: #fff;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-top: none;
}
.video-card-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    transition: color var(--transition);
}
.video-card:hover .video-card-info h3 { color: var(--primary); }
.video-card-info .watch-now {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.modal-box {
    background: #fff;
    max-width: 900px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: auto;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--secondary);
}
.modal-header h2 { color: #fff; font-size: 1.05rem; }
.modal-close {
    background: none; border: none;
    color: #fff; font-size: 1.8rem; line-height: 1;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--primary); }
.modal-video {
    background: #000;
    aspect-ratio: 16/9;
}
.modal-video iframe { width: 100%; height: 100%; display: block; border: none; }
.modal-body { padding: 28px 32px; }
.modal-recipe-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    margin-top: 20px;
}
.modal-recipe-grid h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.modal-recipe-grid ul { padding-left: 18px; list-style: disc; }
.modal-recipe-grid ol { padding-left: 18px; }
.modal-recipe-grid li { padding: 4px 0; font-size: 0.9rem; color: var(--text); }
.modal-footer {
    background: var(--surface);
    padding: 16px 32px;
    border-top: 2px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}
.modal-footer a { color: var(--primary); font-weight: 700; }

/* ===== FOOTER ===== */
#site-footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 56px 0 0;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand .logo-main { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: #999; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    background: #333;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #aaa;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}
.footer-col a {
    display: block;
    padding: 5px 0;
    color: #999;
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid #2d2d2d;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #666;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--primary); }

/* ===== FILTER BUTTONS ===== */
.filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.filter-btn {
    padding: 6px 16px;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    background: #fff;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ===== SEARCH RESULTS HIGHLIGHT ===== */
.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== BACK TO TOP ===== */
#back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--primary-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .page-body { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .recipe-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .logo-main { font-size: 1.4rem; }
    .header-search { max-width: 220px; }
    .hero-inner { grid-template-columns: 1fr 1fr; }
    .hero-main { grid-column: 1/3; grid-row: 1/2; }
    .hero-side-card { grid-column: span 1; }
    .recipe-grid-3 { grid-template-columns: 1fr 1fr; }
    .recipe-grid-4 { grid-template-columns: 1fr 1fr; }
    .video-cards { grid-template-columns: 1fr 1fr; }
    .modal-recipe-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-main, .hero-side-card { grid-column: span 1; grid-row: auto; }
    .recipe-grid-3 { grid-template-columns: 1fr; }
    .recipe-grid-4 { grid-template-columns: 1fr 1fr; }
    .video-cards { grid-template-columns: 1fr; }
    .nav-inner { overflow-x: auto; }
    .mega-menu { min-width: 320px; }
}
