:root {
    --burgundy: #722F37;
    --burgundy-dark: #5A252C;
    --paprika-red: #C41E3A;
    --gold: #DAA520;
    --gold-light: #F0D060;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE0;
    --charcoal: #2C2C2C;
    --charcoal-light: #3A3A3A;
    --warm-gray: #8B7D6B;
    --sage: #6B7B5E;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', 'Times New Roman', serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --font-ui: 'Montserrat', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--paprika-red);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(218, 165, 32, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-custom {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--burgundy-dark) 100%);
    padding: 0;
}

.site-header.scrolled .navbar-custom {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo:hover {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-text em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links .nav-link {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 248, 240, 0.8);
    padding: 8px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: var(--gold);
    background: rgba(218, 165, 32, 0.1);
}

.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--charcoal);
    z-index: 2000;
    transition: right 0.35s ease;
    overflow-y: auto;
    padding: 0;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
}

.close-menu {
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-links {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-links a {
    color: rgba(255, 248, 240, 0.85);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--gold);
    background: rgba(218, 165, 32, 0.08);
}

.menu-divider {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 15px 5px;
    margin-top: 5px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 62px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.85) 0%, rgba(114, 47, 55, 0.7) 50%, rgba(44, 44, 44, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-tag {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--cream);
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: rgba(255, 248, 240, 0.8);
    max-width: 550px;
    margin-bottom: 35px;
    font-style: italic;
}

.hero-btn {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    background: var(--gold);
    padding: 14px 32px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.page-hero {
    margin-top: 62px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--burgundy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.06) 0%, transparent 70%);
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--cream);
    margin-bottom: 15px;
}

.page-hero p {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: rgba(255, 248, 240, 0.7);
    max-width: 600px;
    font-style: italic;
}

.page-hero .breadcrumb-nav {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.5);
    margin-bottom: 20px;
}

.page-hero .breadcrumb-nav a {
    color: var(--gold);
}

.section-warm {
    background: var(--cream);
    padding: 80px 0;
}

.section-dark {
    background: var(--charcoal);
    padding: 80px 0;
    color: var(--cream);
}

.section-accent {
    background: linear-gradient(135deg, var(--cream-dark) 0%, #f0e6d3 100%);
    padding: 80px 0;
}

.section-burgundy {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    padding: 80px 0;
    color: var(--cream);
}

.section-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--warm-gray);
    font-style: italic;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: rgba(255, 248, 240, 0.6);
}

.featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.featured-card .card-img {
    height: 240px;
    overflow: hidden;
}

.featured-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .card-img img {
    transform: scale(1.05);
}

.featured-card .card-body {
    padding: 25px;
}

.featured-card .card-tag {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.featured-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.featured-card .card-text {
    font-size: 0.95rem;
    color: var(--warm-gray);
    margin-bottom: 15px;
}

.featured-card .card-link {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-card .card-link:hover {
    color: var(--paprika-red);
}

.wide-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.wide-card .card-img-side {
    width: 45%;
    min-height: 350px;
}

.wide-card .card-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wide-card .card-body-side {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-content {
    padding: 60px 0;
    background: var(--cream);
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 40px 0 15px;
    color: var(--burgundy);
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 30px 0 12px;
    color: var(--charcoal);
}

.article-body p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.article-body ul, .article-body ol {
    margin: 15px 0 20px 20px;
    color: #4a4a4a;
}

.article-body li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.article-img {
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-img img {
    width: 100%;
    height: auto;
    display: block;
}

.article-img figcaption {
    background: var(--charcoal);
    color: rgba(255, 248, 240, 0.7);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    padding: 10px 15px;
    letter-spacing: 0.5px;
}

.recipe-box {
    background: linear-gradient(135deg, #fff 0%, var(--cream-dark) 100%);
    border-left: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
    padding: 30px;
    margin: 30px 0;
}

.recipe-box h3 {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 15px;
}

.recipe-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recipe-box ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.recipe-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.tip-box {
    background: rgba(218, 165, 32, 0.08);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(218, 165, 32, 0.15);
}

.tip-box h4 {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.quote-block {
    background: var(--charcoal);
    border-radius: 10px;
    padding: 30px 35px;
    margin: 30px 0;
    position: relative;
}

.quote-block::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: 5px;
    left: 20px;
    line-height: 1;
}

.quote-block p {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: rgba(255, 248, 240, 0.85);
    font-style: italic;
    padding-left: 30px;
}

.quote-block cite {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--gold);
    margin-top: 10px;
    padding-left: 30px;
    font-style: normal;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--burgundy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.contact-card .icon-circle svg {
    width: 26px;
    height: 26px;
    fill: var(--gold);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 12px;
}

.contact-card a {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--burgundy);
    border-bottom: 1px solid var(--burgundy);
    padding-bottom: 2px;
}

.faq-section {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.update-badge {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--warm-gray);
    letter-spacing: 0.5px;
    display: inline-block;
    margin-top: 5px;
}

.external-link::after {
    content: ' \2197';
    font-size: 0.8em;
}

.site-footer {
    background: var(--charcoal);
    color: rgba(255, 248, 240, 0.7);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .site-logo {
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 248, 240, 0.5);
}

.footer-heading {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.55);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: rgba(255, 248, 240, 0.35);
    margin: 0;
}

.footer-update {
    font-size: 0.75rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--charcoal);
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-text h5 {
    font-family: var(--font-heading);
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.6);
    margin: 0;
}

.cookie-text a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: var(--gold);
    color: var(--charcoal);
}

.cookie-accept:hover {
    background: var(--gold-light);
}

.cookie-reject {
    background: transparent;
    color: rgba(255, 248, 240, 0.7);
    border: 1px solid rgba(255, 248, 240, 0.2);
}

.cookie-reject:hover {
    border-color: rgba(255, 248, 240, 0.5);
    color: var(--cream);
}

.policy-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.6rem;
    margin: 35px 0 12px;
    color: var(--burgundy);
}

.policy-content p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 10px 0 20px 20px;
    color: #4a4a4a;
}

.policy-content li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .wide-card {
        flex-direction: column;
    }

    .wide-card .card-img-side {
        width: 100%;
        min-height: 250px;
    }

    .wide-card .card-body-side {
        width: 100%;
        padding: 30px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
        margin-top: 58px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-hero {
        margin-top: 58px;
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .section-warm, .section-dark, .section-accent, .section-burgundy {
        padding: 50px 0;
    }

    .cookie-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .quote-block {
        padding: 25px 20px;
    }

    .quote-block::before {
        font-size: 3rem;
        left: 10px;
    }

    .quote-block p {
        padding-left: 20px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}
