 /* --- Root Variables (Same as index.html for consistency) --- */
        :root {
            --color-primary: #722F37; /* Bordeaux profond */
            --color-secondary: #8B4513; /* Brun chocolat */
            --color-gold: #D4AF37; /* Or élégant */
            --color-cream: #FDF6E3; /* Crème champagne */
            --color-beige: #F5F1E8; /* Beige doux */
            --color-dark: #2C1810; /* Brun foncé */
            --color-text: #3A3A3A; /* Gris anthracite */
            --color-light-text: #6B6B6B; /* Gris moyen */
            --font-heading: 'Playfair Display', sans-serif;
            --font-body: 'Inter', sans-serif;
            --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
            --shadow-medium: 0 8px 25px rgba(0,0,0,0.15);
            --shadow-heavy: 0 15px 35px rgba(0,0,0,0.2);
            --gradient-wine: linear-gradient(135deg, #722F37 0%, #8B4513 100%);
            --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --wine-image-height: 280px; /* Adjust this value! */
        }

        /* --- Reset et Base --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            background-color: var(--color-cream);
            line-height: 1.7;
            overflow-x: hidden;
            padding-top: 100px; /* Adjust based on header height */
        }

        .container {
            max-width: 1200px; /* Slightly narrower for readability of text-heavy page */
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Typography --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--color-primary);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; text-align: center; margin-bottom: 60px;}
        h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-top: 40px;}
        h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; margin-top: 30px;}
        h4 { font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 600; margin-top: 25px;}
        h5 { font-size: clamp(1rem, 1.8vw, 1.4rem); font-weight: 600; margin-top: 20px;}


        p, ul, ol {
            margin-bottom: 1rem;
            color: var(--color-text);
            font-size: 1rem;
        }

        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5rem;
        }
        ul li, ol li {
            margin-bottom: 0.5rem;
        }

        a {
            text-decoration: none;
            color: var(--color-primary);
            transition: var(--transition);
        }

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

        /* --- Boutons Modernisés (copied for consistency, though not directly used on this page) --- */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            margin: 8px;
            border: 2px solid var(--color-primary);
            background: var(--gradient-wine);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            box-shadow: var(--shadow-light);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            background: var(--gradient-gold);
            border-color: var(--color-gold);
            color: var(--color-primary);
        }

        .btn-secondar {
            background: transparent;
            color: var(--color-primary);
            border-color: var(--color-primary);
        }

        .btn-secondar:hover {
            background: var(--gradient-wine);
            color: white;
        }

        /* --- Header Modernisé --- */
        header {
            background: rgba(253, 246, 227, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }

        header.scrolled {
            background: rgba(253, 246, 227, 0.98);
            box-shadow: var(--shadow-medium);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap; 
        }

        .logo {
            font-family: var(--font-heading);
            font-size: clamp(1.2rem, 2vw, 1.6rem);
            color: var(--color-primary);
            font-weight: 700;
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
        }

        .logo::after {
            content: '🍷';
            margin-left: 10px;
            font-size: 0.8em;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        nav ul li a {
            color: var(--color-text);
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            position: relative;
            transition: var(--transition);
        }

        nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-wine);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        nav ul li a:hover {
            color: var(--color-primary);
            background: rgba(212, 175, 55, 0.1);
        }

        nav ul li a:hover::before {
            width: 80%;
        }

        /* --- Main Content Styling --- */
        main {
            padding: 80px 0; /* Add padding for content below header */
        }

        .legal-section {
            background-color: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);;
            padding: 50px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            margin-top: 50px;
            margin-bottom: 60px;
        }

        .legal-section h1 {
            color: var(--color-primary);
            margin-bottom: 40px;
            text-align: center;
        }

        .legal-section h2 {
            border-bottom: 2px solid var(--color-primary);
            padding-bottom: 10px;
            margin-bottom: 25px;
        }

        .legal-section h3 {
            color: var(--color-secondary);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .legal-section p, .legal-section ul, .legal-section ol {
            color: var(--color-dark);
        }

        /* --- Footer Moderne (Same as other pages) --- */
        footer {
            background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
            color: var(--color-cream);
            padding: 60px 0 30px;
            text-align: center;
        }

        footer .social-links {
            margin-bottom: 40px;
        }

        footer .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            margin: 0 15px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        footer .social-links a:hover {
            background: var(--gradient-gold);
            transform: translateY(-3px);
        }

        .newsletter-signup {
            max-width: 500px;
            margin: 0 auto 40px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-signup input {
            flex: 1;
            min-width: 250px;
            padding: 15px;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }

        .newsletter-signup button {
            padding: 15px 30px;
            background: var(--gradient-wine);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .newsletter-signup button:hover {
            background: var(--gradient-gold);
            transform: translateY(-2px);
        }
        
        .legal-links a {
            color: var(--color-cream); /* Adjust link color for footer */
            margin: 0 10px;
            font-size: 0.9rem;
        }
        .legal-links a:hover {
            color: var(--color-gold);
        }

        .menu-toggle {
            display: none;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            body {
                padding-top: 80px;
            }
            nav {
                flex-direction: column;
                gap: 20px;
            }
            nav ul {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            .legal-section {
                padding: 30px;
            }
            .newsletter-signup {
                flex-direction: column;
            }

             body {
                padding-top: 80px;
            }
            .hero-content p{
                display: none;
            }
            .logo {
                font-size: 20px; /* ✅ Police réduite sur petits écrans */
            }
            .hero {
                height: 90vh;
                margin-top: -30px;
            }

            .surplus{
                display: none;
            }
            nav {
                flex-direction: row;
                gap: 20px;
                align-items: flex-start;
            }

            .menu-toggle {
                display: block;
                font-size: 28px;
                background: none;
                border: none;
                cursor: pointer;
                color: #333;
                margin-left: auto;
            }

            nav ul {
                display: none;
                flex-direction: column;
                text-align: center;
                gap: 15px;
                width: 100%;
                background-color: #fdf6e3;
                padding: 10px 0;
                border-radius: 8px;
            }

            nav ul.show {
                display: flex;
            }
        }