:root {
    --primary-sand: #D4AF7A;
    --primary-gold: #C9A86A;
    --dark-charcoal: #2C2C2C;
    --medium-gray: #5A5A5A;
    --light-gray: #F5F3EF;
    --off-white: #FDFBF7;
    --terracotta: #C17B5C;
    --deep-brown: #4A3C31;
    --accent-sage: #8B9A7C;
    --border-color: #E8E1D5;
    --shadow: rgba(0, 0, 0, 0.1);
    --overlay: rgba(44, 44, 44, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-charcoal);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-content p {
    color: var(--medium-gray);
    font-size: 14px;
    font-weight: 500;
}

.main-header {
    position: relative;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--dark-charcoal) 100%);
    min-height: 500px;
}

.main-header.article-header {
    min-height: 120px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,150 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(212,175,122,0.05)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.navigation {
    position: relative;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--off-white);
    transition: color 0.3s ease;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo:hover {
    color: var(--primary-gold);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--off-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background: var(--dark-charcoal);
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--off-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background: var(--primary-gold);
    color: var(--dark-charcoal);
}

.hero-section {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 3rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--primary-sand);
    font-style: italic;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container.narrow {
    max-width: 900px;
}

.intro-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.intro-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--off-white);
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
}

.featured-reviews {
    padding: 5rem 0;
    background: var(--light-gray);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark-charcoal);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.review-card.card-1 {
    transform: rotate(-1deg);
}

.review-card.card-2 {
    transform: translateY(20px);
}

.review-card.card-3 {
    transform: rotate(1deg);
}

.review-card:hover {
    transform: translateY(-10px) rotate(0deg) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.review-card:hover .card-image img {
    transform: scale(1.1);
}

.location-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gold);
    color: var(--dark-charcoal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.card-excerpt {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cuisine-type,
.price-range {
    padding: 6px 14px;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.read-more {
    display: inline-block;
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.read-more:hover {
    color: var(--dark-charcoal);
}

.read-more:hover::after {
    margin-left: 14px;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--deep-brown) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--off-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--off-white);
    color: var(--dark-charcoal);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.article-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-header-content {
    padding: 3rem 0 2rem;
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--dark-charcoal);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.article-header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--dark-charcoal);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    padding: 3rem 0 5rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.image-block {
    margin: 3rem 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow);
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1.5rem;
    background: var(--light-gray);
    font-size: 0.95rem;
    color: var(--medium-gray);
    font-style: italic;
    text-align: center;
}

.quote-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
    border-left: 5px solid var(--primary-gold);
    border-radius: 8px;
}

.quote-block blockquote {
    font-family: 'Crimson Text', serif;
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--dark-charcoal);
    font-style: italic;
    margin: 0;
}

.quote-block cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.info-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid var(--border-color);
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.info-box ul {
    list-style: none;
    margin: 0;
}

.info-box li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--border-color);
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box strong {
    color: var(--dark-charcoal);
}

.external-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.external-link a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.external-link a:hover {
    color: var(--dark-charcoal);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem 0;
    border-top: 2px solid var(--border-color);
}

.nav-prev,
.nav-next {
    flex: 1;
    padding: 1.2rem 2rem;
    background: var(--light-gray);
    color: var(--dark-charcoal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-prev:hover,
.nav-next:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.about-main,
.contact-main,
.policy-main {
    padding: 3rem 0;
}

.about-hero,
.contact-header,
.policy-header {
    text-align: center;
    padding: 3rem 0;
    background: var(--light-gray);
    margin-bottom: 3rem;
}

.about-hero h1,
.contact-header h1,
.policy-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    background: var(--off-white);
}

.about-section {
    padding: 4rem 0;
}

.about-section.alt-bg {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-grid.reverse {
    grid-template-columns: 0.7fr 1.3fr;
}

.section-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.section-text p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.section-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.principle-card p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.final-cta {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: var(--terracotta);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--dark-charcoal);
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.1);
}

.submit-button {
    padding: 1.2rem 3rem;
    background: var(--terracotta);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background: var(--deep-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contact-card:last-child {
    margin-bottom: 0;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail strong {
    display: block;
    color: var(--dark-charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-detail p,
.contact-detail a {
    color: var(--medium-gray);
    font-size: 1rem;
    text-decoration: none;
}

.contact-detail a:hover {
    color: var(--terracotta);
}

.contact-card ul {
    list-style: none;
    margin: 1rem 0 0 0;
}

.contact-card li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    padding-left: 1.5rem;
    position: relative;
}

.contact-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.last-updated {
    font-size: 1rem;
    color: var(--medium-gray);
    font-style: italic;
}

.policy-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 3rem 0;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-charcoal);
    margin-bottom: 1.5rem;
}

.policy-section h3,
.policy-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-brown);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section h3 {
    font-size: 1.5rem;
}

.policy-section h4 {
    font-size: 1.2rem;
}

.policy-section p {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.contact-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-box p {
    margin-bottom: 0.8rem;
}

.main-footer {
    background: var(--dark-charcoal);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-charcoal);
    padding: 2rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--primary-gold);
    color: var(--dark-charcoal);
}

.cookie-btn.accept:hover {
    background: var(--primary-sand);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--light-gray);
    border: 2px solid var(--light-gray);
}

.cookie-btn.decline:hover {
    background: var(--light-gray);
    color: var(--dark-charcoal);
}

.cookie-btn.settings {
    background: var(--terracotta);
    color: white;
}

.cookie-btn.settings:hover {
    background: var(--deep-brown);
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-charcoal);
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-charcoal);
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.cookie-description {
    display: block;
    font-weight: 400;
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark-charcoal);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        align-items: flex-start;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-dropdown .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0 1rem;
        display: none;
    }

    .nav-dropdown.active .dropdown-content {
        display: block;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-image {
        max-height: 400px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card.card-1,
    .review-card.card-2,
    .review-card.card-3 {
        transform: none;
    }

    .section-grid,
    .section-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .article-navigation {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-text h2,
    .section-text h2 {
        font-size: 1.8rem;
    }

    .article-header-content h1 {
        font-size: 1.8rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }
}