/* ========================================
   LA CHÂTELAINE - ULTRA SOUL PREMIUM CSS
   ======================================== */

:root {
    /* Colors */
    --white: #ffffff;
    --cream: #fdfbf7;
    --cream-dark: #f8f6f1;
    --beige: #e8e4dc;
    --burgundy: #6b1a28;
    --burgundy-dark: #4a1219;
    --burgundy-light: rgba(107, 26, 40, 0.1);
    --black: #1a1a1a;
    --grey-dark: #3a3a3a;
    --grey: #666666;
    --grey-light: #999999;
    
    /* Typography */
    --font-title: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --font-chinese: 'Noto Sans SC', sans-serif;
    
    /* Spacing */
    --section-padding: 160px;
    --container-width: 1400px;
    
    /* Effects */
    --transition-smooth: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--grey-dark);
    background: var(--cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(60px);
    transition: var(--transition-smooth);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 40px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 25px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
    transition: var(--transition-fast);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo {
    color: var(--burgundy-dark);
    text-shadow: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    transition: var(--transition-fast);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link {
    color: var(--grey-dark);
    text-shadow: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.navbar.scrolled .lang-btn {
    border-color: rgba(107, 26, 40, 0.3);
    color: var(--grey-dark);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
}

/* ========== HERO WITH ADVANCED PARALLAX ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?q=80&w=2400') center/cover;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(107, 26, 40, 0.5) 100%);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    opacity: 0;
    animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(70px, 10vw, 130px);
    font-weight: 600;
    letter-spacing: 18px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.scroll-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, var(--white), transparent);
    opacity: 0.6;
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scaleY(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scaleY(1.3);
    }
}

/* ========== INTRO SOUL ========== */
.intro-soul {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.intro-soul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--burgundy-light), transparent);
}

.soul-content {
    text-align: center;
}

.lead {
    font-size: 24px;
    line-height: 1.9;
    font-weight: 300;
    font-style: italic;
    color: var(--grey-dark);
    max-width: 900px;
    margin: 0 auto;
}

/* ========== SECTION LABELS & TITLES ========== */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 25px;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--burgundy);
}

.section-label.light {
    color: var(--white);
}

.section-label.light::after {
    background: var(--white);
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--burgundy-dark);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.section-title.light {
    color: var(--white);
}

/* ========== NOTRE MAISON ========== */
.notre-maison {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.maison-text {
    margin-top: 40px;
}

.maison-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--grey-dark);
    margin-bottom: 25px;
}

.maison-text p:last-child {
    margin-bottom: 0;
}

/* ========== HERITAGE SPLIT DESIGN ========== */
.heritage {
    position: relative;
    overflow: hidden;
}

.heritage-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 900px;
}

.heritage-image {
    position: relative;
    background: url('https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?q=80&w=1400') center/cover;
    overflow: hidden;
}

.heritage-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 26, 40, 0.4), rgba(26, 26, 26, 0.3));
    mix-blend-mode: multiply;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.2);
    opacity: 0;
    transition: var(--transition-smooth);
}

.heritage-image:hover .image-overlay {
    opacity: 1;
}

.heritage-content {
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    padding: 100px 80px;
}

.content-inner {
    max-width: 600px;
}

.text-flow p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--grey-dark);
    margin-bottom: 30px;
}

.heritage-quote {
    margin: 60px 0 0 0;
    padding: 40px;
    background: var(--white);
    border-left: 3px solid var(--burgundy);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    position: relative;
}

.heritage-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: -20px;
    font-family: var(--font-title);
    font-size: 120px;
    color: var(--burgundy);
    opacity: 0.1;
}

.heritage-quote p {
    font-family: var(--font-title);
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--burgundy-dark);
    margin: 0;
}

/* ========== PHILOSOPHY ========== */
.philosophy {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1474979266404-7eaacbcd87c5?q=80&w=2400') center/cover;
    background-attachment: fixed;
    filter: brightness(0.4) contrast(1.1);
}

.philosophy-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 26, 40, 0.8), rgba(26, 26, 26, 0.7));
}

.philosophy-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-title {
    font-family: var(--font-title);
    font-size: clamp(45px, 6vw, 72px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.philosophy-text {
    font-size: 22px;
    line-height: 1.9;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

/* ========== CARTE INTERACTIVE - MODERNE ========== */
/* ========== CARTE DE BOURGOGNE ========== */
.carte-bourgogne-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%);
}

.carte-header {
    text-align: center;
    margin-bottom: 80px;
}

.carte-interactive-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Carte Visuelle */
.carte-visual {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.carte-title {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    text-align: center;
    color: var(--burgundy);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--burgundy-light);
}

.regions-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.region-zone {
    position: relative;
    padding: 30px 25px;
    border-radius: 4px;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.region-zone.disabled {
    background: var(--cream);
    border-color: var(--beige);
    opacity: 0.5;
}

.region-zone.active {
    background: linear-gradient(135deg, rgba(107, 26, 40, 0.05) 0%, rgba(107, 26, 40, 0.08) 100%);
    border-color: var(--burgundy);
    padding: 40px 30px;
}

.region-name {
    display: block;
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--grey);
    text-align: center;
}

.region-zone.active .region-name {
    color: var(--burgundy-dark);
    font-size: 20px;
    margin-bottom: 25px;
}

.appellation-markers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.appellation-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--white);
    border: 2px solid var(--beige);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
    text-align: left;
}

.appellation-point:hover {
    border-color: var(--burgundy);
    background: var(--cream);
    transform: translateX(5px);
}

.appellation-point.active {
    border-color: var(--burgundy);
    background: var(--burgundy);
    box-shadow: 0 8px 25px rgba(107, 26, 40, 0.25);
}

.point-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--burgundy);
    position: relative;
    flex-shrink: 0;
}

.appellation-point.active .point-dot {
    background: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.point-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--grey-dark);
}

.appellation-point.active .point-label {
    color: var(--white);
}

/* Info Panel */
.carte-info-panel {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--burgundy);
    min-height: 600px;
}

.appellation-info {
    display: none;
    animation: fadeInPanel 0.5s ease-out;
}

.appellation-info.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.appellation-info h3 {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--burgundy-dark);
    margin-bottom: 15px;
}

.appellation-type {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 30px;
}

.appellation-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--grey-dark);
    margin-bottom: 50px;
}

.appellation-vins {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vin-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--cream);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.vin-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(107, 26, 40, 0.12);
}

.vin-card img {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin: 0 auto 20px;
    transition: var(--transition-fast);
}

.vin-card:hover img {
    transform: scale(1.08);
}

.vin-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--grey-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.vin-card .vintage {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--grey);
    letter-spacing: 1px;
}

/* ========== WHERE TO FIND US ========== */
.location-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.location-header {
    text-align: center;
    margin-bottom: 80px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: var(--cream);
    padding: 50px 45px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
}

.location-card.usa {
    border-top-color: #3c3b6e;
}

.location-card.france {
    border-top-color: #002395;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.location-flag {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(107, 26, 40, 0.15);
}

.flag-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.location-flag h3 {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--burgundy-dark);
}

.location-details h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 15px;
}

.company-name {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--burgundy-dark);
    margin-bottom: 25px;
}

.location-address {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-dark);
    margin-bottom: 25px;
}

.location-note {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey);
    font-style: italic;
    padding: 20px;
    background: var(--white);
    border-left: 3px solid var(--burgundy);
    border-radius: 0 4px 4px 0;
    margin-top: 30px;
}

.france-locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.sub-location {
    padding: 20px;
    background: var(--white);
    border-radius: 4px;
    border-left: 3px solid var(--burgundy-light);
}

.location-city {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 600;
    color: var(--burgundy-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.sub-location .location-address {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--grey);
}

}

/* ========== TERROIR IMMERSIVE ========== */
.terroir {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.terroir-header {
    text-align: center;
    margin-bottom: 120px;
}

.terroir-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.terroir-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 100px;
    align-items: center;
}

.terroir-item.reverse {
    direction: rtl;
}

.terroir-item.reverse > * {
    direction: ltr;
}

.terroir-item-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.terroir-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 26, 40, 0.2), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.terroir-item:hover .terroir-item-image::after {
    opacity: 1;
}

.terroir-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.terroir-item:hover .terroir-item-image img {
    transform: scale(1.08);
}

.terroir-item-content {
    padding: 80px;
    background: var(--cream);
}

.terroir-item-content h3 {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 600;
    color: var(--burgundy-dark);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.terroir-item-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--grey-dark);
}

/* ========== VINS COLLECTION ========== */
.vins {
    padding: var(--section-padding) 0;
    background: var(--cream-dark);
}

.vins-header {
    text-align: center;
    margin-bottom: 120px;
}

.vins-collection {
    max-width: 1300px;
    margin: 0 auto;
}

.wine-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--white);
    margin-bottom: 80px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.wine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 90px rgba(107, 26, 40, 0.15);
}

.wine-card:nth-child(even) {
    direction: rtl;
}

.wine-card:nth-child(even) > * {
    direction: ltr;
}

.wine-visual {
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 500px;
}

.wine-visual::before {
    display: none;
}

.wine-bottle {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wine-card:hover .wine-bottle {
    transform: scale(1.05);
}

.wine-bottle img {
    max-width: 450px;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.wine-details {
    padding: 70px 60px;
}

.wine-header {
    margin-bottom: 15px;
}

.wine-name {
    font-family: var(--font-title);
    font-size: 38px;
    font-weight: 600;
    color: var(--burgundy-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.wine-year {
    font-size: 24px;
    font-weight: 600;
    color: var(--burgundy);
}

.wine-type {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 35px;
}

.wine-soul {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--burgundy-light);
    border-left: 3px solid var(--burgundy);
}

.wine-soul p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    color: var(--grey-dark);
    margin: 0;
}

.wine-tasting {
    margin-bottom: 40px;
}

.wine-tasting h4 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burgundy-dark);
    margin-bottom: 20px;
}

.wine-tasting p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--grey-dark);
}

.wine-info {
    padding-top: 30px;
    border-top: 1px solid rgba(107, 26, 40, 0.15);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(107, 26, 40, 0.08);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--burgundy);
}

.info-value {
    font-size: 14px;
    color: var(--grey-dark);
    text-align: right;
    max-width: 60%;
}

/* ========== CONTACT ========== */
.contact {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?q=80&w=2400') center/cover;
    background-attachment: fixed;
    filter: brightness(0.35) contrast(1.1);
}

.contact-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(107, 26, 40, 0.7));
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 80px;
}

.contact-text {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 30px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 70px 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.btn-submit {
    width: 100%;
    padding: 22px;
    background: var(--burgundy);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(107, 26, 40, 0.3);
}

.btn-submit:hover {
    background: var(--burgundy-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(107, 26, 40, 0.5);
}

/* ========== FOOTER ========== */
.footer {
    padding: 100px 0 50px;
    background: var(--black);
    text-align: center;
    color: var(--white);
}

.footer-brand {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 15px;
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 40px;
}

.footer-legal {
    font-size: 12px;
    opacity: 0.5;
    line-height: 1.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 120px;
    }
    
    .heritage-split,
    .terroir-item,
    .wine-card {
        grid-template-columns: 1fr;
    }
    
    .carte-interactive-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .carte-visual {
        position: static;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .terroir-item.reverse,
    .wine-card:nth-child(even) {
        direction: ltr;
    }
    
    .terroir-item-image {
        height: 400px;
    }
    
    .terroir-item-content,
    .heritage-content {
        padding: 60px 50px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 40px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 35px;
    }
    
    .nav-link {
        color: var(--grey-dark);
        font-size: 20px;
        text-shadow: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
    }
    
    .hamburger span {
        width: 28px;
        height: 2px;
        background: var(--white);
        transition: var(--transition-fast);
    }
    
    .navbar.scrolled .hamburger span {
        background: var(--burgundy-dark);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .container,
    .container-narrow,
    .nav-container {
        padding: 0 30px;
    }
    
    .hero {
        min-height: 700px;
    }
    
    .carte-visual {
        padding: 40px 30px;
    }
    
    .carte-info-panel {
        padding: 40px 30px;
    }
    
    .appellation-vins {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 40px 30px;
    }
    
    .wine-details {
        padding: 50px 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 50px 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 8px;
    }
    
    .wine-visual {
        padding: 50px 30px;
    }
    
    .wine-bottle img {
        max-height: 380px;
    }
}