/**
 * ==========================================================
 * Maison Monéger — Style Principal
 * ==========================================================
 * 
 * Table des matières :
 * 1.  Variables & Reset
 * 2.  Typographie
 * 3.  Layout & Utilitaires
 * 4.  Header & Navigation
 * 5.  Menu Mobile
 * 6.  Hero Section
 * 7.  Sections alternées (Light / Force / Impact)
 * 8.  Section Histoire & Timeline
 * 9.  Section Produits (Aperçu accueil)
 * 10. Section Cocktails (Teaser accueil)
 * 11. Page Produits
 * 12. Page Cocktails
 * 13. Page Contact
 * 14. Ticker Band
 * 15. Footer
 * 16. Boutons
 * 17. Animations & Reveal
 * 18. Responsive
 */


/* ==========================================================
   1. VARIABLES & RESET
   ========================================================== */

:root {
    /* Couleurs */
    --bleu-marine: #002b53;
    --jaune-vif: #ffd400;
    --creme: #efe6db;
    --overlay: rgba(239, 230, 219, 0.4);
    --blanc: #ffffff;
    --noir: #111111;

    /* Typographie */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    /* Espacements */
    --section-padding: 120px 0;
    --section-padding-mobile: 80px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;

    /* Header */
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--bleu-marine);
    background-color: var(--creme);
    overflow-x: hidden;
}


/* ==========================================================
   AGE GATE POPUP
   ========================================================== */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: var(--bleu-marine);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-gate-content {
    text-align: center;
    padding: 48px;
}

.age-gate-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--creme);
    margin-bottom: 48px;
    line-height: 1.2;
}

.age-gate-btn {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--creme);
    background: transparent;
    border: 2px solid var(--creme);
    padding: 18px 48px;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, color 0.3s ease;
}

.age-gate-btn:hover {
    background: var(--creme);
    color: var(--bleu-marine);
}


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

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

ul, ol {
    list-style: none;
}


/* ==========================================================
   2. TYPOGRAPHIE
   ========================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    max-width: 680px;
}


/* ==========================================================
   3. LAYOUT & UTILITAIRES
   ========================================================== */

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

.section-title {
    margin-bottom: 24px;
}

.section-intro {
    margin-bottom: 60px;
    opacity: 0.85;
}


/* ==========================================================
   4. HEADER & NAVIGATION
   ========================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: var(--bleu-marine);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 32px;
}

.nav-left a,
.nav-right a {
    color: var(--creme);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--jaune-vif);
    transition: var(--transition);
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

/* Logo central */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 48px;
    text-decoration: none;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.logo-svg .logo-border {
    fill: #efe6db;
}

.logo-svg .logo-letter {
    fill: var(--bleu-marine);
}

/* Sélecteur de langue */
.lang-switch {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--jaune-vif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: 1px solid var(--jaune-vif);
    padding: 4px 12px;
    border-radius: 2px;
}

.lang-switch:hover {
    background: var(--jaune-vif);
    color: var(--bleu-marine);
}


/* ==========================================================
   5. MENU MOBILE (Burger)
   ========================================================== */

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010;
    padding: 8px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--creme);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bleu-marine);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    color: var(--creme);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mobile-nav a:hover {
    color: var(--jaune-vif);
}

.mobile-lang-switch {
    margin-top: 24px;
    font-size: 0.9rem !important;
    font-family: var(--font-body) !important;
    border: 1px solid var(--jaune-vif);
    padding: 8px 24px;
    color: var(--jaune-vif) !important;
}


/* ==========================================================
   6. HERO SECTION
   ========================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            var(--bleu-marine) 0%,
            #003d6b 50%,
            var(--bleu-marine) 100%
        );
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 60px) scale(1.2); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
    opacity: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-subtitle {
    color: var(--jaune-vif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    color: var(--creme);
    margin-bottom: 40px;
    max-width: 800px;
}

/* Decorative line under hero title */
.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--jaune-vif);
    margin: 32px auto 0;
}


/* ==========================================================
   7. SECTIONS ALTERNÉES
   ========================================================== */

/* Section "lumière" — fond crème */
.section-light {
    background-color: var(--creme);
    color: var(--bleu-marine);
    padding: var(--section-padding);
}

/* Section "force" — fond bleu marine */
.section-force {
    background-color: var(--bleu-marine);
    color: var(--creme);
    padding: var(--section-padding);
}

.section-force .section-title {
    color: var(--creme);
}

.section-force .section-intro {
    color: var(--creme);
    opacity: 0.75;
}

/* Section "impact" — fond jaune */
.section-impact {
    background-color: var(--jaune-vif);
    color: var(--bleu-marine);
    padding: var(--section-padding);
}

.section-impact .section-title {
    color: var(--bleu-marine);
}


/* ==========================================================
   8. SECTION HISTOIRE & TIMELINE
   ========================================================== */

.section-histoire {
    text-align: center;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Ligne verticale de fond (statique) */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: var(--line-top, 50%);
    bottom: var(--line-bottom, 50%);
    width: 2px;
    background: var(--creme);
    opacity: 0.15;
    transform: translateX(-50%);
}

/* Ligne de progression (dynamique via JS) */
.timeline-progress {
    position: absolute;
    left: 50%;
    top: var(--line-top, 50%);
    width: 2px;
    height: 0;
    max-height: calc(100% - var(--line-top, 50%) - var(--line-bottom, 50%));
    background: linear-gradient(to bottom, var(--jaune-vif), var(--creme));
    transform: translateX(-50%);
    z-index: 1;
    will-change: height;
}

/* Item timeline — grille 3 colonnes */
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
}

/* Colonnes gauche / droite */
.timeline-left,
.timeline-right {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-left {
    text-align: right;
    transform: translateX(-50px);
}

.timeline-right {
    text-align: left;
    transform: translateX(50px);
}

.timeline-item.visible .timeline-left {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item.visible .timeline-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.15s;
}

/* Point central */
.timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--jaune-vif);
    border: 3px solid var(--creme);
    border-radius: 50%;
    z-index: 2;
    justify-self: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
    transition-delay: 0.3s;
}

.timeline-item.visible .timeline-dot {
    opacity: 1;
    transform: scale(1);
}

.timeline-item.visible:hover .timeline-dot {
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.25);
}

/* Année */
.timeline-year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--creme);
    line-height: 1;
    white-space: nowrap;
    opacity: 0.9;
    display: block;
    margin-bottom: 12px;
}

/* Texte */
.timeline-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Image placeholder */
.timeline-img {
    overflow: hidden;
    border-radius: 6px;
}

.timeline-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.05);
}


/* ==========================================================
   9. SECTION PRODUITS (Aperçu Accueil)
   ========================================================== */

.section-produits-preview {
    text-align: center;
    background-color: #ddd2c7;
}

.section-produits-preview .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid .product-card {
    width: 24%;
}

.product-card {
    text-align: center;
}

.product-card-image {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    justify-content: center;
}

.product-card-image img {
    width: 80%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-transform: none;
}

.product-card-price {
    color: var(--bleu-marine);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

/* Placeholders produits (à remplacer par les vraies images) */
.product-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-rouge {
    background: linear-gradient(145deg, #8b1a1a 0%, #5c0000 50%, #3d0000 100%);
}

.product-jaune {
    background: linear-gradient(145deg, #c9a800 0%, #9e8400 50%, #6b5a00 100%);
}


/* ==========================================================
   9b. SECTION HERITAGE (Accueil — Image pleine + texte)
   ========================================================== */

.section-heritage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.heritage-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.heritage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.heritage-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}

.heritage-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--blanc);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.heritage-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--creme);
    opacity: 0.9;
}

.heritage-cta {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jaune-vif);
    text-decoration: none;
    transition: var(--transition);
}

.heritage-cta:hover {
    opacity: 0.75;
    transform: translateX(6px);
}


/* ==========================================================
   10. SECTION COCKTAILS (Teaser Accueil) — Split layout
   ========================================================== */

.section-cocktails-preview {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cocktails-split {
    display: flex;
    flex-direction: row;
    min-height: 600px;
}

/* — Côté texte (gauche) — */
.cocktails-split-text {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 120px 64px;
    background-color: var(--creme);
}

.cocktails-split-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bleu-marine);
    opacity: 0.6;
}

.cocktails-split-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--bleu-marine);
    text-transform: uppercase;
}

.cocktails-split-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--bleu-marine);
    opacity: 0.8;
    max-width: 480px;
}

/* — Côté vidéo (droite) — */
.cocktails-split-video {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 600px;
}

.cocktails-split-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 177.78vh; /* 16:9 ratio */
    height: 56.25vw; /* 16:9 ratio */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}


/* ==========================================================
   11. PAGE PRODUITS
   ========================================================== */

.page-header {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    text-align: center;
}

.page-title {
    margin-bottom: 16px;
}

.page-intro {
    margin: 0 auto;
    opacity: 0.75;
}

.product-detail {
    padding: var(--section-padding);
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-row-reverse {
    direction: rtl;
}

.product-row-reverse > * {
    direction: ltr;
}

.product-placeholder-lg {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    max-width: 450px;
}

.product-img-lg {
    width: 45%;
    height: auto;
    display: block;
}

.product-img-livre {
    width: 70%;
}

.product-livre {
    background: linear-gradient(145deg, var(--bleu-marine) 0%, #003d6b 50%, #001a33 100%);
}

.product-volume {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    opacity: 0.6;
    display: block;
    margin-bottom: 12px;
}

.product-name {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.product-desc {
    margin-bottom: 28px;
    opacity: 0.8;
    line-height: 1.8;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.section-force .product-price {
    color: var(--jaune-vif);
}

.section-light .product-price {
    color: var(--bleu-marine);
}

.product-image {
    display: flex;
    justify-content: center;
}


/* ==========================================================
   12. PAGE COCKTAILS
   ========================================================== */

/* --- Cocktail Slider (carousel style JD) --- */
.cocktail-slider-section {
    padding: 0 0 40px;
    overflow: hidden;
}

/* Titre de section (Rouge / Jaune) */
.cocktail-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    padding-top: 60px;
}

.section-force .cocktail-section-heading {
    color: var(--creme);
}

.section-light .cocktail-section-heading {
    color: var(--bleu-marine);
}

.cocktail-slider {
    position: relative;
    width: 100%;
}

.cocktail-slider-track {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 60px 48px 60px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.cocktail-slider-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

.cocktail-slide {
    flex: 0 0 400px;
    min-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(239, 230, 219, 0.05);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.5;
    transform: scale(0.82);
}

.cocktail-slide.is-active {
    opacity: 1;
    transform: scale(1.08);
}

.cocktail-slide-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cocktail-slide-img .cocktail-slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        145deg,
        rgba(255, 212, 0, 0.25) 0%,
        rgba(0, 43, 83, 0.35) 50%,
        rgba(139, 26, 26, 0.25) 100%
    );
}

.cocktail-slide-placeholder--rouge {
    background: linear-gradient(
        145deg,
        rgba(139, 26, 26, 0.35) 0%,
        rgba(0, 43, 83, 0.3) 50%,
        rgba(255, 212, 0, 0.15) 100%
    ) !important;
}

.cocktail-slide-placeholder--jaune {
    background: linear-gradient(
        145deg,
        rgba(255, 212, 0, 0.35) 0%,
        rgba(0, 43, 83, 0.2) 50%,
        rgba(239, 230, 219, 0.2) 100%
    ) !important;
}

.cocktail-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cocktail-slide.is-active .cocktail-slide-img img {
    transform: scale(1.03);
}

.cocktail-slide-content {
    padding: 24px;
}

.cocktail-slide-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--creme);
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.2;
}

.cocktail-slide-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--creme);
    opacity: 0;
    margin-bottom: 12px;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cocktail-slide.is-active .cocktail-slide-subtitle {
    opacity: 0.6;
    visibility: visible;
}

.cocktail-slide.is-active .cocktail-slide-name {
    font-size: 1.6rem;
}

/* Variante Jaune (section-light) */
.cocktail-slide--jaune .cocktail-slide-name {
    color: var(--bleu-marine);
}

.cocktail-slide--jaune .cocktail-slide-subtitle {
    color: var(--bleu-marine);
}

.cocktail-slide--jaune .cocktail-slide-cta {
    color: var(--bleu-marine);
}

.cocktail-slide--jaune .cocktail-slide-cta:hover {
    color: var(--jaune-vif);
}

.section-light .cocktail-slider-arrow {
    border-color: rgba(0, 43, 83, 0.3);
    color: var(--bleu-marine);
}

.section-light .cocktail-slider-arrow:hover {
    border-color: var(--bleu-marine);
    color: var(--bleu-marine);
}

.cocktail-slide-cta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--creme);
    opacity: 0;
    text-decoration: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    visibility: hidden;
}

.cocktail-slide.is-active .cocktail-slide-cta {
    opacity: 0.6;
    visibility: visible;
}

.cocktail-slide-cta:hover {
    opacity: 1;
    color: var(--jaune-vif);
}

/* Flèches navigation slider */
.cocktail-slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding: 0 48px;
}

.cocktail-slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(239, 230, 219, 0.3);
    background: transparent;
    color: var(--creme);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cocktail-slider-arrow:hover {
    border-color: var(--jaune-vif);
    color: var(--jaune-vif);
}

/* --- Détails recettes --- */
.cocktail-detail {
    padding: var(--section-padding);
}

.cocktail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cocktail-row-reverse {
    direction: rtl;
}

.cocktail-row-reverse > * {
    direction: ltr;
}

.cocktail-image {
    display: flex;
    justify-content: center;
}

.cocktail-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background: linear-gradient(
        145deg,
        rgba(255, 212, 0, 0.2) 0%,
        rgba(0, 43, 83, 0.3) 50%,
        rgba(139, 26, 26, 0.2) 100%
    );
    max-width: 500px;
}

.section-force .cocktail-placeholder {
    background: linear-gradient(
        145deg,
        rgba(239, 230, 219, 0.15) 0%,
        rgba(255, 212, 0, 0.1) 50%,
        rgba(239, 230, 219, 0.08) 100%
    );
}

.cocktail-name {
    font-family: var(--font-heading);
    margin-bottom: 32px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.cocktail-recipe h3 {
    margin-bottom: 12px;
    font-size: 0.85rem;
    opacity: 0.6;
}

.section-force .cocktail-recipe h3 {
    color: var(--jaune-vif);
    opacity: 1;
}

.cocktail-ingredients {
    margin-bottom: 28px;
}

.cocktail-ingredients li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 43, 83, 0.08);
    font-size: 0.95rem;
}

.section-force .cocktail-ingredients li {
    border-bottom-color: rgba(239, 230, 219, 0.1);
}

.cocktail-steps {
    line-height: 1.9;
    opacity: 0.8;
}


/* --- Page Cocktail Individuelle --- */
.cocktail-single {
    padding: var(--section-padding);
    min-height: 80vh;
}

.cocktail-back {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--creme);
    opacity: 0.6;
    text-decoration: none;
    margin-bottom: 48px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.cocktail-back:hover {
    opacity: 1;
    color: var(--jaune-vif);
}

.cocktail-single-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.cocktail-single-image {
    display: flex;
    justify-content: center;
}

.cocktail-placeholder-single {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    max-width: 450px;
    background: linear-gradient(
        145deg,
        rgba(239, 230, 219, 0.15) 0%,
        rgba(255, 212, 0, 0.1) 50%,
        rgba(239, 230, 219, 0.08) 100%
    );
}

.cocktail-single-image img {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
}

.cocktail-single-name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--creme);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cocktail-single-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--creme);
    opacity: 0.6;
    margin-bottom: 40px;
}

.cocktail-single-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--jaune-vif);
    margin-bottom: 20px;
}

.cocktail-single-list {
    list-style: none;
    padding: 0;
}

.cocktail-single-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(239, 230, 219, 0.1);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--creme);
    font-weight: 300;
}

.cocktail-single-bottom {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cocktail-single-bottom .cocktail-single-label {
    margin-bottom: 24px;
}

.cocktail-single-steps {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 2;
    color: var(--creme);
    opacity: 0.8;
}


/* ==========================================================
   13. PAGE CONTACT
   ========================================================== */

.contact-section {
    padding-bottom: 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bleu-marine);
    opacity: 0.7;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 16px 20px;
    border: 2px solid rgba(0, 43, 83, 0.12);
    background: rgba(255, 255, 255, 0.5);
    color: var(--bleu-marine);
    border-radius: 4px;
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--bleu-marine);
    background: var(--blanc);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--bleu-marine);
    opacity: 0.3;
}

.form-success {
    background: var(--bleu-marine);
    color: var(--jaune-vif);
    padding: 20px 28px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 16px;
}

.contact-info-block h3 {
    margin-bottom: 8px;
    font-size: 0.8rem;
    opacity: 0.5;
}

.contact-info-block a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bleu-marine);
    border-bottom: 1px solid transparent;
}

.contact-info-block a:hover {
    border-bottom-color: var(--bleu-marine);
}


/* ==========================================================
   13b. SECTION NEWSLETTER (CTA Inscription)
   ========================================================== */

.section-newsletter {
    background: var(--bleu-marine);
    padding: 80px 0;
}

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

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--blanc);
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 16px;
}

.newsletter-desc {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: var(--blanc);
    opacity: 0.65;
    max-width: 560px;
}

.newsletter-action {
    flex-shrink: 0;
}

.btn-newsletter {
    display: inline-block;
    padding: 20px 48px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bleu-marine);
    background: var(--creme);
    border: none;
    text-decoration: none;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background: var(--blanc);
    transform: translateY(-2px);
}


/* ==========================================================
   14. TICKER BAND
   ========================================================== */

.ticker-band {
    background: var(--jaune-vif);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: tickerScroll 30s linear infinite;
}

.ticker-track span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    color: var(--bleu-marine);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0 4px;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ==========================================================
   15. FOOTER
   ========================================================== */

.site-footer {
    background: var(--bleu-marine);
    color: var(--creme);
    padding: 80px 0 0;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Colonne gauche */
.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-svg {
    height: 50px;
    width: auto;
}

.footer-logo-svg .logo-border {
    fill: var(--jaune-vif);
}

.footer-logo-svg .logo-letter {
    fill: var(--bleu-marine);
}

.footer-tagline {
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 28px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(239, 230, 219, 0.2);
    color: var(--creme);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--jaune-vif);
    color: var(--jaune-vif);
}

/* Colonne droite */
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--jaune-vif);
    margin-bottom: 24px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    font-size: 0.95rem;
    opacity: 0.7;
    text-decoration: none;
    color: var(--creme);
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--jaune-vif);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 24px 24px;
    border-top: 1px solid rgba(239, 230, 219, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-alcohol {
    font-style: italic;
    font-size: 0.75rem !important;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-legal-links a:hover {
    opacity: 1;
}


/* ==========================================================
   16. BOUTONS
   ========================================================== */

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

/* Bouton primaire : fond jaune, texte bleu */
.btn-primary {
    background: var(--jaune-vif);
    color: var(--bleu-marine);
    border-color: var(--jaune-vif);
}

.btn-primary:hover {
    background: transparent;
    color: var(--jaune-vif);
    border-color: var(--jaune-vif);
}

/* Bouton secondaire : bordure crème, texte crème */
.btn-secondary {
    background: transparent;
    color: var(--creme);
    border-color: var(--creme);
}

.btn-secondary:hover {
    background: var(--creme);
    color: var(--bleu-marine);
}

/* Bouton dark : fond bleu, texte crème */
.btn-dark {
    background: var(--bleu-marine);
    color: var(--creme);
    border-color: var(--bleu-marine);
}

.btn-dark:hover {
    background: transparent;
    color: var(--bleu-marine);
    border-color: var(--bleu-marine);
}


/* ==========================================================
   17. ANIMATIONS & REVEAL
   ========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Délais pour éléments multiples */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }


/* ==========================================================
   18. RESPONSIVE
   ========================================================== */

/* Tablette */
@media (max-width: 1024px) {
    .product-row,
    .cocktail-row {
        gap: 48px;
    }

    .footer-inner {
        gap: 48px;
    }

    .contact-grid {
        gap: 48px;
    }

    .cocktail-slide {
        flex: 0 0 260px;
        min-width: 220px;
    }

    .cocktail-slide.is-active {
        flex: 0 0 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Header */
    .nav-left,
    .nav-right,
    .lang-switch {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .header-logo {
        margin: 0;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Sections */
    .section-light,
    .section-force,
    .section-impact {
        padding: var(--section-padding-mobile);
    }

    /* Heritage */
    .section-heritage {
        min-height: auto;
        flex-direction: column;
    }

    .heritage-image {
        position: relative;
        height: 50vh;
    }

    .heritage-content {
        width: 100%;
        padding: 48px 24px;
        background: var(--bleu-marine);
    }

    .page-header {
        padding-top: calc(var(--header-height) + 48px);
        padding-bottom: 48px;
    }

    /* Timeline mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-progress {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 24px 1fr;
        gap: 20px;
        padding: 24px 0;
    }

    .timeline-left {
        display: none;
    }

    .timeline-item .timeline-dot {
        grid-row: 1;
        grid-column: 1;
    }

    .timeline-right {
        grid-column: 2;
        text-align: left;
        transform: translateX(30px);
    }

    /* Afficher le contenu gauche dans la colonne droite sur mobile */
    .timeline-item:nth-child(odd) .timeline-left,
    .timeline-item:nth-child(even) .timeline-left {
        display: none;
    }

    /* On duplique le contenu texte via un attribut — ou on montre le right qui contient déjà le texte pour les pairs */
    /* Pour les items impairs (texte à gauche), on affiche le right qui a l'image */
    /* Solution : on déplace visuellement tout dans la 2e colonne */

    .timeline-year {
        font-size: 1.8rem;
    }

    .timeline-text {
        max-width: 100%;
    }

    /* Produits accueil */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }

    /* Page produits */
    .product-row,
    .product-row-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .product-placeholder-lg {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Page cocktails */
    .cocktail-row,
    .cocktail-row-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .cocktail-placeholder {
        max-width: 100%;
    }

    /* Cocktail slider mobile */
    .cocktail-slider-track {
        padding: 40px 24px;
        gap: 16px;
    }

    .cocktail-slide {
        flex: 0 0 220px;
        min-width: 200px;
    }

    .cocktail-slide.is-active {
        flex: 0 0 300px;
    }

    .cocktail-slider-nav {
        padding: 0 24px;
    }

    .cocktail-slider-arrow {
        width: 40px;
        height: 40px;
    }

    /* Page cocktail individuelle mobile */
    .cocktail-single-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 48px;
    }

    .cocktail-placeholder-single {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .cocktail-single-image img {
        max-width: 100%;
        aspect-ratio: 4 / 3;
    }

    .cocktail-single-name {
        text-align: center;
    }

    /* Cocktails split (accueil) */
    .cocktails-split {
        flex-direction: column;
        min-height: auto;
    }

    .cocktails-split-text {
        width: 100%;
        padding: 56px 24px;
    }

    .cocktails-split-video {
        width: 100%;
        min-height: 300px;
    }

    .cocktails-split-video iframe {
        width: 200vw;
        height: 200vh;
    }

    /* Newsletter */
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .newsletter-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .newsletter-desc {
        max-width: 100%;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    /* Ticker */
    .ticker-track span {
        font-size: 0.85rem;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.7rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .product-name {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.5rem;
    }
}
