/* ═══════════════════════════════════════
   BELLE DU MARSAN — Custom Styles
   Tailwind-compatible utility overrides
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --green-darkest: #0F1E0D;
    --green-dark: #1B3A1A;
    --green-mid: #2D5A27;
    --green-accent: #4A7C3F;
    --green-light: #6B9E3E;
    --gold: #C8A040;
    --gold-light: #D4B864;
    --cream: #F7F3EB;
    --cream-dark: #EDE7DA;
    --text-dark: #1A1A1A;
    --text-body: #3D3D3D;
    --text-muted: #6B6B6B;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant', serif;
    color: var(--green-dark);
    line-height: 1.2;
    font-weight: 600;
}

/* ═══════ NAVBAR ═══════ */
.bdm-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
    padding: 16px 0;
}

.bdm-navbar.scrolled {
    background: rgba(27, 58, 26, 0.97);
    box-shadow: 0 2px 24px rgba(0,0,0,0.2);
    padding: 8px 0;
    backdrop-filter: blur(12px);
}

.bdm-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.bdm-navbar-logo {
    height: 100px;
    transition: height 0.3s;
    flex-shrink: 0;
}

.bdm-navbar.scrolled .bdm-navbar-logo { height: 60px; }

.bdm-navbar-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.bdm-nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.bdm-nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
    text-decoration: none;
}

.bdm-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.bdm-nav-links a:hover::after,
.bdm-nav-links a:focus::after { width: 100%; }
.bdm-nav-links .current-menu-item > a::after,
.bdm-nav-links .current-menu-ancestor > a::after { width: 100%; }
.bdm-nav-links .current-menu-item > a,
.bdm-nav-links .current-menu-ancestor > a { color: var(--gold); }

.bdm-nav-cta {
    background: var(--gold) !important;
    color: var(--green-darkest) !important;
    padding: 10px 24px !important;
    border-radius: 4px;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: background 0.3s, transform 0.2s !important;
}

.bdm-nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.bdm-nav-cta::after { display: none !important; }

/* Last menu item = CTA Contact */
.bdm-nav-links > li:last-child > a {
    background: var(--gold);
    color: var(--green-darkest) !important;
    padding: 10px 24px !important;
    border-radius: 4px;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: background 0.3s, transform 0.2s !important;
}

.bdm-nav-links > li:last-child > a:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.bdm-nav-links > li:last-child > a::after { display: none !important; }

/* Dropdown */
.bdm-nav-links .menu-item-has-children { position: relative; }

.bdm-nav-links .menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(27, 58, 26, 0.97);
    backdrop-filter: blur(12px);
    list-style: none;
    min-width: 200px;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    border-top: 2px solid var(--gold);
    z-index: 100;
}

.bdm-nav-links .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
}

.bdm-nav-links .menu-item-has-children .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

.bdm-nav-links .menu-item-has-children .sub-menu a {
    display: block;
    padding: 10px 24px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    color: rgba(255,255,255,0.8) !important;
}

.bdm-nav-links .menu-item-has-children .sub-menu a:hover {
    background: rgba(200, 160, 64, 0.12);
    color: var(--gold) !important;
}

.bdm-nav-links .menu-item-has-children .sub-menu a::after { display: none !important; }
.bdm-nav-links .menu-item-has-children .sub-menu .current-menu-item > a { color: var(--gold) !important; }

/* Hamburger */
.bdm-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.bdm-hamburger span {
    width: 24px; height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
    display: block;
}

.bdm-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.bdm-hamburger.active span:nth-child(2) { opacity: 0; }
.bdm-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════ BUTTONS ═══════ */
.btn-bdm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
}

.btn-bdm-gold {
    background: var(--gold);
    color: var(--green-darkest);
}

.btn-bdm-gold:hover {
    background: var(--gold-light);
    color: var(--green-darkest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 160, 64, 0.3);
}

.btn-bdm-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-bdm-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-2px);
}

.btn-bdm-green {
    background: var(--green-mid);
    color: #fff;
}

.btn-bdm-green:hover {
    background: var(--green-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.3);
}

/* CF7 : le thème force .wpcf7-submit en --color-primary !important.
   On rétablit les couleurs BDM sur le bouton du formulaire de contact. */
.bdm-contact-form input.wpcf7-submit.btn-bdm-gold {
    background-color: var(--gold) !important;
    border-color: var(--gold);
    color: var(--green-darkest) !important;
}
.bdm-contact-form input.wpcf7-submit.btn-bdm-gold:hover {
    background-color: var(--gold-light) !important;
}
.bdm-contact-form input.wpcf7-submit.btn-bdm-green {
    background-color: var(--green-mid) !important;
    border-color: var(--green-mid);
    color: #fff !important;
}
.bdm-contact-form input.wpcf7-submit.btn-bdm-green:hover {
    background-color: var(--green-accent) !important;
}

/* ═══════ SECTION COMMONS ═══════ */
.bdm-section { padding: 100px 0; }
.bdm-section-dark {
    background: var(--green-dark);
    color: #fff;
}
.bdm-section-dark h2,
.bdm-section-dark h3 { color: #fff; }
.bdm-section-cream { background: var(--cream); }

.bdm-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.bdm-section-title {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 20px;
}

.bdm-section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.bdm-section-dark .bdm-section-subtitle { color: rgba(255,255,255,0.65); }

.bdm-gold-line {
    width: 60px; height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

/* Pattern overlay */
.bdm-has-pattern { position: relative; }
.bdm-has-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.bdm-has-pattern > * { position: relative; z-index: 1; }

/* ═══════ HERO ═══════ */
.bdm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--green-darkest);
}

.bdm-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bdm-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    will-change: opacity;
}

.bdm-hero-slide.active { opacity: 1; }

.bdm-hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: bdmHeroKenBurns 12s ease-in-out infinite alternate;
}

.bdm-hero-slide:nth-child(2) img { animation-delay: -4s; }
.bdm-hero-slide:nth-child(3) img { animation-delay: -8s; }

@keyframes bdmHeroKenBurns {
    0% { transform: scale(1.08) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, -1%); }
}

.bdm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 30, 13, 0.6) 0%,
        rgba(15, 30, 13, 0.4) 40%,
        rgba(15, 30, 13, 0.5) 70%,
        rgba(15, 30, 13, 0.75) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.bdm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 24px;
}

.bdm-hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200, 160, 64, 0.4);
    padding: 8px 24px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: bdmFadeUp 1.2s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bdm-hero h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(40px);
    animation: bdmFadeUp 1.4s 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bdm-hero h1 .gold { color: var(--gold); }

.bdm-hero-subtitle {
    font-family: 'Cormorant', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: bdmFadeUp 1.4s 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bdm-hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: bdmFadeUp 1.2s 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bdm-hero-scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: bdmFadeUp 1.2s 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    text-align: center;
}

.bdm-hero-scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto 8px;
    animation: bdmScrollPulse 2.5s ease-in-out infinite;
}

.bdm-hero-scroll span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

@keyframes bdmFadeUp {
    to { opacity: 1; transform: translateY(0) translateX(0); }
}

/* Hero scroll needs its own animation to keep translateX(-50%) */
.bdm-hero-scroll {
    animation: bdmFadeUpCentered 1.2s 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bdmFadeUpCentered {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes bdmScrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ═══════ ABOUT ═══════ */
.bdm-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bdm-about-images { position: relative; }

.bdm-about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.bdm-about-img-accent {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px; height: 200px;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.bdm-about-year {
    position: absolute;
    top: -20px; left: -20px;
    background: var(--green-dark);
    color: var(--gold);
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 700;
    padding: 16px 24px;
    line-height: 1;
}

.bdm-about-year span {
    display: block;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.bdm-about-text p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
}

.bdm-about-text .highlight {
    font-family: 'Cormorant', serif;
    font-size: 21px;
    font-style: italic;
    color: var(--green-dark);
    line-height: 1.6;
    margin: 36px 0;
    padding: 0 0 0 24px;
    border-left: 2px solid var(--gold);
}

/* ═══════ STATS ═══════ */
.bdm-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.bdm-stat-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.bdm-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; height: 60%; width: 1px;
    background: rgba(255,255,255,0.1);
}

.bdm-stat-icon {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    background: rgba(200, 160, 64, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdm-stat-icon svg {
    width: 24px; height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.bdm-stat-number {
    font-family: 'Cormorant', serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.bdm-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

/* ═══════ ENGAGEMENTS ═══════ */
.bdm-engagements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bdm-engagement-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    margin: 0;
}

.bdm-engagement-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bdm-engagement-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdm-engagement-icon svg {
    width: 22px; height: 22px;
    stroke: var(--green-mid);
    fill: none;
    stroke-width: 1.5;
}

.bdm-engagement-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--green-dark);
}

.bdm-engagement-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.bdm-engagement-imgs { position: relative; }

.bdm-engagement-imgs img:first-child {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.bdm-engagement-imgs img:last-child {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px; height: 200px;
    object-fit: cover;
    border: 6px solid var(--cream);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.bdm-engagement-quote {
    margin-top: 40px;
    padding: 0 0 0 24px;
    border-left: 2px solid var(--gold);
}

.bdm-engagement-quote p {
    font-family: 'Cormorant', serif;
    font-size: 21px;
    font-style: italic;
    color: var(--green-dark);
    line-height: 1.6;
    margin: 0;
}

/* ═══════ CHEFS ═══════ */
.bdm-chefs-section { position: relative; overflow: hidden; }

.bdm-chefs-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(15, 30, 13, 0.92) 0%, rgba(27, 58, 26, 0.88) 100%),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80') center/cover;
}

.bdm-chefs-content { position: relative; z-index: 2; }

.bdm-chefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bdm-chef-card {
    text-align: center;
    padding: 48px 32px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    transition: all 0.4s ease;
    cursor: pointer;
}

.bdm-chef-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.bdm-chef-img-wrapper {
    overflow: hidden;
    margin-bottom: 24px;
}

.bdm-chef-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.bdm-chef-card:hover .bdm-chef-img {
    transform: scale(1.05);
    filter: brightness(1);
}

.bdm-chef-name {
    font-family: 'Cormorant', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.bdm-chef-restaurant {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
    font-style: italic;
}

/* ═══════ VENTE DIRECTE ═══════ */
.bdm-vente-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.bdm-vente-card {
    padding: 48px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}

.bdm-vente-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }

.bdm-vente-card-icon {
    width: 56px; height: 56px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bdm-vente-card-icon svg {
    width: 24px; height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.bdm-vente-card h3 { font-size: 26px; margin-bottom: 16px; }
.bdm-vente-card p,
.bdm-vente-card-text p { font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.bdm-vente-card-text { font-size: 15px; line-height: 1.7; }

.bdm-vente-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--cream-dark);
}

.bdm-vente-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.bdm-vente-info-item svg {
    width: 18px; height: 18px; min-width: 18px;
    stroke: var(--green-mid);
    fill: none;
    stroke-width: 1.5;
    margin-top: 2px;
}

.bdm-vente-cta {
    grid-column: 1 / -1;
    padding: 48px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.bdm-vente-cta h4 {
    font-family: 'Cormorant', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.bdm-vente-cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

/* ═══════ PRODUITS GRID ═══════ */
.bdm-produits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bdm-produit-card {
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.bdm-produit-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.bdm-produit-img-wrapper { overflow: hidden; }

.bdm-produit-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bdm-produit-card:hover .bdm-produit-img { transform: scale(1.05); }

.bdm-produit-body { padding: 20px 16px 24px; }

.bdm-produit-name {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* ═══════ PARTNERS ═══════ */
.bdm-partners-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.bdm-partner-logo {
    height: 140px;
    width: auto;
    transition: transform 0.3s;
    cursor: pointer;
}

.bdm-partner-logo:hover { transform: scale(1.05); }

/* ═══════ CONTACT + MAP ═══════ */
.bdm-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.bdm-contact-info {
    background: var(--green-dark);
    padding: 60px 48px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bdm-contact-info h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 32px;
}

.bdm-contact-places {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.bdm-contact-place {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bdm-contact-place:first-child { padding-top: 0; }
.bdm-contact-place:last-child { border-bottom: none; }

.bdm-contact-place-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.bdm-contact-place-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(200, 160, 64, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdm-contact-place-icon svg {
    width: 18px; height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.bdm-contact-place h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}

.bdm-contact-place-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-left: 52px;
}

.bdm-contact-detail {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.bdm-contact-detail svg {
    width: 16px; height: 16px; min-width: 16px;
    stroke: rgba(255,255,255,0.4);
    fill: none;
    stroke-width: 1.5;
    margin-top: 3px;
}

.bdm-contact-detail span {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.bdm-contact-direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.bdm-contact-direct a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #fff;
    transition: color 0.3s;
    text-decoration: none;
}

.bdm-contact-direct a:hover { color: var(--gold); }

.bdm-contact-direct svg {
    width: 18px; height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

#bdm-map {
    min-height: 500px;
    width: 100%;
}

/* ═══════ FOOTER ═══════ */
.bdm-footer {
    background: var(--green-darkest);
    padding: 48px 0 0;
    color: #fff;
}

.bdm-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bdm-footer-logo img {
    height: 60px;
    width: auto;
}

.bdm-footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bdm-footer-links a {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
    text-decoration: none;
}

.bdm-footer-links a:hover { color: var(--gold); }

.bdm-footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}

.bdm-footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.bdm-footer-bottom a:hover { color: var(--gold); }

/* ═══════ SCROLL REVEAL ═══════ */
.bdm-reveal,
.bdm-reveal-left,
.bdm-reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bdm-reveal { transform: translateY(30px); }
.bdm-reveal-left { transform: translateX(-40px); }
.bdm-reveal-right { transform: translateX(40px); }

.bdm-reveal.visible,
.bdm-reveal-left.visible,
.bdm-reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ═══════ PAGE HERO (inner pages) ═══════ */
.bdm-page-hero {
    position: relative;
    padding: 200px 0 100px;
    background: var(--green-darkest);
    overflow: hidden;
    text-align: center;
}

.bdm-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bdm-page-hero-bg img,
.bdm-page-hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.bdm-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,30,13,0.7) 0%, rgba(15,30,13,0.5) 50%, rgba(15,30,13,0.8) 100%);
    z-index: 1;
}

.bdm-page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.bdm-page-hero-content .bdm-hero-badge {
    margin-bottom: 24px;
    animation: none;
    opacity: 1;
    transform: none;
}

.bdm-page-hero-content h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    animation: none;
    opacity: 1;
    transform: none;
}

.bdm-page-hero-content h1 .gold { color: var(--gold); }

.bdm-page-hero-content .bdm-hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    max-width: 600px;
    margin: 0 auto;
    animation: none;
    opacity: 1;
    transform: none;
}

/* ═══════ PRODUCTION SECTION ═══════ */
.bdm-production-body { padding: 100px 0; }

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

.bdm-production-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.bdm-production-text .highlight {
    font-family: 'Cormorant', serif;
    font-size: 21px;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
    margin: 32px 0;
    padding: 0 0 0 24px;
    border-left: 2px solid var(--gold);
}

.bdm-production-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bdm-production-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Cormorant', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    transition: padding-left 0.3s ease;
}

.bdm-production-list li:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.bdm-production-list-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(200, 160, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdm-production-list-icon svg {
    width: 18px; height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.bdm-production-list li span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    margin-left: auto;
    letter-spacing: 0.5px;
}

.bdm-production-outro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding-top: 60px;
}

.bdm-production-outro p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
}

/* ═══════ MOSAIQUE PHOTOS ═══════ */
.bdm-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 4px;
    background: var(--green-dark);
    border: 4px solid var(--green-dark);
}

.bdm-mosaic-item {
    overflow: hidden;
    position: relative;
}

.bdm-mosaic-item:first-child {
    grid-row: 1 / 3;
}

.bdm-mosaic-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* ═══════ CHEFS SHOWCASE ═══════ */
.bdm-chefs-showcase { background: #fff; padding: 120px 0; }

.bdm-chefs-layout {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 80px;
    align-items: center;
}

.bdm-chefs-text-col .bdm-section-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--green-darkest);
    margin-bottom: 40px;
}

.bdm-chefs-text-col p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 28px;
}

.bdm-chefs-text-col p:last-child { margin-bottom: 0; }
.bdm-chefs-text-col p strong { color: var(--green-darkest); font-weight: 600; }

.bdm-chefs-img-col { position: relative; }

.bdm-chefs-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.bdm-chefs-img-accent {
    position: absolute;
    bottom: -24px; left: -24px;
    width: 180px; height: 180px;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* ═══════ GALLERY ═══════ */
.bdm-gallery-section {
    padding: 80px 0;
    background: var(--cream);
}

.bdm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 6px;
}

.bdm-gallery-item {
    overflow: hidden;
    position: relative;
}

.bdm-gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bdm-gallery-item:hover img { transform: scale(1.05); }

/* ═══════ CTA BANNER ═══════ */
.bdm-cta-banner { padding: 60px 0; }

.bdm-cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.bdm-cta-banner-text { flex: 1; }

.bdm-cta-banner-text h4 {
    font-family: 'Cormorant', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.bdm-cta-banner-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

/* ═══════ ASPERGE TRIO ═══════ */
.bdm-asperge-trio-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.bdm-asperge-trio {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}

.bdm-asperge-trio-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.bdm-asperge-trio-text {
    text-align: center;
    padding: 20px 0;
}

.bdm-asperge-trio-text h2 {
    font-family: 'Cormorant', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.15;
}

.bdm-asperge-trio-text .bdm-asperge-subtitle {
    font-family: 'Cormorant', serif;
    font-size: clamp(17px, 1.8vw, 21px);
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.bdm-asperge-trio-text .bdm-gold-line { margin: 0 auto 32px; }

.bdm-asperge-trio-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}

.bdm-asperge-trio-text p:last-child { margin-bottom: 0; }

/* ═══════ PRODUITS TEXT GRID (dark 2 cols) ═══════ */
.bdm-produits-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.bdm-produits-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.bdm-produits-cta-inline { margin-top: 40px; }

/* ═══════ STATS BAND ═══════ */
.bdm-stats-band {
    padding: 40px 0;
    background: var(--green-dark);
}

.bdm-stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.bdm-stats-band-item {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.bdm-stats-band-item:last-child { border-right: none; }

.bdm-stats-band-number {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.bdm-stats-band-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

/* ═══════ FEATURES STRIP ═══════ */
.bdm-features-strip {
    padding: 80px 0;
    background: var(--cream);
}

.bdm-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bdm-feature-card {
    padding: 32px 24px;
    background: #fff;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.bdm-feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.bdm-feature-card-icon {
    width: 48px; height: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.bdm-feature-card-icon svg {
    width: 20px; height: 20px;
    stroke: var(--green-mid); fill: none; stroke-width: 1.5;
}

.bdm-feature-card h4 {
    font-family: 'Cormorant', serif;
    font-size: 22px; font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.bdm-feature-card p {
    font-size: 14px; line-height: 1.6;
    color: var(--text-muted); margin: 0;
}

/* ═══════ PRODUCT TEXT GRID (50/50) ═══════ */
.bdm-product-text-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
}

.bdm-product-text-col {
    padding-right: 15px;
}

.bdm-product-text-col p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.bdm-product-text-imgs {
    position: relative;
    padding-left: 15px;
}

.bdm-product-text-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.bdm-product-text-img-accent {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px; height: 200px;
    object-fit: cover;
    border: 6px solid var(--green-dark);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ═══════ COMPACT LIST ═══════ */
/* ═══════ COMPACT LIST ═══════ */
.bdm-compact-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    padding: 0 !important;
    margin: 0;
}

.bdm-compact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Cormorant', serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    white-space: normal;
}

.bdm-compact-list-icon {
    width: 32px; height: 32px; min-width: 32px;
    background: rgba(200,160,64,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.bdm-compact-list-icon svg {
    width: 14px; height: 14px;
    stroke: var(--gold); fill: none; stroke-width: 1.5;
}

/* ═══════ CONTACT FORM ═══════ */
.bdm-contact-form-section { padding: 80px 0; }

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

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

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

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

.bdm-form-group label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--green-dark);
}

.bdm-form-group input,
.bdm-form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--cream-dark);
    background: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-body);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.bdm-form-group input:focus,
.bdm-form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,160,64,0.1);
}

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

.bdm-form-group input::placeholder,
.bdm-form-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 13px;
}

.bdm-contact-side {
    background: var(--cream);
    padding: 48px;
}

.bdm-contact-side h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.bdm-contact-side > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.bdm-contact-side-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bdm-contact-side-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bdm-contact-side-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.bdm-contact-side-icon svg {
    width: 18px; height: 18px;
    stroke: var(--green-mid); fill: none; stroke-width: 1.5;
}

.bdm-contact-side-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.bdm-contact-side-item a,
.bdm-contact-side-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

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

/* ═══════ CASIER LIST ═══════ */
.bdm-casier-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bdm-casier-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.bdm-casier-list li svg {
    width: 16px; height: 16px; min-width: 16px;
    stroke: var(--green-mid);
    fill: none;
    stroke-width: 2;
}

/* ═══════ CONTACT FORM SECTION ═══════ */
.bdm-contact-form-section {
    background: var(--cream);
    padding: 100px 0;
}

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

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

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

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

.bdm-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
}

.bdm-form-group input,
.bdm-form-group textarea,
.bdm-form-group select {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    padding: 14px 18px;
    background: var(--white, #fff);
    border: 1px solid var(--cream-dark);
    color: var(--text-body);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.bdm-form-group input::placeholder,
.bdm-form-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 14px;
}

.bdm-form-group input:focus,
.bdm-form-group textarea:focus,
.bdm-form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,160,64,0.12);
}

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

.bdm-form-submit {
    margin-top: 8px;
}

.bdm-contact-side {
    padding: 48px;
    background: var(--green-dark);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bdm-contact-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.bdm-contact-side > * {
    position: relative;
    z-index: 1;
}

.bdm-contact-side h3 {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    color: var(--white, #fff);
    margin-bottom: 12px;
}

.bdm-contact-side > p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    line-height: 1.7;
}

.bdm-contact-side-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.bdm-contact-side-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bdm-contact-side-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: rgba(200,160,64,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdm-contact-side-icon svg {
    width: 20px; height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.bdm-contact-side-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.bdm-contact-side-item p,
.bdm-contact-side-item a {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

/* WPForms integration overrides */
.bdm-contact-form-section .wpforms-container .wpforms-form .wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bdm-contact-form-section .wpforms-container .wpforms-form input[type="text"],
.bdm-contact-form-section .wpforms-container .wpforms-form input[type="email"],
.bdm-contact-form-section .wpforms-container .wpforms-form input[type="tel"],
.bdm-contact-form-section .wpforms-container .wpforms-form textarea,
.bdm-contact-form-section .wpforms-container .wpforms-form select {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    padding: 14px 18px;
    background: var(--white, #fff);
    border: 1px solid var(--cream-dark);
    color: var(--text-body);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    border-radius: 0;
}

.bdm-contact-form-section .wpforms-container .wpforms-form input:focus,
.bdm-contact-form-section .wpforms-container .wpforms-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,160,64,0.12);
}

.bdm-contact-form-section .wpforms-container .wpforms-form .wpforms-submit-container button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    background: var(--gold);
    color: var(--green-darkest);
    transition: all 0.2s;
}

.bdm-contact-form-section .wpforms-container .wpforms-form .wpforms-submit-container button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,160,64,0.3);
}

/* ═══════ ASPERGE TRIO ═══════ */
.bdm-asperge-trio-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.bdm-asperge-trio {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}

.bdm-asperge-trio-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.bdm-asperge-trio-text {
    text-align: center;
    padding: 20px 0;
}

.bdm-asperge-trio-text .bdm-section-title {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.bdm-asperge-trio-text .bdm-section-title .gold { color: var(--gold); }

.bdm-asperge-trio-text .bdm-asperge-subtitle {
    font-family: 'Cormorant', serif;
    font-size: clamp(17px, 1.8vw, 21px);
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.bdm-asperge-trio-text .bdm-gold-line {
    margin: 0 auto 32px;
}

.bdm-asperge-trio-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 16px;
}

.bdm-asperge-trio-text p:last-child {
    margin-bottom: 0;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
    .bdm-chefs-grid { grid-template-columns: repeat(2, 1fr); }
    .bdm-produits-grid { grid-template-columns: repeat(2, 1fr); }
    .bdm-features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════ FEATURES STRIP ═══════ */
.bdm-features-strip {
    padding: 80px 0;
    background: var(--cream);
}

.bdm-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bdm-feature-card {
    padding: 32px 24px;
    background: #fff;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.bdm-feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.bdm-feature-card-icon {
    width: 48px; height: 48px;
    background: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.bdm-feature-card-icon svg {
    width: 20px; height: 20px;
    stroke: var(--green-mid); fill: none; stroke-width: 1.5;
}

.bdm-feature-card h4 {
    font-family: 'Cormorant', serif;
    font-size: 22px; font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.bdm-feature-card p {
    font-size: 14px; line-height: 1.6;
    color: var(--text-muted); margin-bottom: 0;
}

.bdm-features-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════ SECTION HEADER CENTER ═══════ */
.bdm-section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

/* ═══════ PRODUCT ABOUT (dark variant) ═══════ */
.bdm-about-grid-reverse {
    direction: rtl;
}

.bdm-about-grid-reverse > * {
    direction: ltr;
}

/* compact-list duplicate removed */

@media (max-width: 768px) {
    .bdm-nav-links { display: none; }
    .bdm-nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(27, 58, 26, 0.98);
        padding: 24px;
        gap: 16px;
    }
    .bdm-hamburger { display: flex; }

    .bdm-about-grid,
    .bdm-engagements-grid,
    .bdm-vente-grid,
    .bdm-contact-grid { grid-template-columns: 1fr; }

    .bdm-chefs-grid { grid-template-columns: 1fr; }
    .bdm-produits-grid { grid-template-columns: repeat(2, 1fr); }
    .bdm-stats-grid { grid-template-columns: 1fr; }

    .bdm-stat-card:not(:last-child)::after { display: none; }

    .bdm-product-text-grid { grid-template-columns: 1fr; }
    .bdm-product-text-col { padding-right: 0; }
    .bdm-product-text-imgs { padding-left: 0; margin-top: 32px; }
    .bdm-product-text-img-accent { right: 16px; bottom: -16px; width: 140px; height: 140px; }
    .bdm-asperge-trio { grid-template-columns: 1fr; gap: 24px; }
    .bdm-asperge-trio-text { padding: 0; }
    .bdm-produits-text-grid { grid-template-columns: 1fr; gap: 40px; }
    .bdm-stats-band-grid { grid-template-columns: repeat(2, 1fr); }
    .bdm-stats-band-item { border-right: none; }
    .bdm-features-grid { grid-template-columns: 1fr; }
    .bdm-compact-list { grid-template-columns: 1fr; }
    .bdm-contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .bdm-form-row { grid-template-columns: 1fr; }
    .bdm-chefs-layout { grid-template-columns: 1fr; gap: 48px; }
    .bdm-chefs-showcase { padding: 64px 0; }
    .bdm-chefs-img-accent { bottom: -16px; left: -16px; width: 140px; height: 140px; }
    .bdm-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .bdm-cta-banner-inner { flex-direction: column; text-align: center; }
    .bdm-production-grid { grid-template-columns: 1fr; }
    .bdm-asperge-trio { grid-template-columns: 1fr 1fr; gap: 24px; }
    .bdm-asperge-trio-text { grid-column: 1 / -1; order: -1; }
    .bdm-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .bdm-mosaic-item:first-child { grid-row: 1 / 3; }
    .bdm-page-hero { padding: 140px 0 60px; }

    .bdm-contact-form-grid { grid-template-columns: 1fr; }
    .bdm-form-row { grid-template-columns: 1fr; }
    .bdm-contact-side { padding: 40px 24px; }
    .bdm-contact-form-section { padding: 64px 0; }

    .bdm-about-img-accent { right: 16px; bottom: -16px; width: 140px; height: 140px; }
    .bdm-about-year { top: -10px; left: -10px; font-size: 36px; padding: 12px 16px; }

    .bdm-engagement-imgs img:last-child { right: 16px; bottom: -16px; width: 140px; height: 140px; }

    .bdm-vente-cta { flex-direction: column; text-align: center; }

    .bdm-contact-place-details { grid-template-columns: 1fr; padding-left: 0; }

    .bdm-section { padding: 60px 0; }

    .bdm-footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .bdm-footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

    #bdm-map { min-height: 350px; }

    .bdm-stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .bdm-stats-band-item { border-right: none; }
    .bdm-features-grid { grid-template-columns: 1fr; }
    .bdm-compact-list { grid-template-columns: 1fr; }
    .bdm-compact-list li { white-space: normal; }
    .bdm-about-grid-reverse { direction: ltr; }
}

@media (max-width: 480px) {
    .bdm-produits-grid { grid-template-columns: 1fr; }
    .bdm-vente-card { padding: 32px 24px; }
    .bdm-stats-band-grid { grid-template-columns: 1fr 1fr; }
}
