/* ================================================================
   Safran & Salz – Premium Food Magazine Styles
   Primary: #D35400 | Secondary: #2C3E50 | Accent: #F4EBD0
   ================================================================ */

:root {
    --primary: #D35400;
    --primary-dark: #BA4A00;
    --primary-light: #E67E22;
    --secondary: #2C3E50;
    --secondary-light: #34495E;
    --accent: #F4EBD0;
    --accent-dark: #E8DCC0;
    --bg: #FFFDF8;
    --text: #222222;
    --text-muted: #5D6D7E;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 20px rgba(44, 62, 80, 0.06);
    --shadow-md: 0 12px 40px rgba(44, 62, 80, 0.1);
    --shadow-lg: 0 24px 60px rgba(44, 62, 80, 0.14);
    --shadow-orange: 0 8px 30px rgba(211, 84, 0, 0.28);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.site-body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
}

/* ── Loader ── */
.page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand {
    font-family: var(--font-display);
    font-size: 1.75rem; color: var(--accent);
    margin-bottom: 1.5rem; text-align: center;
}
.loader-brand i { color: var(--primary); margin-right: 0.5rem; }
.loader-progress { width: 140px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; }
.loader-bar { height: 100%; width: 40%; background: var(--primary); border-radius: 3px; animation: loadSlide 1.2s ease-in-out infinite; }
@keyframes loadSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ── Header / Navbar ── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
    height: var(--header-h);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}

.navbar-custom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--header-h);
    gap: 1rem;
}

.navbar-logo {
    display: flex; align-items: center; gap: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700;
    color: var(--secondary);
    justify-self: start;
    transition: transform var(--transition);
}
.navbar-logo:hover { color: var(--primary); transform: scale(1.02); }

.logo-mark {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem;
    box-shadow: var(--shadow-orange);
}

.navbar-nav-center {
    display: flex; align-items: center; gap: 0.25rem;
    list-style: none; justify-self: center;
}
.navbar-nav-center .nav-link {
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem; font-weight: 500;
    color: var(--text-muted);
    border-radius: 50px;
    position: relative;
    transition: all var(--transition);
}
.navbar-nav-center .nav-link:hover,
.navbar-nav-center .nav-link.active {
    color: var(--primary);
    background: rgba(211, 84, 0, 0.08);
}

.navbar-actions {
    display: flex; align-items: center; gap: 1rem;
    justify-self: end;
}

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--secondary); border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Buttons ── */
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 0.875rem; font-weight: 600;
    border: none; border-radius: 50px;
    cursor: pointer; transition: all var(--transition);
    box-shadow: var(--shadow-orange);
    text-decoration: none;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(211, 84, 0, 0.38);
    color: var(--white) !important;
}

.btn-outline-custom {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    background: transparent;
    color: var(--white) !important;
    font-weight: 600; font-size: 0.875rem;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-outline-custom:hover {
    background: var(--white);
    color: var(--secondary) !important;
    border-color: var(--white);
}

.btn-secondary-custom {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    background: var(--secondary);
    color: var(--white) !important;
    font-weight: 600; font-size: 0.875rem;
    border: none; border-radius: 50px;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-secondary-custom:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-lg-custom { padding: 1rem 2rem; font-size: 0.95rem; }

/* ── Section Utilities ── */
.section-padding { padding: 6rem 0; }
.section-padding-sm { padding: 4rem 0; }

.section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 0.85rem;
}
.section-tag::before {
    content: ''; width: 24px; height: 2px;
    background: var(--primary); border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
}

.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

.section-separator {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin: 0 auto 3rem; max-width: 200px;
}
.section-separator::before,
.section-separator::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dark), transparent);
}
.section-separator i { color: var(--primary); font-size: 0.85rem; }

.bg-accent { background: var(--accent); }
.bg-secondary { background: var(--secondary); color: var(--white); }
.bg-secondary .section-title, .bg-secondary h2, .bg-secondary h3 { color: var(--white); }
.bg-secondary .section-desc { color: rgba(255,255,255,0.75); }
.bg-secondary .section-tag { color: var(--accent); }
.bg-secondary .section-tag::before { background: var(--accent); }

/* ── Hero ── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(44, 62, 80, 0.88) 0%,
        rgba(44, 62, 80, 0.65) 45%,
        rgba(211, 84, 0, 0.35) 100%
    );
}

.hero-inner {
    position: relative; z-index: 2;
    padding: 4rem 0;
}

.hero-content { max-width: 620px; }

.hero-eyebrow {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    background: rgba(244, 235, 208, 0.15);
    border: 1px solid rgba(244, 235, 208, 0.3);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.08;
}
.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.25rem;
    max-width: 500px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Floating Food Cards */
.hero-float-cards {
    position: absolute;
    right: 5%; top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 340px;
    display: none;
}
@media (min-width: 1200px) { .hero-float-cards { display: block; } }

.float-card {
    background: rgba(255, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.25rem;
    animation: floatY 4s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.5);
}
.float-card:nth-child(2) { animation-delay: -1.5s; margin-left: 2rem; }
.float-card:nth-child(3) { animation-delay: -3s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-card-img {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden; flex-shrink: 0;
}
.float-card-img img { width: 100%; height: 100%; object-fit: cover; }

.float-card-info h4 {
    font-size: 0.95rem; margin-bottom: 0.25rem;
    color: var(--secondary);
}
.float-card-info span {
    font-size: 0.78rem; color: var(--text-muted);
}
.float-card-stars { color: #F39C12; font-size: 0.7rem; margin-top: 0.25rem; }

/* ── Recipe Cards ── */
.recipe-card-v2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.recipe-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.recipe-card-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.recipe-card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.recipe-card-v2:hover .recipe-card-img-wrap img { transform: scale(1.1); }

.recipe-card-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44,62,80,0.5) 0%, transparent 50%);
    opacity: 0; transition: opacity var(--transition);
}
.recipe-card-v2:hover .recipe-card-img-wrap::after { opacity: 1; }

.recipe-card-tag {
    position: absolute; top: 1rem; left: 1rem;
    padding: 0.35rem 0.9rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    border-radius: 50px;
    z-index: 1;
}

.recipe-card-body-v2 {
    padding: 1.5rem;
    flex: 1;
    display: flex; flex-direction: column;
}

.recipe-card-body-v2 h3 {
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
    transition: color var(--transition);
}
.recipe-card-v2:hover .recipe-card-body-v2 h3 { color: var(--primary); }

.recipe-meta-row {
    display: flex; flex-wrap: wrap; gap: 0.85rem;
    font-size: 0.82rem; color: var(--text-muted);
    margin-bottom: 0.85rem;
}
.recipe-meta-row span { display: flex; align-items: center; gap: 0.35rem; }
.recipe-meta-row i { color: var(--primary); font-size: 0.78rem; }

.recipe-stars {
    color: #F39C12; font-size: 0.8rem;
    margin-bottom: 0.75rem;
}
.recipe-stars span { color: var(--text-muted); font-size: 0.78rem; margin-left: 0.35rem; }

.recipe-card-desc-v2 {
    font-size: 0.9rem; color: var(--text-muted);
    margin-bottom: 1.25rem; flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-card-link-v2 {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-weight: 600; font-size: 0.875rem;
    color: var(--primary);
}
.recipe-card-link-v2 i { transition: transform var(--transition); }
.recipe-card-v2:hover .recipe-card-link-v2 i { transform: translateX(5px); }

/* ── Category Cards ── */
.cat-card {
    position: relative;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    transition: transform var(--transition);
}
.cat-card:hover { transform: scale(1.03); }

.cat-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.cat-card:hover img { transform: scale(1.08); }

.cat-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44,62,80,0.9) 0%, rgba(44,62,80,0.2) 60%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    transition: background var(--transition);
}
.cat-card:hover .cat-card-overlay {
    background: linear-gradient(to top, rgba(211,84,0,0.85) 0%, rgba(211,84,0,0.25) 60%);
}

.cat-card-icon {
    font-size: 1.4rem; color: var(--accent);
    margin-bottom: 0.4rem;
}
.cat-card-name {
    font-family: var(--font-display);
    font-size: 1.2rem; color: var(--white);
}
.cat-card-count { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ── Chef Pick ── */
.chef-pick {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.chef-pick-img { position: relative; min-height: 400px; }
.chef-pick-img img { width: 100%; height: 100%; object-fit: cover; }
.chef-pick-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 60%, var(--white) 100%);
}
.chef-pick-content {
    padding: 3rem;
    display: flex; flex-direction: column; justify-content: center;
}
.chef-pick-label {
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--primary); margin-bottom: 0.75rem;
}
.chef-pick-content h3 { font-size: 2rem; margin-bottom: 1rem; }
.chef-pick-content p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ── Gallery Masonry ── */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 0.75rem;
}
.gallery-item-v2 {
    border-radius: var(--radius-md);
    overflow: hidden; position: relative;
}
.gallery-item-v2:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item-v2 img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item-v2:hover img { transform: scale(1.06); }
.gallery-item-v2::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(211,84,0,0);
    transition: background var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.gallery-item-v2:hover::after { background: rgba(211,84,0,0.35); }

/* ── Testimonials ── */
.testimonial-card-v2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary);
}
.testimonial-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.testimonial-stars-v2 { color: #F39C12; margin-bottom: 1rem; font-size: 0.85rem; }
.testimonial-text-v2 {
    font-style: italic; color: var(--text-muted);
    font-size: 0.95rem; margin-bottom: 1.5rem;
}
.testimonial-author-v2 {
    display: flex; align-items: center; gap: 0.85rem;
}
.testimonial-avatar-v2 {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700;
}
.testimonial-name-v2 { font-weight: 600; font-size: 0.95rem; }
.testimonial-city-v2 { font-size: 0.8rem; color: var(--text-muted); }

/* ── Newsletter Block ── */
.newsletter-block {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative; overflow: hidden;
}
.newsletter-block::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(211,84,0,0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.newsletter-block h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.75rem; position: relative; }
.newsletter-block p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; position: relative; }
.newsletter-form-inline {
    display: flex; max-width: 460px; margin: 0 auto; gap: 0.75rem; position: relative;
}
.newsletter-form-inline input {
    flex: 1; padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
}
.newsletter-form-inline input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form-inline input:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,0.15); }

/* ── Blog Cards ── */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body { padding: 1.5rem; }
.blog-card-cat {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--primary); margin-bottom: 0.5rem;
}
.blog-card-body h3 { font-size: 1.2rem; margin-bottom: 0.65rem; transition: color var(--transition); }
.blog-card:hover .blog-card-body h3 { color: var(--primary); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 1rem; }

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner::after {
    content: '';
    position: absolute; bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.35rem); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-secondary-custom { background: var(--white); color: var(--primary) !important; }
.cta-banner .btn-secondary-custom:hover { background: var(--accent); color: var(--secondary) !important; }

/* ── Page Hero (Inner) ── */
.page-hero-v2 {
    padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
    background: linear-gradient(160deg, var(--accent) 0%, var(--bg) 60%);
    position: relative; overflow: hidden;
}
.page-hero-v2::before {
    content: '';
    position: absolute; top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(211,84,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero-v2 h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); margin-bottom: 0.75rem; }
.page-hero-v2 .lead { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; }

.breadcrumb-v2 {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.breadcrumb-v2 a { color: var(--primary); }
.breadcrumb-v2 i { font-size: 0.65rem; }

/* ── Search & Filter ── */
.search-filter-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
}
.search-input-wrap {
    position: relative;
}
.search-input-wrap i {
    position: absolute; left: 1.25rem; top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.search-input-wrap input {
    width: 100%;
    padding: 0.875rem 1.25rem 0.875rem 3rem;
    border: 2px solid var(--accent-dark);
    border-radius: 50px;
    font-family: var(--font-body);
    background: var(--bg);
    transition: border-color var(--transition);
}
.search-input-wrap input:focus { outline: none; border-color: var(--primary); }

.filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-pill {
    padding: 0.5rem 1.15rem;
    border: 2px solid var(--accent-dark);
    border-radius: 50px;
    background: var(--bg);
    font-size: 0.82rem; font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}
.filter-pill:hover, .filter-pill.active {
    background: var(--primary);
    color: var(--white);
}

/* ── About ── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-frame img { width: 100%; height: 450px; object-fit: cover; }
.about-img-badge {
    position: absolute; bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.about-img-badge strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.about-img-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.stat-box {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}
.stat-box:hover { transform: translateY(-5px); }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.value-card-v2 {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}
.value-card-v2:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon-v2 {
    width: 64px; height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem; color: var(--primary);
    transition: all var(--transition);
}
.value-card-v2:hover .value-icon-v2 { background: var(--primary); color: var(--white); }

.team-card-v2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-align: center;
}
.team-card-v2:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-img-v2 { height: 280px; overflow: hidden; }
.team-img-v2 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card-v2:hover .team-img-v2 img { transform: scale(1.05); }
.team-body-v2 { padding: 1.75rem; }
.team-role-v2 { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.65rem; }

/* ── Contact ── */
.contact-form-v2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.form-label-v2 {
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 0.5rem; display: block;
}
.form-control-v2 {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--accent-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    background: var(--bg);
    transition: all var(--transition);
    margin-bottom: 1.25rem;
}
.form-control-v2:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(211,84,0,0.1);
}
textarea.form-control-v2 { min-height: 140px; resize: vertical; }

.contact-info-v2 {
    display: flex; gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}
.contact-info-v2:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.contact-icon-v2 {
    width: 52px; height: 52px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.2rem; flex-shrink: 0;
}

.contact-map-v2 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 380px; margin-top: 3rem;
}
.contact-map-v2 iframe { width: 100%; height: 100%; border: none; }

/* ── FAQ ── */
.faq-item-v2 {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 0.85rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-q-v2 {
    width: 100%; display: flex;
    align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none; border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
    color: var(--secondary); text-align: left;
    transition: color var(--transition);
}
.faq-q-v2:hover { color: var(--primary); }
.faq-q-v2 i { color: var(--primary); transition: transform var(--transition); }
.faq-item-v2.open .faq-q-v2 i { transform: rotate(180deg); }
.faq-a-v2 { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item-v2.open .faq-a-v2 { max-height: 250px; }
.faq-a-inner-v2 { padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.95rem; }

/* ── Blog Sidebar ── */
.blog-sidebar {
    position: sticky; top: calc(var(--header-h) + 1.5rem);
}
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}
.sidebar-cats li { margin-bottom: 0.65rem; }
.sidebar-cats a {
    display: flex; justify-content: space-between;
    color: var(--text-muted); font-size: 0.9rem;
    transition: all var(--transition);
}
.sidebar-cats a:hover { color: var(--primary); padding-left: 4px; }
.sidebar-cats span {
    background: var(--accent); color: var(--secondary);
    font-size: 0.75rem; font-weight: 600;
    padding: 0.15rem 0.5rem; border-radius: 50px;
}

.sidebar-post {
    display: flex; gap: 1rem;
    margin-bottom: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--accent);
}
.sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-post-img {
    width: 70px; height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden; flex-shrink: 0;
}
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post h5 { font-size: 0.88rem; line-height: 1.4; margin-bottom: 0.25rem; }
.sidebar-post span { font-size: 0.75rem; color: var(--text-muted); }

/* ── Policy Pages ── */
.policy-body { max-width: 820px; margin: 0 auto; padding: 3rem 0 5rem; }
.policy-body h2 { font-size: 1.45rem; margin: 2.5rem 0 1rem; color: var(--secondary); }
.policy-body h3 { font-size: 1.1rem; margin: 1.5rem 0 0.65rem; }
.policy-body p, .policy-body li { color: var(--text-muted); font-size: 0.975rem; margin-bottom: 0.85rem; }
.policy-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.policy-date {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: var(--accent);
    border-radius: 50px;
    font-size: 0.82rem; font-weight: 600;
    color: var(--primary); margin-bottom: 2rem;
}

/* ── Footer ── */
.site-footer { background: var(--secondary); color: rgba(255,255,255,0.7); }
.footer-top-wave { color: var(--bg); line-height: 0; }
.footer-top-wave svg { width: 100%; height: 50px; }
.footer-main { padding: 4rem 0 3rem; }

.footer-logo {
    display: flex; align-items: center; gap: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700;
    color: var(--white); margin-bottom: 1rem;
}
.footer-desc { font-size: 0.925rem; line-height: 1.75; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); color: var(--white); }

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem; color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-newsletter-text { font-size: 0.9rem; margin-bottom: 1rem; }
.footer-newsletter-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white); border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 0.75rem 1rem;
}
.footer-newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form .btn-primary-custom { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.footer-contact p { font-size: 0.875rem; margin-bottom: 0.4rem; }
.footer-contact i { color: var(--primary-light); margin-right: 0.5rem; width: 16px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem; font-size: 0.85rem;
}
.footer-credit i { color: var(--primary); }

/* ── Scroll Top ── */
.scroll-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px;
    background: var(--primary); color: var(--white);
    border: none; border-radius: 50%;
    cursor: pointer; z-index: 999;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-orange);
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ── Responsive ── */
@media (max-width: 1199px) {
    .navbar-custom { grid-template-columns: auto 1fr auto; }
    .navbar-nav-center { display: none; position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px; height: 100vh; background: var(--bg); flex-direction: column; align-items: flex-start; padding: calc(var(--header-h) + 2rem) 2rem 2rem; box-shadow: var(--shadow-lg); transition: right var(--transition); z-index: 1040; gap: 0; }
    .navbar-nav-center.open { display: flex; right: 0; }
    .navbar-nav-center li { width: 100%; }
    .navbar-nav-center .nav-link { display: block; padding: 0.875rem 0; font-size: 1rem; border-bottom: 1px solid var(--accent); border-radius: 0; width: 100%; }
    .nav-toggle { display: flex; }
    .chef-pick { grid-template-columns: 1fr; }
    .chef-pick-img { min-height: 280px; }
    .chef-pick-img::after { background: linear-gradient(to top, var(--white) 0%, transparent 30%); }
    .about-split { grid-template-columns: 1fr; gap: 2rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item-v2:first-child { grid-column: span 2; grid-row: span 1; height: 240px; }
}

@media (max-width: 767px) {
    :root { --header-h: 72px; }
    .section-padding { padding: 4rem 0; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom { width: 100%; justify-content: center; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .newsletter-form-inline { flex-direction: column; }
    .newsletter-block, .cta-banner { padding: 3rem 1.5rem; }
    .gallery-masonry { grid-template-columns: 1fr; }
    .gallery-item-v2:first-child { grid-column: span 1; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
}
