/* ========================================
   CAFÉ ANGLADE - Styles Complets
   Couleurs: #B49654 (doré), #161104 (noir), #FFFCF4 (crème), #EEE9DB (crème foncé)
======================================== */

/* FONTS */
@font-face {
    font-family: 'Casual Human';
    src: url('../fonts/CasualHuman.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Casual Human Bold';
    src: url('../fonts/CasualHuman-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Utility classes */
.mobile-only {
    display: none;
}

html, body {
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

/* ========================================
   ANIMATIONS GLOBALES
======================================== */

/* Fade In Up - Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In - Simple */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bounce léger pour la flèche */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Pulse subtil */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* ========================================
   HEADER
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 252, 244, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 50px 45px 50px;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 50px 10px 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    width: 190px;
    height: auto;
    transition: width 0.3s ease;
}

.site-header.scrolled .header-logo img {
    width: 100px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
}

.header-nav-left {
    justify-content: flex-end;
    padding-right: 40px;
}

.header-nav-right {
    justify-content: flex-start;
    padding-left: 40px;
}

.header-nav a {
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.header-nav a.active {
    color: var(--gold);
}

.header-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 20px;
    z-index: 10000;
}

.header-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

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

.header-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

@media (max-width: 1000px) {
    .header-container {
        justify-content: center;
        position: relative;
    }

    /* Menu mobile - Overlay plein écran */
    .header-nav-left.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 252, 244, 0.80);
        backdrop-filter: blur(10px);
        z-index: 9998;
    }

    .header-nav-left,
    .header-nav-right {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        z-index: 9999;
    }

    .header-nav-left {
        padding-bottom: calc(3 * (26px + 40px));
    }

    .header-nav-right {
        padding-top: calc(3 * (26px + 40px));
        padding-left: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .header-nav-left a,
    .header-nav-right a {
        text-align: center;
        font-size: 26px;
        font-weight: 600;
        color: var(--dark);
        transition: color 0.3s ease;
        position: relative;
        z-index: 10000;
        margin: 20px 0;
    }

    .header-nav-left a:hover,
    .header-nav-right a:hover {
        color: var(--gold);
    }

    .header-nav-left.active,
    .header-nav-right.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .header-menu-toggle {
        display: flex;
    }
}

/* Classes d'animation au scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Délais d'animation */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

:root {
    --gold: #B49654;
    --gold-light: #D5BA83;
    --dark: #161104;
    --cream: #FFFCF4;
    --cream-dark: #EEE9DB;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Archivo', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

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

ul {
    list-style: none;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    border-radius: 28px;
    border: 2px solid var(--dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--dark);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 17, 4, 0.15);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(22, 17, 4, 0.1);
}

.btn-primary {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    width: 100%;
    padding: 16px 24px;
}

.btn-dark:hover {
    background-color: #2a2010;
}

.btn-contact {
    padding: 8px 20px;
    background-color: transparent;
    border: 2px solid var(--dark);
    border-radius: 28px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--dark);
    color: var(--white);
}


/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    margin-bottom: 150px;
    height: 918px;
    background-color: var(--cream);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1750px;
    max-width: 91%;
    height: 782px;
    object-fit: cover;
    object-position: center 70%;
    border-radius: 30px;
}

.hero-circle {
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -38px;
    width: 76px;
    height: 76px;
    background-color: var(--dark);
    border-radius: 50%;
    z-index: 10;
}

.hero-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    z-index: 11;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
}

.hero-arrow:hover {
    color: var(--gold);
}

/* Animation d'entrée du Hero */
.hero-title {
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-btn-discover {
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-logo {
    animation: fadeIn 1.2s ease 0.1s backwards;
}

.hero-btn-contact {
    animation: fadeIn 1s ease 0.3s backwards;
}

.hero-btn-discover {
    position: absolute;
    top: 500px;
    left: max(20px, min(175px, 9%));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--white);
    border-radius: 28px;
    border: 2px solid var(--dark);
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-btn-discover:hover {
    background-color: var(--dark);
    color: var(--white);
}

.hero-title {
    position: absolute;
    top: 260px;
    left: max(20px, min(170px, 9%));
    width: 771px;
    max-width: calc(100% - 40px);
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    color: var(--white);
    font-size: 55px;
    letter-spacing: 0;
    line-height: 55px;
    z-index: 10;
    margin: 0;
}

.hero-title-bold {
    font-weight: 800;
}

.hero-title-light {
    font-weight: 400;
}

.hero-subtitle {
    position: absolute;
    top: 380px;
    left: max(20px, min(175px, 9%));
    width: 417px;
    max-width: calc(100% - 40px);
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    color: var(--white);
    font-size: 22px;
    letter-spacing: 0;
    line-height: 20.5px;
    z-index: 10;
    margin: 0;
}

.hero-logo {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: auto;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover {
    transform: translateX(-50%) scale(1.05);
    filter: brightness(1.1);
}

.hero-btn-contact {
    position: absolute;
    top: 33px;
    right: calc(50% - 875px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: transparent;
    border-radius: 28px;
    border: 2px solid var(--dark);
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-btn-contact:hover {
    background-color: var(--dark);
    color: var(--white);
}


/* SECTION MOT DU PATRON */
.patron {
    width: 100%;
    background-color: var(--cream);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 500px;
}

.patron-container {
    position: relative;
    margin-left: 50%;
    padding: 80px calc((100vw - 1430px) / 2 + 40px) 80px 50px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.patron-quote {
    font-family: 'Archivo', Helvetica;
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    font-size: 26px;
    text-align: left;
    letter-spacing: 0;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.patron-quote-mark {
    color: var(--gold);
}

.patron-badge {
    display: none;
}

.patron-photo {
    position: absolute;
    top: 0;
    left: max(20px, calc((100% - 1430px) / 2 + 40px));
    height: 500px;
    width: 500px;
    object-fit: cover;
    object-position: right center;
    border-radius: 30px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.patron-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(22, 17, 4, 0.15);
}

/* Animation section patron */
.patron.visible .patron-photo {
    animation: fadeInLeft 1s ease forwards;
}

.patron.visible .patron-quote {
    animation: fadeInRight 1s ease 0.2s backwards;
}

.patron.visible .patron-name {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.patron.visible .patron-title {
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.patron-name {
    font-family: 'Archivo', Helvetica;
    font-weight: 700;
    color: var(--dark);
    font-size: 20px;
    margin: 0;
}

.patron-location {
    display: none;
}

.patron-title {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    color: var(--gold);
    font-size: 16px;
    margin: 5px 0 0 0;
}

/* SECTION STATISTIQUES */
.stats {
    width: 100%;
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 60px 40px;
    border-radius: 25px;
    background: white;
    border: none;
    transition: all 0.4s ease;
    animation: cardAppear 0.8s ease-out backwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(180, 150, 84, 0.1);
}


.stat-number-suffix-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 100px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin: 0;
    padding: 0;
    font-family: 'Archivo', sans-serif;
    display: inline-block;
    opacity: 0;
    transform: scale(0.3) rotateX(-90deg);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item[data-animated="true"] .stat-number {
    opacity: 1;
    transform: scale(1) rotateX(0deg);
}

.stat-plus {
    font-size: 50px;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Archivo', sans-serif;
    margin: 0 8px 0 0;
    padding-top: 5px;
    opacity: 0;
    transform: translateY(-40px) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

.stat-suffix {
    font-size: 50px;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Archivo', sans-serif;
    margin-left: 8px;
    padding-top: 5px;
    opacity: 0;
    transform: translateY(-40px) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

.stat-item[data-animated="true"] .stat-plus,
.stat-item[data-animated="true"] .stat-suffix {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.stat-unit {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-light);
    margin: 0 0 30px 0;
    height: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.7s ease 0.4s;
}

.stat-item[data-animated="true"] .stat-unit {
    opacity: 1;
    transform: translateX(0);
}

.stat-label {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.7;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--cream-dark);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease 0.6s;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.stat-item[data-animated="true"] .stat-label {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }

    .stat-number {
        font-size: 90px;
    }
}

/* Responsive Stats */
@media (max-width: 1200px) {
    .stats-container {
        gap: 40px;
        padding: 0 30px;
    }

    .stat-item {
        padding: 50px 30px;
    }

    .stat-number {
        font-size: 85px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .stats {
        padding: 70px 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px;
    }

    .stat-item {
        padding: 25px 20px;
        border-bottom: 1px solid rgba(44, 36, 22, 0.15);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 45px;
        margin-bottom: 0;
    }

    .stat-plus,
    .stat-suffix {
        font-size: 22px;
    }

    .stat-unit {
        font-size: 14px;
        margin: 3px 0 3px 0;
    }

    .stat-label {
        font-size: 14px;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    /* Header mobile */
    .header-logo img {
        width: 152px;
    }

    .header-menu-toggle {
        right: 5px;
        top: 50px;
        transition: top 0.3s ease;
    }

    .site-header.scrolled .header-menu-toggle {
        top: 30px;
    }
}

/* SECTION NOTRE CAFÉ */
.notre-cafe {
    width: 100%;
    background-color: var(--cream);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.notre-cafe-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1430px;
    max-width: 100%;
    gap: 60px;
}

.notre-cafe-content {
    flex: 1;
    max-width: 600px;
}

.notre-cafe-title {
    width: 100%;
    font-family: 'Archivo', Helvetica;
    font-weight: 700;
    color: var(--dark);
    font-size: 36px;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.notre-cafe-title-light {
    font-size: 24px;
    font-weight: 400;
    display: block;
    margin-top: -5px;
}

.notre-cafe-text {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    color: var(--dark);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
}

.notre-cafe-text p {
    margin-bottom: 15px;
}

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

.notre-cafe-image {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    flex-shrink: 0;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.notre-cafe-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(22, 17, 4, 0.15);
}

/* Animation section notre-cafe */
.notre-cafe .notre-cafe-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.notre-cafe .notre-cafe-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.15s;
}

.notre-cafe .notre-cafe-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.notre-cafe .notre-cafe-image {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease 0.2s, box-shadow 0.6s ease;
}

.notre-cafe.visible .notre-cafe-title,
.notre-cafe.visible .notre-cafe-text,
.notre-cafe.visible .notre-cafe-btn,
.notre-cafe.visible .notre-cafe-image {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.notre-cafe-btn {
    display: none;
}

.notre-cafe-btn:hover {
    background-color: var(--dark);
    color: var(--white);
}

.notre-cafe-calque {
    position: absolute;
    top: 198px;
    left: 283px;
    width: 248px;
    height: 105px;
}

.notre-cafe-badge {
    position: absolute;
    top: 673px;
    left: 1205px;
    width: 187px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', Helvetica;
    font-weight: 200;
    color: var(--white);
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 21px;
    white-space: nowrap;
}

/* SECTION CARTE-DISTRIBUTION */
.CARTE-DISTRIBUTION {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    background-color: var(--cream);
}

.carte-gauche {
    margin: 0;
    padding: 0;
    flex: 0 0 45%;
}

.carte-gauche img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
}

.contenu-droite {
    flex: 1;
    padding: clamp(20px, 4vw, 70px);
}

.une-distribution {
    font-family: 'Archivo', Helvetica;
    font-weight: 700;
    color: var(--dark);
    font-size: 50px;
    letter-spacing: 0;
    line-height: 58.5px;
    margin: 0 0 50px 0;
}

.on-a-choisi-de {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    color: var(--dark);
    font-size: 18px;
    letter-spacing: 0;
    line-height: 21px;
    margin: 0 0 50px 0;
    max-width: 505px;
}

.fraicheur-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.fraicheur-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 95px;
    background-image: url('../infos/contour fraicheur.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.vector-33 {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
}

.BUTTON-4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 24px;
    border-radius: 28px;
    border: 2px solid var(--dark);
    background-color: transparent;
    cursor: pointer;
}

.BUTTON-4 .text-wrapper-31 {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    margin: 0;
}

.BUTTON-4:hover {
    background-color: var(--dark);
}

.BUTTON-4:hover .text-wrapper-31 {
    color: var(--white);
}

/* SECTION OFFRE */
.offre {
    padding: 0;
    background-image: url('../IMG/CAFEANGLADE.webp');
    background-size: cover;
    background-position: center;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.offre-container {
    max-width: 1400px;
    width: 100%;
    padding: 100px 50px;
}

.offre-overlay h2 {
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.1;
}

.offre-overlay p {
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
}

/* Animation section offre - effet parallax léger */
.offre {
    background-attachment: fixed;
    transition: background-position 0.1s ease-out;
}

@media (max-width: 768px) {
    .offre {
        background-attachment: scroll;
    }
}

/* SECTION DETAILS */
.details {
    padding: 100px 50px;
    background-color: var(--cream);
}

.details-container {
    max-width: 1400px;
    margin: 0 auto;
}

.details-header {
    text-align: center;
    margin-bottom: 40px;
}

.details-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 1px;
    margin-bottom: 0;
    display: block;
}

.details-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
}

.vous-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.vous-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 160px;
    height: 70px;
    background-image: url('../infos/contour fraicheur.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.details-steps {
    margin-bottom: 60px;
    position: relative;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 0;
    border-top: 2px dashed var(--dark);
    z-index: 0;
}

.step-numbers {
    display: flex;
    justify-content: center;
    gap: 350px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--cream-dark);
    border: 2px dashed var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
    font-weight: 800;
    color: var(--dark);
}

.details-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.detail-item {
    background-color: var(--cream-dark);
    border: 2px dashed var(--dark);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: left;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.detail-icon {
    width: 250px;
    height: 250px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.detail-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-item h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--dark);
}

.detail-item p {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.3;
}

/* SECTION SERVICES */
.services {
    padding: 100px 50px;
    background-color: var(--dark);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.services-line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-badge {
    background-color: var(--white);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--cream-dark);
}

/* Animation services header */
.services .services-header h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.services .services-line {
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s ease 0.2s;
}

.services.visible .services-header h2 {
    opacity: 1;
    transform: translateY(0);
}

.services.visible .services-line {
    opacity: 1;
    transform: scaleX(1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    padding: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.services.visible .service-item {
    opacity: 1;
    transform: translateY(0);
}

.services.visible .service-item:nth-child(1) { transition-delay: 0.1s; }
.services.visible .service-item:nth-child(2) { transition-delay: 0.2s; }
.services.visible .service-item:nth-child(3) { transition-delay: 0.3s; }
.services.visible .service-item:nth-child(4) { transition-delay: 0.4s; }
.services.visible .service-item:nth-child(5) { transition-delay: 0.5s; }
.services.visible .service-item:nth-child(6) { transition-delay: 0.6s; }

.service-item:hover h3 {
    color: var(--gold);
    transition: color 0.3s ease;
}

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-item p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.6;
}

.service-item strong {
    font-weight: 400;
}

/* SECTION POUR QUI */
.pour-qui {
    background-color: var(--cream);
}

.pour-qui-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.pour-qui-item.reverse {
    direction: rtl;
}

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

.pour-qui-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--cream);
}

.pour-qui-content h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

.pour-qui-content p {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pour-qui-image {
    overflow: hidden;
}

.pour-qui-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION CLIENTS */
.clients {
    padding: 100px 50px;
    background-color: var(--cream);
    text-align: center;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
}

.clients h2 {
    font-size: 162px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
}

.clients-text-outline {
    color: var(--dark);
    display: block;
}

.clients-text-filled {
    font-weight: 900;
    color: var(--cream);
    -webkit-text-stroke: 3px var(--dark);
    text-stroke: 3px var(--dark);
    display: block;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.clients-logos img {
    height: auto;
    width: auto;
    max-height: 100px;
}

/* SECTION CONTACT */
.contact {
    padding: 100px 50px;
    background-color: var(--cream);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--dark);
}

.contact-info > p {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--dark);
    padding: 15px 25px;
    border-radius: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item span {
    color: var(--white);
    font-size: 18px;
}

.contact-form-wrapper {
    background-color: var(--white);
}

/* Animation section contact */
.contact .contact-info {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.contact .contact-form-wrapper {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease 0.2s;
}

.contact.visible .contact-info,
.contact.visible .contact-form-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.contact-form {
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #757575;
    margin-bottom: 8px;
    font-size: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background-color: var(--cream-dark);
    border-radius: 15px;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #757575;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(180, 150, 84, 0.15);
    transform: translateY(-2px);
}

/* Animation contact items */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(22, 17, 4, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #757575;
}

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

/* SECTION BLOG */
.blog {
    padding: 100px 50px;
    background-color: var(--cream);
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-label {
    color: var(--dark);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.blog-header h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.blog-header p {
    color: var(--dark);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Animation blog header */
.blog .blog-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.blog.visible .blog-header {
    opacity: 1;
    transform: translateY(0);
}

.blog-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.blog-card {
    flex: 1;
    background-color: var(--cream-dark);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}


.blog.visible .blog-card {
    opacity: 1;
    transform: translateY(0);
}

.blog.visible .blog-card:nth-child(1) { transition-delay: 0.1s; }
.blog.visible .blog-card:nth-child(2) { transition-delay: 0.2s; }
.blog.visible .blog-card:nth-child(3) { transition-delay: 0.3s; }
.blog.visible .blog-card:nth-child(4) { transition-delay: 0.4s; }

.blog-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(22, 17, 4, 0.12);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.blog-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.blog-tag {
    color: var(--gold-light);
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}


.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 10px;
    min-height: 58px;
}


.blog-btn {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark);
}


/* FOOTER */
.footer {
    padding: 40px 20px;
    background-color: var(--cream);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

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

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

.footer-links a {
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.6;
}

.footer-credit {
    color: var(--dark);
    font-size: 14px;
    opacity: 0.5;
    margin-top: 10px;
}

/* SECTION DISTRIBUTEURS */
.distributeurs-section {
    padding: 100px 0 0 0;
    background-color: var(--cream);
    overflow: visible;
}

.distributeurs-container {
    max-width: none;
    margin: 0;
    padding-right: 50px;
    overflow: visible;
}

.distributeurs-header {
    text-align: center;
    margin-bottom: 60px;
}

.distributeurs-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.distributeurs-header p {
    font-size: 18px;
    color: var(--dark);
    opacity: 0.8;
}

.distributeurs-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: start;
    overflow: visible;
}

.carte-wrapper {
    background: transparent;
    padding: 0;
    margin-left: 0;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.carte-interactive {
    width: 100%;
    min-height: 650px;
}

.carte-svg {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
}

/* Labels des départements */
.dept-label {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    fill: var(--cream);
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: auto;
    cursor: pointer;
}

/* Départements */
.dept {
    stroke: var(--cream) !important;
    stroke-width: 0.3;
    transition: fill 0.3s ease;
    fill: #333333 !important;
}

.dept-inactive {
    fill: var(--dark);
}

.dept-clickable {
    fill: var(--dark) !important;
    cursor: pointer;
}

.dept-clickable:hover,
.dept-clickable.hover {
    fill: var(--gold) !important;
}

.dept-clickable.active {
    fill: var(--gold) !important;
}

/* Villes sur la carte */
.ville-point {
    fill: var(--dark);
}

.ville-label {
    font-family: 'Archivo', sans-serif;
    font-size: 3px;
    font-weight: 600;
    fill: white;
    pointer-events: none;
}

/* Carte distributeur */
.distributeur-details-wrapper {
    position: sticky;
    top: 40px;
}

.distributeurs-header-card {
    text-align: left;
    margin-bottom: 40px;
    display: block !important;
    opacity: 1 !important;
}

#distributeur-info:not(:empty) ~ .distributeurs-header-card,
.distributeurs-header-card:has(+ #distributeur-info:not(:empty)) {
    display: block !important;
}

.distributeurs-header-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.2;
}

.distributeurs-title-light {
    font-size: 24px;
    font-weight: 400;
    display: block;
    margin-top: -5px;
}

.distributeurs-header-card .titre-encadre {
    position: relative;
    display: inline-block;
}

.distributeurs-header-card .titre-encadre::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 75px;
    background-image: url('../infos/contour fraicheur.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.carte-instruction {
    display: none;
}

.carte-description-mobile {
    display: none;
}
    background-position: center;
    z-index: -1;
}

.distributeurs-header-card p {
    font-size: 18px;
    color: var(--dark);
    opacity: 0.8;
    margin: 0;
}

.dist-card {
    background: transparent;
    border-radius: 30px;
    padding: 40px;
    border: 3px solid var(--gold);
    transition: all 0.4s ease;
}

.dist-card:hover {
    box-shadow: 0 15px 40px rgba(180, 150, 84, 0.2);
    transform: translateY(-5px);
}

/* Animation distributeurs */
.distributeurs-section .distributeurs-header-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.distributeurs-section .carte-wrapper {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease 0.2s;
}

.distributeurs-section.visible .distributeurs-header-card,
.distributeurs-section.visible .carte-wrapper {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.dist-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.dist-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.dist-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.dist-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 5px 0;
}

.dist-role {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin: 0;
}

.dist-description {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--cream-dark);
}

.dist-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.dist-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--dark);
}

.dist-contact-item a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dist-contact-item a:hover {
    color: var(--gold);
}

.dist-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.dist-villes {
    background: var(--cream);
    border-radius: 20px;
    padding: 20px;
}

.dist-villes-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dist-villes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dist-ville {
    background: var(--white);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--gold);
}

/* Message par défaut */
.dist-card-default {
    text-align: center;
    padding: 60px 40px;
}

.dist-default-message p {
    font-size: 18px;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

/* Message par défaut sans bordure */
.dist-default-no-border {
    text-align: left;
    padding: 0;
}

.dist-default-no-border p {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    color: var(--dark);
    letter-spacing: 0;
    line-height: 21px;
    margin: 0 0 20px 0;
    max-width: 505px;
}

.dist-default-no-border .dist-cta {
    font-weight: 600;
    color: var(--gold);
    margin-top: 30px;
}

/* Bientôt disponible */
.dist-card-soon {
    text-align: center;
}

.dist-soon-content {
    padding: 20px 0;
}

.dist-soon-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.dist-soon-text {
    font-size: 16px;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive distributeurs */
@media (max-width: 1024px) {
    .distributeurs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .distributeur-details-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .distributeurs-section {
        padding: 60px 20px 20px 20px;
    }

    .distributeurs-container {
        padding-right: 0;
    }

    .distributeurs-content {
        display: flex;
        flex-direction: column;
    }

    .distributeur-details-wrapper {
        order: -1;
        margin-bottom: 30px;
    }

    .distributeurs-header-card {
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
    }

    .distributeurs-header-card .titre-encadre::before {
        width: 144px;
        height: 60px;
    }

    .carte-instruction {
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: var(--gold);
        margin-top: 15px;
        font-style: normal;
        opacity: 1;
    }

    .distributeurs-header h2,
    .distributeurs-header-card h2 {
        font-size: 26px;
    }

    .carte-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        margin-top: -50px;
        margin-bottom: -30px;
        padding: 25px 0 25px 0;
        border-radius: 20px;
    }

    .dist-card {
        padding: 25px;
        border-radius: 20px;
    }

    /* Popup distributeur mobile */
    #distributeur-info {
        display: none;
    }

    #distributeur-info.active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        overflow-y: auto;
    }

    #distributeur-info.active .dist-card {
        position: relative;
        background: var(--cream);
        max-width: 370px;
        width: 90%;
        max-height: 70vh;
        overflow-y: auto;
        margin: auto;
    }

    /* Bouton fermeture popup */
    .dist-close-btn {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: white;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        color: var(--dark);
        cursor: pointer;
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    /* Cacher les icônes dans les cartes */
    .dist-icon {
        display: none;
    }

    /* Réduire font des liens site/email */
    .dist-contact-item a {
        font-size: 14px;
    }

    /* Texte description sous la carte */
    .carte-description-mobile {
        display: block;
        margin-top: -250px;
        padding: 0 0 0 20px;
        margin-left: 0;
        margin-right: -20px;
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        line-height: 21px;
        color: var(--dark);
        text-align: left;
        font-family: 'Archivo', Helvetica;
        font-weight: 400;
    }

    .carte-description-mobile p {
        margin: 0 0 15px 0;
    }

    .carte-description-mobile p:last-child {
        margin-bottom: 0;
    }

    .carte-interactive {
        padding-left: 0;
        padding-right: 5px;
        margin-right: 0;
        transform: scale(1.2);
        transform-origin: center center;
        min-height: 400px;
    }

    .carte-svg {
        min-height: 350px;
    }

    .ville-label {
        font-size: 4.5px;
    }

    .dist-ville {
        font-size: 16px;
    }
}

/* MINI-CARTES DISTRIBUTEURS (pour départements avec plusieurs distributeurs) */
.mini-cards-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.mini-card {
    background: white;
    border: 3px solid var(--gold);
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(180, 150, 84, 0.4);
    border-color: var(--dark);
}

.mini-card-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.mini-card-nom {
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Archivo', sans-serif;
}

.mini-card-ville {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dist-back-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.dist-back-btn:hover {
    background: var(--gold);
    color: white;
}

@media (max-width: 968px) {
    .mini-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .mini-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mini-card {
        padding: 21px 17px;
        min-width: unset;
    }

    .mini-card-logo {
        width: 68px;
        height: 68px;
        margin-bottom: 15px;
    }

    .mini-card-nom {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .mini-card-ville {
        font-size: 12px;
    }
}

/* SECTION PATRON CONTACT */
.patron-contact {
    padding: 60px 50px;
    background-color: transparent;
    margin-top: 0;
    margin-bottom: 80px;
}

.patron-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.patron-contact-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.patron-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.patron-form-group input {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background-color: #E5E5E5;
    border-radius: 12px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.patron-form-group input::placeholder {
    color: #999;
}

.patron-form-group input:focus,
.patron-form-group textarea:focus {
    outline: none;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 20px rgba(180, 150, 84, 0.15);
    transform: translateY(-2px);
}

.patron-form-group input,
.patron-form-group textarea {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.patron-form-message {
    margin-bottom: 20px;
}

.patron-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background-color: #E5E5E5;
    border-radius: 12px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    resize: vertical;
}

.patron-form-group textarea::placeholder {
    color: #999;
}


/* Animation section patron-contact */
.patron-contact .patron-contact-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.patron-contact .patron-contact-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease 0.2s;
}

.patron-contact.visible .patron-contact-left,
.patron-contact.visible .patron-contact-right {
    opacity: 1;
    transform: translateX(0);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 28px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--dark);
}

@media (max-width: 1024px) {
    .patron-contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .patron-contact-left h2 {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .patron-contact {
        padding: 40px 20px;
    }

    .patron-form-grid {
        grid-template-columns: 1fr;
    }

    .patron-contact-left h2 {
        font-size: 24px;
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 52px;
        width: auto;
        max-width: 550px;
        top: 230px;
    }

    .hero-subtitle {
        top: 340px;
        width: 380px;
    }

    .hero-btn-discover {
        top: 460px;
    }

    .details-items,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .step-numbers {
        gap: 200px;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .hero {
        padding: 180px 20px 60px;
        height: auto;
        min-height: 700px;
        margin-top: 0;
        overflow: visible;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 42px;
        width: auto;
        max-width: calc(100% - 40px);
        text-align: left;
        top: 215px;
    }

    .hero-title-bold br {
        display: none;
    }

    .mobile-only {
        display: inline;
    }

    .hero-subtitle {
        top: 300px;
        font-size: 15px;
        width: auto;
        max-width: calc(100% - 40px);
    }

    .hero-btn-discover {
        display: none;
    }

    .hero-circle {
        width: 50px;
        height: 50px;
        margin-left: -25px;
        top: auto;
        bottom: -50px;
        z-index: 100;
    }

    .hero-arrow {
        width: 50px;
        height: 50px;
        font-size: 18px;
        top: auto;
        bottom: -50px;
        z-index: 101;
    }

    .hero-image {
        height: 600px;
    }

    .patron {
        height: auto;
        padding: 40px 20px 0 20px;
    }

    .notre-cafe {
        padding: 50px 20px 50px 40px;
    }

    .notre-cafe-container {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0;
        gap: 30px;
    }

    .notre-cafe-content {
        max-width: 100%;
    }

    .notre-cafe-title,
    .notre-cafe-text {
        position: relative;
        left: 0;
        top: 0;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }

    .notre-cafe-title {
        margin-bottom: 20px;
        font-size: 26px;
        line-height: 32px;
    }

    .notre-cafe-text {
        margin-bottom: 20px;
    }

    .notre-cafe-image {
        width: 100%;
        height: 300px;
        margin-top: 0;
    }

    .notre-cafe-calque {
        top: 17px;
        left: 143px;
        width: 139px;
        height: 59px;
    }

    .notre-cafe-badge {
        display: none;
    }

    .patron-photo {
        position: relative;
        left: 0;
        width: 280px;
        height: 280px;
        margin: 0 auto 20px;
        display: block;
    }

    .patron-location {
        display: none;
    }

    .patron-container {
        margin-left: 0;
        padding: 0 0 0 20px;
        min-height: auto;
    }

    .patron-quote {
        font-size: 14px;
        text-align: left;
        margin-bottom: 20px;
    }

    .patron-name {
        text-align: left;
        font-size: 14px;
    }

    .patron-container,
    .notre-cafe-container,
    .distribution-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .pour-qui-item {
        grid-template-columns: 1fr;
    }

    .blog {
        padding: 60px 20px;
    }

    .blog-header {
        margin-bottom: 40px;
    }

    .blog-label {
        font-size: 16px;
    }

    .blog-header h2 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .blog-header p {
        font-size: 16px;
        line-height: 1.5;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 15px;
    }

    .blog-card {
        border-radius: 15px;
        min-height: 380px;
    }

    .blog-card img {
        width: 100% !important;
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
        object-fit: cover !important;
        object-position: top !important;
        display: block !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .blog-card-content {
        padding: 25px;
    }

    .blog-tag {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .blog-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.3;
        min-height: 58px;
    }

    .blog-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .clients h2 {
        font-size: 60px;
    }
}

/* ========================================
   SECTION NOS MARQUES
======================================== */
.nos-marques {
    margin-top: 100px;
    padding: 50px 5%;
    background-color: var(--cream);
}

.nos-marques-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.nos-marques-header h2 {
    font-family: 'Archivo', Helvetica;
    font-weight: 700;
    font-size: 50px;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: 0;
    line-height: 58.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.nos-marques-intro {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.nos-marques.visible .nos-marques-header h2,
.nos-marques.visible .nos-marques-intro {
    opacity: 1;
    transform: translateY(0);
}

.nos-marques-intro {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #555555;
    margin-bottom: 15px;
}

.nos-marques-values {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--dark);
    margin-bottom: 10px;
}

.nos-marques-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.nos-marques-list li {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--dark);
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.nos-marques-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.nos-marques-conclusion {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--dark);
    margin-top: 15px;
}

/* ========================================
   SECTIONS MARQUES (items alternés - full width)
======================================== */
.marque-item {
    padding: 0;
    background-color: var(--cream-dark);
    width: 100%;
    overflow: hidden;
}

.marque-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 600px;
}

.marque-content {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.marque-nom {
    font-family: 'Archivo', Helvetica;
    font-weight: 700;
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: 0;
}

.marque-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    align-self: center;
}

.marque-description {
    font-family: 'Archivo', Helvetica;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: var(--dark);
    margin-bottom: 30px;
}

.marque-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.marque-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.marque-item:hover .marque-image img {
    transform: scale(1.03);
}

/* Animation des sections marques */
.marque-item .marque-content {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.marque-reverse .marque-content {
    transform: translateX(40px);
}

.marque-item.visible .marque-content {
    opacity: 1;
    transform: translateX(0);
}

.marque-item .marque-image {
    opacity: 0;
    transition: opacity 0.8s ease 0.2s;
}

.marque-item.visible .marque-image {
    opacity: 1;
}

/* Marque inversée (image à gauche) */
.marque-reverse .marque-container {
    direction: rtl;
}

.marque-reverse .marque-container > * {
    direction: ltr;
}

/* Responsive */
@media (max-width: 768px) {
    .nos-marques-header h2 {
        font-size: 36px;
    }

    .nos-marques-intro,
    .nos-marques-values,
    .nos-marques-conclusion {
        font-size: 16px;
    }

    .marque-container {
        grid-template-columns: 1fr;
        gap: 0;
        height: auto;
    }

    .marque-reverse .marque-container {
        direction: ltr;
    }

    .marque-image {
        height: 220px;
        order: -1; /* Image toujours en premier sur mobile */
    }

    .marque-content {
        text-align: center;
        padding: 30px 25px;
    }

    .marque-nom {
        font-size: 28px;
    }

    .marque-description {
        font-size: 16px;
    }
}

/* ========================================
   STYLES DES PAGES
======================================== */

/* Contenu de page avec header fixe */
.page-content {
    padding-top: 120px;
}

/* Hero des pages */
.page-hero {
    background-color: var(--dark);
    padding: 100px 50px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-small {
    padding: 80px 50px 60px;
}

/* Page Blog */
.blog-section {
    background-color: var(--cream);
    padding: 60px 50px 100px;
    margin-top: 100px;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.blog-section-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.blog-section-header p {
    font-size: 17px;
    color: var(--dark);
    opacity: 0.7;
}

.blog-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-card-small {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-small img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: top;
}

.blog-card-info {
    padding: 20px;
}

.blog-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-info a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.blog-card-info a:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .blog-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-section-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Contact */
.contact-section {
    min-height: calc(100vh - 120px);
    background-color: var(--cream);
    display: flex;
    align-items: center;
    padding: 60px 50px;
    margin-top: 100px;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-left {
    padding-right: 40px;
}

.contact-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-left h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-left > p {
    font-size: 17px;
    color: var(--dark);
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    gap: 50px;
}

.contact-detail strong {
    display: block;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-detail span {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.5;
}

.contact-right {
    background-color: transparent;
    padding-top: 40px;
}

.contact-right .patron-form-grid {
    gap: 20px;
    margin-bottom: 20px;
}

.contact-right .patron-form-group {
    margin-bottom: 20px;
}

.contact-form-new .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-new input,
.contact-form-new textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Archivo', sans-serif;
    background-color: #E5E5E5;
    color: var(--dark);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.contact-form-new input::placeholder,
.contact-form-new textarea::placeholder {
    color: #999;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
    outline: none;
    border: 2px solid var(--gold);
    box-shadow: 0 5px 20px rgba(180, 150, 84, 0.15);
    transform: translateY(-2px);
}

.contact-form-new textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    width: 100%;
    padding: 14px 30px;
    font-size: 16px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    margin-top: 10px;
    background-color: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background-color: var(--dark);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-left {
        padding-right: 0;
        text-align: center;
    }

    .contact-left h1 {
        font-size: 32px;
    }

    .contact-details {
        justify-content: center;
    }

    .contact-form-new .form-row {
        grid-template-columns: 1fr;
    }
}

/* Pages légales */
.legal-section {
    background-color: var(--cream);
    padding: 60px 50px 100px;
    margin-top: 100px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.legal-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
}

.legal-body {
    max-width: 700px;
    margin: 0 auto;
}

.legal-body h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    font-size: 15px;
    color: var(--dark);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-body li {
    font-size: 15px;
    color: var(--dark);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Pages Marques */
.marque-hero {
    background-color: var(--cream-dark);
    padding: 100px 50px;
    text-align: center;
}

.marque-hero-anglade {
    background-color: var(--dark);
}

.marque-hero-anglade h1,
.marque-hero-anglade .marque-hero-subtitle {
    color: var(--white);
}

.marque-hero-logo {
    height: 80px;
    margin-bottom: 20px;
}

.marque-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.marque-hero-subtitle {
    font-size: 20px;
    color: var(--dark);
    opacity: 0.8;
}

.marque-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: var(--cream);
}

.marque-intro-reverse {
    direction: rtl;
}

.marque-intro-reverse > * {
    direction: ltr;
}

.marque-intro-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marque-intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.marque-intro-content p {
    font-size: 17px;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.7;
}

.marque-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marque-features {
    padding: 80px 50px;
    background-color: var(--white);
    text-align: center;
}

.marque-features h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 50px;
}

.marque-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.marque-feature {
    padding: 40px 30px;
    background-color: var(--cream);
    border-radius: 20px;
}

.marque-feature h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.marque-feature p {
    font-size: 15px;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}

.marque-cta {
    padding: 80px 50px;
    background-color: var(--gold);
    text-align: center;
}

.marque-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.marque-cta p {
    font-size: 18px;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Responsive pages */
@media (max-width: 900px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
    }


    .marque-intro {
        grid-template-columns: 1fr;
    }

    .marque-intro-reverse {
        direction: ltr;
    }

    .marque-intro-image {
        height: 300px;
    }

    .marque-features-grid {
        grid-template-columns: 1fr;
    }

}

/* ========================================
   PAGES MARQUES - NOUVEAU DESIGN
======================================== */

/* Section 1 : Bannière full width */
.marque-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.marque-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.marque-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marque-banner-logo {
    max-width: 250px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Section 2 : L'histoire */
.marque-histoire {
    padding: 100px 50px;
    background-color: var(--cream);
}

.marque-histoire-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.marque-section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.marque-histoire-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
    line-height: 1.2;
}

.marque-histoire-content {
    text-align: left;
}

.marque-histoire-content p {
    font-size: 18px;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.85;
}

.marque-histoire-content p:last-child {
    margin-bottom: 0;
}

/* Section 3 : Esprit de la marque */
.marque-esprit {
    padding: 0;
    background-color: var(--cream-dark);
}

.marque-esprit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.marque-esprit-image {
    overflow: hidden;
}

.marque-esprit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.marque-esprit:hover .marque-esprit-image img {
    transform: scale(1.03);
}

.marque-esprit-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marque-esprit-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.marque-esprit-content p {
    font-size: 17px;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.85;
}

.marque-esprit-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.marque-esprit-list li {
    font-size: 17px;
    color: var(--dark);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(22, 17, 4, 0.1);
}

.marque-esprit-list li:last-child {
    border-bottom: none;
}

.marque-esprit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* Section 4 : Coordonnées + Galerie */
.marque-infos {
    padding: 100px 50px;
    background-color: var(--cream);
}

.marque-infos-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* Coordonnées */
.marque-coordonnees h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.marque-coord-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.marque-coord-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marque-coord-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.marque-coord-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.marque-coord-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.marque-coord-item p {
    font-size: 16px;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Galerie */
.marque-galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.marque-galerie-item {
    overflow: hidden;
    border-radius: 15px;
}

.marque-galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marque-galerie-item:hover img {
    transform: scale(1.08);
}

.marque-galerie-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Animations */
.marque-histoire-header,
.marque-histoire-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.marque-histoire.visible .marque-histoire-header {
    opacity: 1;
    transform: translateY(0);
}

.marque-histoire.visible .marque-histoire-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.marque-esprit-image {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.marque-esprit-content {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease 0.2s;
}

.marque-esprit.visible .marque-esprit-image,
.marque-esprit.visible .marque-esprit-content {
    opacity: 1;
    transform: translateX(0);
}

.marque-coordonnees,
.marque-galerie {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.marque-infos.visible .marque-coordonnees {
    opacity: 1;
    transform: translateY(0);
}

.marque-infos.visible .marque-galerie {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Responsive nouveau design marques */
@media (max-width: 1024px) {
    .marque-infos-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .marque-galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .marque-galerie-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 900px) {
    .marque-banner {
        height: 350px;
    }

    .marque-banner-logo {
        max-width: 180px;
    }

    .marque-histoire {
        padding: 60px 30px;
    }

    .marque-histoire-header h2 {
        font-size: 36px;
    }

    .marque-esprit-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .marque-esprit-image {
        height: 350px;
    }

    .marque-esprit-content {
        padding: 50px 30px;
    }

    .marque-esprit-content h2 {
        font-size: 32px;
    }

    .marque-infos {
        padding: 60px 30px;
    }

    .marque-coordonnees h2 {
        font-size: 28px;
    }

    .marque-galerie-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 150px);
    }
}

@media (max-width: 600px) {
    .marque-banner {
        height: 280px;
    }

    .marque-banner-logo {
        max-width: 140px;
    }

    .marque-galerie-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
    }

    .marque-galerie-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ===========================
   LIGHTBOX GALERIE
   =========================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--gold);
}

@media (max-width: 768px) {
    .lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}

/* ===========================
   MENU MOBILE INDÉPENDANT
   =========================== */
.mobile-menu-overlay {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100vh - 85px);
    background: rgba(255, 252, 244, 0.80);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
}

.site-header {
    z-index: 9999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav a {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-menu-nav a:hover {
    color: var(--gold);
}

/* Masquer sur desktop */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
}

/* Construction Overlay */
.construction-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-message {
    background-color: rgba(22, 17, 4, 0.9);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.construction-text {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #B49654;
    margin: 0 0 30px 0;
    animation: pulse 2s ease-in-out infinite;
}

.construction-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #B49654;
    color: #161104;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.construction-btn:hover {
    background-color: #d4b06f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(180, 150, 84, 0.3);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .construction-text {
        font-size: 24px;
    }
    .construction-message {
        padding: 30px 40px;
    }
}

/* ========================================
   SECTION FAQ SEO
======================================== */
.faq-seo {
    padding: 80px 5%;
    background-color: var(--cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    background-color: var(--cream-dark);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* FAQ visible par défaut sur home */
body:not(.engagements-page) .faq-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(180, 150, 84, 0.1);
}

.faq-item.active .faq-question {
    background-color: rgba(180, 150, 84, 0.15);
}

.faq-question h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    margin: 0;
    padding: 0 30px 25px 30px;
}

@media (max-width: 768px) {
    .faq-seo {
        padding: 60px 20px;
    }

    .faq-container h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 17px;
    }

    .faq-icon {
        font-size: 24px;
        min-width: 25px;
    }

    .faq-answer p {
        font-size: 15px;
        padding: 0 20px 20px 20px;
    }
}

/* ========================================
   PAGE ENGAGEMENTS
======================================== */

.engagements-hero {
    background-color: var(--dark);
    padding: 40px 20px 20px 20px;
    text-align: center;
}

.engagements-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.engagements-hero h1 {
    font-family: 'Archivo', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
    letter-spacing: 3px;
}

.engagements-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.9;
    margin: -20px 0 0 0;
}

.engagements-section {
    background-color: var(--white);
    padding: 50px 20px 80px;
}

.engagements-container {
    max-width: 900px;
    margin: 0 auto;
}

.engagements-machine-banner {
    width: 100%;
    background-color: var(--cream);
    display: flex;
    justify-content: center;
    padding: 48px 20px 0;
    margin-bottom: -6px;
}

.machine-banner-img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
}

.engagements-content p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 20px;
}

.engagements-voile {
    background-color: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.engagements-voile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.engagements-voile-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.engagements-voile-image {
    position: relative;
    overflow: hidden;
}

.voilier-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.engagements-voile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.engagements-voile-title {
    text-align: left;
}

.engagements-voile-header h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.engagements-tagline {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.engagements-voile-intro {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--cream);
    text-align: left;
    margin: 0 0 30px;
}

.engagements-voile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.engagements-voile-item {
    text-align: left;
    padding: 20px 25px;
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.engagements-voile-item h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.engagements-voile-item p {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--cream);
}

.engagements-sport {
    background-color: var(--cream);
    padding: 80px 20px;
}

.engagements-sport-header h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
}

.engagements-sport-content p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 20px;
}

.engagements-sport-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.engagements-sport-list li {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark);
    padding: 15px 0 15px 30px;
    position: relative;
    border-left: 3px solid var(--gold);
    margin-bottom: 15px;
    background-color: var(--white);
    border-radius: 0 10px 10px 0;
}

.sport-team-logo {
    height: 24px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
    display: inline;
}

/* Logo transport à la voile */
.voile-logo {
    height: 120px;
    width: auto;
}

/* Bannière sport pleine largeur */
.engagements-sport-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.sport-banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

/* Animations engagements */
.engagements-hero h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.engagements-hero .engagements-subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.engagements-section .engagements-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.engagements-section.visible .engagements-content {
    opacity: 1;
    transform: translateY(0);
}

.engagements-materiel .engagements-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.engagements-materiel.visible .engagements-content {
    opacity: 1;
    transform: translateY(0);
}

.engagements-voile .voile-logo {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.engagements-voile.visible .voile-logo {
    opacity: 1;
    transform: translateX(0);
}

.engagements-voile .engagements-voile-title {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.2s;
}

.engagements-voile.visible .engagements-voile-title {
    opacity: 1;
    transform: translateX(0);
}

.engagements-voile-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.engagements-voile.visible .engagements-voile-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.engagements-voile.visible .engagements-voile-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.engagements-voile.visible .engagements-voile-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.engagements-sport-banner {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.engagements-sport.visible .engagements-sport-banner {
    opacity: 1;
    transform: scale(1);
}

.engagements-sport-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.engagements-sport.visible .engagements-sport-content {
    opacity: 1;
    transform: translateY(0);
}

/* Animations FAQ uniquement sur page engagements */
.page-content .faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.page-content .faq-seo.visible .faq-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.page-content .faq-seo.visible .faq-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.page-content .faq-seo.visible .faq-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.page-content .faq-seo.visible .faq-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.page-content .faq-seo.visible .faq-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* Responsive engagements */
@media (max-width: 768px) {
    .engagements-hero {
        padding: 40px 20px 20px 20px;
    }

    .engagements-hero h1 {
        font-size: 26px;
        white-space: nowrap;
    }

    .engagements-subtitle {
        font-size: 12px;
        white-space: nowrap;
    }

    .engagements-voile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .engagements-voile-header h2 {
        font-size: 18px;
        margin-bottom: 0;
        line-height: 1.1;
    }

    .engagements-voile-header .engagements-tagline {
        font-size: 12px;
        letter-spacing: 1px;
        text-transform: none;
        line-height: 1.2;
    }

    .engagements-sport-header h2 {
        font-size: 26px;
    }

    .engagements-section {
        padding: 0 20px 50px 20px;
        margin-top: -5px;
    }

    .engagements-sport {
        padding: 50px 20px;
    }

    .engagements-voile-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .engagements-voile-content {
        padding: 40px 20px;
        order: 2;
    }

    .engagements-voile-image {
        order: 1;
        height: 250px;
    }

    .engagements-voile-header {
        gap: 15px;
    }

    .voile-logo {
        height: 85px;
    }

    .sport-banner-img {
        height: 250px;
    }

    .engagements-machine-banner {
        padding: 40px 20px;
    }

    .machine-banner-img {
        max-height: 200px;
    }
}

/* Formulaire contact - feedback + bouton */
.contact-right .btn-gold.contact-submit-btn {
    width: 100%;
    display: block;
}

.contact-feedback {
    margin-top: 15px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Archivo', sans-serif;
    display: none;
}

.contact-feedback--success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.contact-feedback--error {
    display: block;
    background-color: #fdecea;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ========================================
   PAGES ARTICLES BLOG
======================================== */

.article-page {
    background-color: var(--cream);
}

/* Breadcrumb */
.article-breadcrumb {
    padding: 110px 50px 0;
    max-width: 900px;
    margin: 0 auto;
}

.article-breadcrumb nav {
    font-size: 13px;
    color: var(--dark);
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-breadcrumb nav a {
    color: var(--dark);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.article-breadcrumb nav a:hover {
    opacity: 1;
}

.article-breadcrumb nav span {
    opacity: 0.4;
}

/* Header de l'article */
.article-header {
    padding: 30px 50px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.article-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
}

.article-date {
    font-size: 14px;
    color: var(--dark);
    opacity: 0.5;
}

.article-header h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.article-intro {
    font-size: 19px;
    color: var(--dark);
    opacity: 0.75;
    line-height: 1.65;
    font-weight: 300;
    max-width: 700px;
}

/* Image hero de l'article */
.article-hero-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 50px;
    display: block;
}

.article-hero-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
}

/* Corps de l'article */
.article-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px 80px;
}

.article-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin: 50px 0 18px;
    padding-top: 10px;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 35px 0 14px;
}

.article-body p {
    font-size: 17px;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 22px;
    opacity: 0.85;
}

.article-body ul,
.article-body ol {
    margin: 0 0 25px 20px;
    padding: 0;
}

.article-body li {
    font-size: 17px;
    color: var(--dark);
    line-height: 1.75;
    opacity: 0.85;
    margin-bottom: 8px;
}

.article-blockquote {
    border-left: 4px solid var(--gold);
    margin: 40px 0;
    padding: 20px 30px;
    background-color: rgba(180, 150, 84, 0.06);
    border-radius: 0 10px 10px 0;
}

.article-blockquote p {
    font-size: 20px !important;
    font-style: italic;
    font-weight: 400;
    color: var(--dark) !important;
    opacity: 1 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.article-highlight-box {
    background-color: var(--white);
    border-radius: 14px;
    padding: 28px 32px;
    margin: 35px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.article-highlight-box h3 {
    margin-top: 0 !important;
    font-size: 17px !important;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.article-highlight-box p {
    margin-bottom: 0 !important;
}

/* Séparateur */
.article-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 50px 0;
}

/* CTA fin d'article */
.article-cta {
    background-color: var(--dark);
    color: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.article-cta p {
    color: var(--white) !important;
    opacity: 0.85 !important;
    margin-bottom: 20px;
    font-size: 17px;
}

.article-cta-btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.article-cta-btn:hover {
    background-color: #9a7d44;
}

/* Articles liés */
.article-related {
    background-color: var(--white);
    padding: 70px 50px;
    margin-top: 30px;
}

.article-related-inner {
    max-width: 900px;
    margin: 0 auto;
}

.article-related-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 35px;
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-related-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--cream);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.article-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.article-related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: top;
}

.article-related-card-info {
    padding: 16px 18px 20px;
}

.article-related-card-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 7px;
}

.article-related-card-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
    margin: 0;
}

/* Responsive article */
@media (max-width: 900px) {
    .article-breadcrumb,
    .article-header {
        padding-left: 25px;
        padding-right: 25px;
    }

    .article-hero-img {
        padding: 0 25px;
    }

    .article-body {
        padding: 0 25px 60px;
    }

    .article-header h1 {
        font-size: 30px;
    }

    .article-intro {
        font-size: 17px;
    }

    .article-hero-img img {
        height: 250px;
    }

    .article-related {
        padding: 50px 25px;
    }

    .article-related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-related-card img {
        height: 180px;
    }
}
