:root {
    --color-wine: #722F37;
    --color-wine-dark: #4A1C22;
    --color-wine-light: #9B4D56;
    --color-gold: #C9A962;
    --color-gold-light: #E5D4A1;
    --color-cream: #FDF8F3;
    --color-beige: #F5EDE4;
    --color-brown: #5D4037;
    --color-brown-light: #8D6E63;
    --color-text: #2C2C2C;
    --color-text-light: #5A5A5A;
    --color-white: #FFFFFF;
    --color-overlay: rgba(44, 44, 44, 0.7);
    
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    
    --transition: 0.3s ease;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-wine-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p { margin-bottom: 1rem; }

a {
    color: var(--color-wine);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.wine-glass {
    width: 40px;
    height: 60px;
    border: 3px solid var(--color-wine);
    border-radius: 0 0 50% 50%;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
}

.wine-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(180deg, var(--color-wine-light), var(--color-wine));
    animation: fillWine 1.5s ease-in-out infinite;
}

@keyframes fillWine {
    0%, 100% { height: 20%; }
    50% { height: 70%; }
}

.loader-content p {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--color-wine);
    font-style: italic;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--color-wine-dark) 0%, var(--color-wine) 100%);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.main-nav {
    display: none;
}

@media (min-width: 992px) {
    .main-nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--color-cream);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

@media (min-width: 992px) {
    .burger-menu {
        display: none;
    }
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--color-wine-dark);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 0;
    color: var(--color-cream);
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-nav-list a:hover {
    color: var(--color-gold);
    padding-left: 1rem;
}

.main-content {
    padding-top: 80px;
    min-height: calc(100vh - 300px);
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-wine-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(74, 28, 34, 0.6) 0%, rgba(114, 47, 55, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-gold-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-description {
    color: var(--color-cream);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-wine-dark);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-wine-dark);
}

.section {
    padding: 5rem 2rem;
}

.section-dark {
    background: linear-gradient(135deg, var(--color-wine-dark) 0%, var(--color-wine) 100%);
    color: var(--color-cream);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-gold);
}

.section-beige {
    background: var(--color-beige);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: var(--color-cream);
    opacity: 0.9;
}

.decorative-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-wine));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-dark .decorative-line {
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-wine-light), var(--color-wine));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--color-white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.cards-layout {
    display: grid;
    gap: 3rem;
}

.card-horizontal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .card-horizontal {
        grid-template-columns: 1fr 1fr;
    }
    
    .card-horizontal:nth-child(even) .card-image {
        order: 2;
    }
}

.card-image {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.2), transparent);
}

.card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    margin-bottom: 1rem;
}

.card-content p {
    margin-bottom: 1.5rem;
}

.card-content .btn {
    align-self: flex-start;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-wine);
    color: var(--color-white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-body {
    padding: 1.5rem;
}

.article-body h4 {
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.article-card:hover .article-body h4 {
    color: var(--color-wine);
}

.article-body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.page-header {
    background: linear-gradient(135deg, var(--color-wine-dark) 0%, var(--color-wine) 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--color-gold-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 2rem;
}

.breadcrumb a,
.breadcrumb span {
    color: var(--color-cream);
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

.article-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-content h2 {
    margin: 2.5rem 0 1rem;
}

.article-content h3 {
    margin: 2rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.info-box {
    background: var(--color-beige);
    border-left: 4px solid var(--color-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.info-box h4 {
    margin-bottom: 0.75rem;
    color: var(--color-wine);
}

.image-feature {
    margin: 2.5rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-feature img {
    width: 100%;
    height: auto;
}

.image-feature figcaption {
    background: var(--color-beige);
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
    text-align: center;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-wine-dark);
}

.contact-card h4 {
    margin-bottom: 0.75rem;
    color: var(--color-wine-dark);
}

.contact-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--color-wine);
    font-weight: 600;
    word-break: break-word;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--color-beige);
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-wine-dark);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
}

.site-footer {
    background: var(--color-wine-dark);
    color: var(--color-cream);
}

.footer-top {
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: var(--color-cream);
    opacity: 0.85;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section ul a:hover {
    color: var(--color-gold);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
    font-style: italic;
    font-size: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-wine-dark);
    color: var(--color-cream);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text h4 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--color-gold);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--color-gold);
    color: var(--color-wine-dark);
}

.cookie-accept:hover {
    background: var(--color-gold-light);
}

.cookie-reject {
    background: transparent;
    border: 2px solid var(--color-cream);
    color: var(--color-cream);
}

.cookie-reject:hover {
    background: var(--color-cream);
    color: var(--color-wine-dark);
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .mobile-nav {
        top: 70px;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .footer-container {
        text-align: center;
    }
}

.policy-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.policy-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-beige);
}

.policy-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.policy-content p,
.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}
