*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --wine-dark: #2c0a0a;
    --wine-deep: #5c1a1a;
    --wine-mid: #8b2e2e;
    --wine-light: #c4614a;
    --wine-accent: #d4845a;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f5f0e8;
    --cream-dark: #ede5d5;
    --text-dark: #1a1008;
    --text-mid: #3d2b1a;
    --text-light: #7a6050;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(44, 10, 10, 0.08);
    --shadow-md: 0 4px 20px rgba(44, 10, 10, 0.12);
    --shadow-lg: 0 8px 40px rgba(44, 10, 10, 0.18);
    --radius: 4px;
    --radius-md: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--wine-mid);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--wine-light);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--wine-deep);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--wine-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(201, 168, 76, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--wine-dark);
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-grape {
    font-size: 22px;
    color: var(--gold);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--cream);
}

.logo-text strong {
    color: var(--gold);
    font-weight: 700;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
    transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-dark);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▾";
    font-size: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--wine-dark);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    min-width: 240px;
    list-style: none;
    box-shadow: var(--shadow-lg);
    z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--cream-dark);
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-deep) 50%, var(--wine-mid) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(44,10,10,0.7) 0%, rgba(44,10,10,0.2) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-text {
    max-width: 620px;
}

.hero-tag {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--wine-dark);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--gold-light);
    color: var(--wine-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-section {
    padding: 80px 0;
    background: var(--white);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.image-credit {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 6px;
    font-style: italic;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--wine-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 16px;
}

.articles-section {
    padding: 80px 0;
    background: var(--cream);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--wine-dark);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
}

.articles-secondary {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.article-featured .article-image img {
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
}

.article-card:not(.article-featured) {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.article-card:not(.article-featured) .article-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image .image-credit {
    position: absolute;
    bottom: 6px;
    right: 8px;
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.8);
    padding: 2px 6px;
    border-radius: 2px;
    margin: 0;
}

.article-content {
    padding: 24px;
}

.article-tag {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wine-mid);
    border: 1px solid var(--wine-mid);
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--wine-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-content p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.6;
}

.article-link {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wine-mid);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    transition: var(--transition);
}

.article-link:hover {
    color: var(--gold);
}

.facts-section {
    padding: 80px 0;
    background: var(--wine-dark);
}

.facts-section .section-title {
    color: var(--cream);
}

.facts-section .section-title::after {
    background: var(--gold);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.fact-item {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.fact-item:hover {
    border-color: var(--gold);
}

.fact-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1;
}

.fact-item p {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.5;
}

.highlight-section {
    padding: 80px 0;
    background: var(--cream-dark);
}

.highlight-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--wine-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 16px;
}

.text-link {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wine-mid);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.text-link:hover {
    color: var(--gold);
}

.highlight-image {
    position: relative;
}

.highlight-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.article-page {
    padding-bottom: 80px;
}

.article-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.article-hero-image {
    position: relative;
    overflow: hidden;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-image .image-credit {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.8);
    padding: 2px 8px;
    border-radius: 2px;
    margin: 0;
    font-size: 11px;
}

.article-hero-text {
    background: var(--wine-dark);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    line-height: 1.25;
    margin: 16px 0 24px;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(245, 240, 232, 0.6);
}

.article-body {
    max-width: 760px;
    margin: 60px auto 0;
}

.article-intro {
    font-size: 18px;
    color: var(--text-mid);
    border-left: 4px solid var(--gold);
    padding-left: 24px;
    margin-bottom: 40px;
    font-style: italic;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--wine-dark);
    margin: 48px 0 16px;
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--wine-deep);
    margin: 32px 0 12px;
}

.article-body p {
    color: var(--text-mid);
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
}

.article-body strong {
    color: var(--wine-dark);
    font-weight: 600;
}

.article-body a {
    color: var(--wine-mid);
    border-bottom: 1px solid var(--gold);
}

.article-body a:hover {
    color: var(--gold);
}

.area-image {
    margin: 40px 0;
    position: relative;
}

.area-image img {
    border-radius: var(--radius-md);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/7;
    box-shadow: var(--shadow-md);
}

.area-image .image-credit {
    margin-top: 6px;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--cream-dark);
}

.article-nav-link {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wine-mid);
    padding: 12px 20px;
    border: 2px solid var(--wine-mid);
    border-radius: var(--radius);
    transition: var(--transition);
}

.article-nav-link:hover {
    background: var(--wine-mid);
    color: var(--white);
}

.article-nav-prev {
    margin-right: auto;
}

.page-hero {
    background: var(--wine-dark);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: rgba(245, 240, 232, 0.7);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--wine-dark);
    margin: 0 0 16px;
}

.about-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 16px;
}

.values-section {
    padding: 80px 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-item {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--wine-dark);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.contact-block {
    background: var(--cream);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 32px;
    color: var(--wine-mid);
    margin-bottom: 16px;
}

.contact-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--wine-dark);
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--wine-mid);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    word-break: break-all;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-note {
    background: var(--cream-dark);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
}

.contact-note p {
    font-size: 15px;
    color: var(--text-mid);
}

.policy-section {
    padding: 80px 0;
    background: var(--white);
}

.policy-content {
    max-width: 760px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--wine-dark);
    margin: 40px 0 12px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-mid);
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
}

.policy-content a {
    color: var(--wine-mid);
    border-bottom: 1px solid var(--gold);
}

.policy-content a:hover {
    color: var(--gold);
}

.site-footer {
    background: var(--wine-dark);
    color: var(--cream-dark);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.65);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col p {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wine-dark);
    border-top: 2px solid var(--gold);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.85);
    flex: 1;
    min-width: 200px;
}

.cookie-content p a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--gold);
    color: var(--wine-dark);
}

.cookie-btn.accept:hover {
    background: var(--gold-light);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--cream-dark);
    border: 1px solid rgba(245, 240, 232, 0.3);
}

.cookie-btn.reject:hover {
    border-color: var(--cream-dark);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.cookie-btn.settings:hover {
    background: rgba(201, 168, 76, 0.1);
}

.cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 10, 10, 0.7);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.cookie-modal.open {
    display: flex;
}

.modal-inner {
    background: var(--wine-dark);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 36px;
    max-width: 480px;
    width: 90%;
}

.modal-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 24px;
}

.cookie-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--cream);
    cursor: pointer;
    margin-bottom: 6px;
}

.cookie-option p {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.6);
    padding-left: 26px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .article-card:not(.article-featured) {
        grid-template-columns: 160px 1fr;
    }
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-layout,
    .highlight-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-image img,
    .about-image img {
        aspect-ratio: 16/9;
    }
    .article-hero {
        grid-template-columns: 1fr;
    }
    .article-hero-image {
        height: 300px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--wine-dark);
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        z-index: 99;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        min-width: auto;
    }
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        padding: 10px 16px 10px 32px;
    }
    .hero {
        min-height: 420px;
    }
    .hero-inner {
        padding: 60px 24px;
    }
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .article-card:not(.article-featured) {
        grid-template-columns: 1fr;
    }
    .article-card:not(.article-featured) .article-image img {
        height: 200px;
    }
    .article-hero-text {
        padding: 40px 24px;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }
    .article-hero-image {
        height: 220px;
    }
    .modal-buttons {
        flex-direction: column;
    }
}
