/* ============================================
   EDEN225 — CHARTE GRAPHIQUE V2
   Couleurs conservées · Design entièrement revu
   ============================================ */

/* ===== IMPORT POLICES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ============================================
   VARIABLES
   ============================================ */
:root {
    /* ===== COULEURS (inchangées) ===== */
    --primary-green:   #42612c;
    --dark-green:      #2e4520;
    --darker-green:    #1f3015;
    --light-green:     #EAF5E3;
    --accent-orange:   #E67E22;
    --accent-yellow:   #F1C40F;
    --gold:            #C9A84C;
    --cream:           #FDF8F0;
    --mint:            #D4E8C8;
    --sage:            #8BA87A;
    --terracotta:      #C47A5A;

    /* ===== TEXTE ===== */
    --text-dark:       #141A0E;
    --text-body:       #3D4A35;
    --text-gray:       #617060;
    --text-light:      #96A690;
    --text-white:      #FFFFFF;

    /* ===== FONDS ===== */
    --bg-white:        #FFFFFF;
    --bg-off:          #F7F9F5;
    --bg-light:        #F2F5EF;
    --bg-dark:         #1A2E10;
    --footer-dark:     #111C0A;

    /* ===== TYPOGRAPHIE ===== */
    --font-display:    'Playfair Display', Georgia, serif;
    --font-body:       'DM Sans', system-ui, sans-serif;

    /* ===== RAYONS ===== */
    --r-xs:  4px;
    --r-sm:  8px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  40px;
    --r-pill:9999px;

    /* ===== OMBRES ===== */
    --shadow-xs:  0 1px 4px rgba(20,26,14,.05);
    --shadow-sm:  0 2px 12px rgba(20,26,14,.07);
    --shadow-md:  0 6px 28px rgba(20,26,14,.10);
    --shadow-lg:  0 16px 56px rgba(20,26,14,.14);
    --shadow-xl:  0 32px 80px rgba(20,26,14,.18);
    --shadow-green: 0 8px 32px rgba(66,97,44,.22);

    /* ===== TRANSITIONS ===== */
    --t-fast:   .18s ease;
    --t-mid:    .35s cubic-bezier(.4,0,.2,1);
    --t-slow:   .6s  cubic-bezier(.4,0,.2,1);

    /* ===== ESPACEMENTS ===== */
    --section-v:  100px;
    --section-sm:  64px;
}

/* ============================================
   1. RESET & BASE
   ============================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.75;
}

img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; transition: color var(--t-fast); }
ul  { list-style:none; }

/* ============================================
   2. TYPOGRAPHIE
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.15;
}

h1 { font-size: clamp(34px, 5.5vw, 60px); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(28px, 3.8vw, 46px); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; }
h4 { font-size: clamp(16px, 1.4vw, 19px); font-weight: 600; }

p { font-size: 16px; line-height: 1.8; }

/* Accent visuel titre de section */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: var(--r-pill);
}

/* ============================================
   3. UTILITAIRES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

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

/* Séparateur décoratif */
.divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    border-radius: var(--r-pill);
    margin: 20px 0 32px;
}

.divider--center { margin-left: auto; margin-right: auto; }

/* ============================================
   4. BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--r-sm);
    transition: all var(--t-mid);
    position: relative;
    overflow: hidden;
}

/* Shimmer au survol */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.16) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .5s ease;
}

.btn:hover::after { transform: translateX(100%); }
.btn:hover        { transform: translateY(-2px); }
.btn:active       { transform: translateY(0); }

/* Variantes */
.btn-primary {
    background: var(--primary-green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(66,97,44,.25);
}
.btn-primary:hover { background: var(--dark-green); box-shadow: var(--shadow-green); }

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

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,.55);
}
.btn-outline:hover { background: white; color: var(--primary-green); border-color: white; }

.btn-ghost {
    background: transparent;
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
}
.btn-ghost:hover { background: var(--primary-green); color: white; }

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 15px; }

/* Lien flèche */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    transition: gap var(--t-mid), color var(--t-fast);
}
.link-arrow::after { content: '→'; }
.link-arrow:hover  { gap: 14px; color: var(--dark-green); }

/* ============================================
   5. HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    height: 76px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(66,97,44,.08);
    transition: height var(--t-mid), box-shadow var(--t-mid), background var(--t-mid);
}

.header.scrolled {
    height: 66px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 2px 20px rgba(20,26,14,.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    height: 44px;
    width: auto;
    transition: height var(--t-mid);
}

.header.scrolled .logo img { height: 38px; }

/* Nav desktop */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-desktop a {
    position: relative;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 14px;
    border-radius: var(--r-xs);
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    border-radius: var(--r-pill);
    transition: width var(--t-mid);
}

.nav-desktop a:hover          { color: var(--primary-green); }
.nav-desktop a:hover::after   { width: calc(100% - 28px); }
.nav-desktop a.active         { color: var(--primary-green); font-weight: 600; }
.nav-desktop a.active::after  { width: calc(100% - 28px); }

/* Actions header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--text-gray);
    padding: 6px 10px;
    border-radius: var(--r-xs);
    background: var(--bg-light);
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast);
}
.lang-switch:hover { background: var(--light-green); color: var(--primary-green); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: var(--r-xs);
    transition: background var(--t-fast);
}
.hamburger:hover { background: var(--bg-light); }
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform var(--t-mid), opacity var(--t-mid);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg)  translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   6. OFFCANVAS
   ============================================ */
.offcanvas-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--t-mid);
    backdrop-filter: blur(4px);
}
.offcanvas-overlay.active { display: block; opacity: 1; }

.offcanvas {
    position: fixed;
    top: 0; right: 0;
    width: 320px;
    max-width: 88vw;
    height: 100vh;
    background: white;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform var(--t-mid);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -12px 0 60px rgba(0,0,0,.12);
}
.offcanvas.active { transform: translateX(0); }

/* Bande verte haute */
.offcanvas::before {
    content: '';
    display: block;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    flex-shrink: 0;
}

.offcanvas-close {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--bg-light);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: background var(--t-fast);
    z-index: 1;
}
.offcanvas-close:hover { background: var(--light-green); color: var(--primary-green); }

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    padding: 64px 28px 32px;
    gap: 2px;
    flex: 1;
    overflow-y: auto;
}

.offcanvas-nav a {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 13px 16px;
    border-radius: var(--r-sm);
    border-left: 3px solid transparent;
    transition: all var(--t-fast);
}

.offcanvas-nav a:hover {
    background: var(--bg-off);
    border-left-color: var(--primary-green);
    color: var(--primary-green);
    padding-left: 22px;
}

/* ============================================
   7. HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-top: 76px;
}

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

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 8s ease;
    filter: brightness(.48) saturate(.85);
}

.hero:hover .hero-bg img { transform: scale(1); }

/* Dégradé directionnel */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(to top,  rgba(20,46,16,.75) 0%, transparent 55%),
        linear-gradient(to right, rgba(20,46,16,.45) 0%, transparent 70%);
}

/* Motif texture subtile */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 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.025'%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");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.18);
    border: 1px solid rgba(201,168,76,.35);
    color: var(--accent-yellow);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: var(--r-pill);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-yellow);
}

.hero h1 {
    color: white;
    font-size: clamp(30px, 5.5vw, 58px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 28px;
    text-shadow: 0 4px 40px rgba(0,0,0,.25);
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-yellow);
}

.hero p {
    font-size: 18px;
    opacity: .9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero .btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   8. CARROUSEL
   ============================================ */
.hero-carousel-section {
    padding: 72px 0 96px;
    background: var(--bg-white);
    position: relative;
}

/* Ligne déco latérale */
.hero-carousel-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-green), var(--gold));
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
}

.carousel-track {
    display: flex;
    transition: transform .75s cubic-bezier(.77,0,.18,1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.carousel-slide:hover img { transform: scale(1.03); }

.carousel-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 48px 40px;
    background: linear-gradient(transparent, rgba(10,26,8,.82));
    color: white;
}

.carousel-caption .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    padding: 5px 16px;
    border-radius: var(--r-xs);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.carousel-caption h3 {
    font-size: clamp(20px, 2.5vw, 30px);
    color: white;
    margin-bottom: 4px;
}

.carousel-caption p { font-size: 15px; opacity: .8; }

/* Boutons carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,.22);
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-mid);
}
.carousel-btn:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-50%) scale(1.08);
    border-color: rgba(255,255,255,.5);
}
.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 22px; right: 48px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all var(--t-mid);
}

.carousel-dots .dot.active {
    background: white;
    width: 28px;
    border-radius: var(--r-pill);
}

/* ============================================
   9. STATS
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--bg-off);
    position: relative;
    overflow: hidden;
}

/* Fond décoratif */
.stats-section::before {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66,97,44,.06), transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 36px 24px;
    text-align: center;
    position: relative;
}

/* Séparateurs verticaux */
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(66,97,44,.15), transparent);
}

.stat-item:hover { background: var(--bg-white); border-radius: var(--r-md); }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
}

.stat-number .suffix {
    font-size: .55em;
    color: var(--gold);
    vertical-align: super;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: .02em;
}

/* ============================================
   10. ABOUT (CARDS MISSION/VISION/VALEURS)
   ============================================ */
.about-section {
    padding: var(--section-v) 0;
    background: var(--bg-white);
}

.about-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.about-header h2 {
    max-width: 620px;
}

.about-header .about-subtitle {
    max-width: 360px;
    color: var(--text-gray);
    font-size: 15.5px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-card {
    background: var(--bg-white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(66,97,44,.08);
    transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-mid);
    z-index: 1;
}

.about-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.about-card:hover::before { transform: scaleX(1); }

.about-card .card-icon {
    width: 100%; height: 220px;
    background: var(--light-green);
    overflow: hidden;
    position: relative;
}

.about-card .card-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.about-card:hover .card-icon img { transform: scale(1.06); }

.about-card-body {
    padding: 28px 30px 32px;
}

.about-card h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14.5px;
    color: var(--text-gray);
    line-height: 1.85;
}

.about-card ul { margin-top: 14px; }

.about-card ul li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px solid rgba(66,97,44,.06);
}
.about-card ul li:last-child { border-bottom: none; }

.about-card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 15px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* ============================================
   11. INDICATEURS (section verte 2 colonnes)
   ============================================ */
.indicateurs-section {
    background: var(--darker-green);
    color: white;
    padding: var(--section-v) 0;
    position: relative;
    overflow: hidden;
}

/* Cercles décoratifs */
.indicateurs-section::before,
.indicateurs-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.indicateurs-section::before {
    width: 700px; height: 700px;
    top: -200px; right: -200px;
    background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
}
.indicateurs-section::after {
    width: 400px; height: 400px;
    bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
}

.indicateurs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.indicateurs-content .section-eyebrow { color: var(--accent-yellow); }
.indicateurs-content .section-eyebrow::before { background: var(--accent-yellow); }

.indicateurs-content h2 { color: white; margin-bottom: 20px; }

.indicateurs-content .date {
    display: inline-block;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    padding: 5px 18px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--accent-yellow);
}

.indicateurs-content p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,.82);
    margin-bottom: 28px;
}

.indicateurs-content ul { margin-bottom: 40px; }

.indicateurs-content ul li {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.indicateurs-content ul li:last-child { border-bottom: none; }

.indicateurs-content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 17px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid rgba(201,168,76,.3);
}

.indicateurs-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.indicateurs-images img {
    border-radius: var(--r-md);
    width: 100%; height: 190px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: transform var(--t-mid);
    border: 1px solid rgba(255,255,255,.06);
}

.indicateurs-images img:hover { transform: scale(1.03); }

.indicateurs-images img:first-child {
    grid-column: span 2;
    height: 230px;
}

/* ============================================
   12. AXES / PÔLES (grille cartes)
   ============================================ */
.axes-section {
    padding: var(--section-v) 0;
    background: var(--bg-off);
}

.axes-header {
    max-width: 680px;
    margin-bottom: 56px;
}

.axes-header h2 { margin-bottom: 14px; }

.axes-header p {
    font-size: 16.5px;
    color: var(--text-gray);
    line-height: 1.8;
}

.axes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.axe-card {
    background: var(--bg-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(66,97,44,.07);
    transition: transform var(--t-mid), box-shadow var(--t-mid);
    position: relative;
}

.axe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.axe-card > img {
    width: 100%; height: 260px;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.axe-card:hover > img { transform: scale(1.04); }

.axe-card-body {
    padding: 28px 32px 36px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-green);
    color: var(--primary-green);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r-xs);
    margin-bottom: 14px;
}

.axe-card-body h3 {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.45;
    margin-bottom: 12px;
}

.axe-card-body p {
    font-size: 14.5px;
    color: var(--text-gray);
    line-height: 1.8;
}

.axe-card-body ul { margin-top: 14px; }

.axe-card-body ul li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 5px 0 5px 22px;
    position: relative;
}

.axe-card-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 12px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 20px;
    transition: gap var(--t-mid), color var(--t-fast);
}
.read-more::after { content: '→'; }
.read-more:hover  { gap: 14px; color: var(--dark-green); }

/* ============================================
   13. TEMOIGNAGES
   ============================================ */
.temoignages-section {
    padding: var(--section-v) 0;
    background: var(--bg-white);
    position: relative;
}

/* Bande décorative gauche */
.temoignages-section::before {
    content: '"';
    position: absolute;
    left: 5%;
    top: 60px;
    font-family: var(--font-display);
    font-size: 300px;
    color: var(--light-green);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.temoignages-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.temoignages-intro h2 { margin-bottom: 14px; }

.temoignages-intro p {
    font-size: 15.5px;
    color: var(--text-gray);
    line-height: 1.85;
}

.temoignage-card {
    background: var(--bg-off);
    border-radius: var(--r-lg);
    padding: 36px 40px;
    transition: transform var(--t-mid), box-shadow var(--t-mid);
    position: relative;
    overflow: hidden;
}

.temoignage-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-green), var(--gold));
}

.temoignage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.temoignage-card blockquote {
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(66,97,44,.08);
}

.temoignage-author img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.temoignage-author-info h4 {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
}

.temoignage-author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   14. ACTUALITES
   ============================================ */
.actualites-section {
    padding: var(--section-v) 0;
    background: var(--bg-off);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
    gap: 24px;
    flex-wrap: wrap;
}

.actualites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.actu-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 22px;
    border-radius: var(--r-md);
    background: var(--bg-white);
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(66,97,44,.06);
    transition: all var(--t-mid);
}

.actu-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(66,97,44,.14);
}

.actu-card img {
    width: 130px; height: 130px;
    border-radius: var(--r-sm);
    object-fit: cover;
    flex-shrink: 0;
    transition: transform var(--t-mid);
}

.actu-card:hover img { transform: scale(1.04); }

.actu-card-content { flex: 1; }

.actu-card-content .date {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.actu-card-content h3 {
    font-size: 16px;
    line-height: 1.45;
    color: var(--text-dark);
    margin-bottom: 14px;
}

/* ============================================
   15. PARTENAIRES
   ============================================ */
.partenaires-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-top: 1px solid rgba(66,97,44,.06);
}

.partenaires-section h2 {
    text-align: center;
    margin-bottom: 52px;
}

.partenaires-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px 48px;
}

.partenaires-logos img {
    width: 140px; height: 140px;
    object-fit: contain;
    padding: 16px;
    background: var(--bg-off);
    border-radius: var(--r-md);
    border: 1px solid rgba(66,97,44,.06);
    filter: grayscale(.5);
    opacity: .65;
    transition: all var(--t-mid);
}

.partenaires-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(66,97,44,.2);
}

/* ============================================
   16. CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--darker-green);
    padding: var(--section-v) 0;
}

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

.contact-block h3 {
    color: white;
    font-size: clamp(20px, 2vw, 26px);
    margin-bottom: 16px;
}

.contact-block > p {
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 28px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.contact-links a {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.06);
    transition: all var(--t-fast);
}

.contact-links a:hover {
    background: rgba(255,255,255,.1);
    color: white;
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,.08);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.1);
    transition: all var(--t-fast);
}

.social-icon:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.social-icon img { width: 22px; height: 22px; }

/* Formulaire */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-sm);
    color: white;
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color var(--t-fast), background var(--t-fast);
    outline: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(201,168,76,.55);
    background: rgba(255,255,255,.09);
}

.contact-form select option { background: var(--darker-green); }

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

/* ============================================
   17. FOOTER
   ============================================ */
.footer {
    background: var(--footer-dark);
    color: white;
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

/* Bande top */
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold), var(--primary-green));
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-logo {
    height: 58px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-yellow);
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-brand > p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.9;
    max-width: 300px;
}

/* Réseaux sociaux footer */
.footer-socials-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.55);
    padding: 8px 12px;
    border-radius: var(--r-xs);
    transition: all var(--t-fast);
}

.footer-social-link:hover {
    color: white;
    background: rgba(255,255,255,.06);
}

/* Colonnes footer */
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,.6);
    padding: 5px 0;
    transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-col a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--t-mid);
    flex-shrink: 0;
}

.footer-col a:hover {
    color: white;
    padding-left: 6px;
}

.footer-col a:hover::before { width: 12px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.06);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.3);
}

/* ============================================
   18. TABS
   ============================================ */
.tabs-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid rgba(66,97,44,.1);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tabs-nav button {
    padding: 12px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: var(--r-xs) var(--r-xs) 0 0;
    transition: all var(--t-fast);
    position: relative;
}

.tabs-nav button::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform var(--t-mid);
}

.tabs-nav button:hover     { color: var(--text-dark); background: var(--bg-off); }
.tabs-nav button.active    { color: var(--primary-green); font-weight: 600; }
.tabs-nav button.active::after { transform: scaleX(1); }

.tab-panel { display: none; animation: fadeUp .35s ease both; }
.tab-panel.active { display: block; }

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

/* ============================================
   19. BOUTON LIEN
   ============================================ */
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    padding: 9px 18px;
    border-radius: var(--r-pill);
    background: var(--light-green);
    transition: all var(--t-fast);
}

.btn-link:hover {
    background: var(--primary-green);
    color: white;
    gap: 13px;
}

/* ============================================
   20. RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .nav-desktop { gap: 0; }
    .nav-desktop a { font-size: 12.5px; padding: 8px 10px; }
}

@media (max-width: 1024px) {
    .nav-desktop  { display: none; }
    .hamburger    { display: flex; }

    :root { --section-v: 72px; }

    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .about-cards   { grid-template-columns: repeat(2, 1fr); }
    .axes-grid     { grid-template-columns: 1fr; gap: 24px; }
    .indicateurs-inner { grid-template-columns: 1fr; gap: 48px; }
    .temoignages-inner { grid-template-columns: 1fr; gap: 48px; }
    .actualites-grid   { grid-template-columns: 1fr; }
    .footer-top    { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }

    .about-header  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-v: 56px; }

    .hero h1 { font-size: clamp(26px, 7vw, 38px); }
    .hero p  { font-size: 16px; }

    .stats-grid  { grid-template-columns: 1fr 1fr; }
    .about-cards { grid-template-columns: 1fr; }

    .indicateurs-images img { height: 150px; }
    .indicateurs-images img:first-child { height: 190px; }

    .temoignages-section::before { display: none; }

    .actu-card { flex-direction: column; }
    .actu-card img { width: 100%; height: 200px; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .carousel-slide { aspect-ratio: 4/3; }
    .carousel-caption { padding: 32px 28px 24px; }

    .contact-inner { gap: 36px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }

    :root { --section-v: 48px; }

    .hero h1 { font-size: 24px; }
    .hero .btn-group { flex-direction: column; align-items: center; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat-item + .stat-item::before { display: none; }

    .offcanvas { width: 100%; max-width: 100%; }

    .carousel-slide { aspect-ratio: 1/1; }
    .carousel-caption h3 { font-size: 18px; }
    .carousel-btn { width: 38px; height: 38px; font-size: 14px; }

    h2 { font-size: 26px; }
    .btn { padding: 12px 24px; }
    .btn-lg { padding: 14px 28px; font-size: 14px; }
}

/* ============================================
   21. UTILITAIRES ACCESSIBILITE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
    border-radius: 2px;
}

::selection { background: var(--primary-green); color: white; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-off); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-green); }

/* ============================================
   22. PAGE CONTACT — LAYOUT PROPRE SUR FOND BLANC
   ============================================ */

/* Section wrapper */
.contact-page-section {
    padding: 96px 0 80px;
    background: var(--bg-off);
}

/* Grille principale : 2 colonnes */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ===== COLONNE GAUCHE – COORDONNÉES ===== */
.contact-info-col .section-eyebrow { margin-bottom: 12px; }

.contact-info-col h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 0;
}

.contact-intro {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 36px;
}

/* Liste des blocs info */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
}

.contact-info-block {
    background: var(--bg-white);
    border: 1px solid rgba(66,97,44,.08);
    border-radius: var(--r-md);
    padding: 18px 22px;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.contact-info-block:hover {
    border-color: rgba(66,97,44,.2);
    box-shadow: var(--shadow-sm);
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-info-icon {
    font-size: 18px;
    line-height: 1;
}

.contact-info-header strong {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary-green);
    font-family: var(--font-body);
}

.contact-info-value {
    display: block;
    font-size: 15px;
    color: var(--text-body);
    padding-left: 28px;
    line-height: 1.7;
    transition: color var(--t-fast);
}

a.contact-info-value:hover { color: var(--primary-green); }

/* Réseaux sociaux */
.contact-socials { margin-top: 8px; }

.contact-socials-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 14px;
}

.contact-socials-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--bg-white);
    border: 1px solid rgba(66,97,44,.1);
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--t-fast);
}

.contact-social-btn img {
    width: 20px; height: 20px;
    object-fit: contain;
}

.contact-social-btn:hover {
    background: var(--light-green);
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===== COLONNE DROITE – FORMULAIRE ===== */
.contact-form-card {
    background: var(--bg-white);
    border-radius: var(--r-lg);
    padding: 44px 44px 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(66,97,44,.06);
    position: sticky;
    top: 100px;
}

.contact-form-card h3 {
    font-size: clamp(20px, 2vw, 24px);
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form-card > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* Message succès */
.contact-success {
    background: #edfaf1;
    border: 1px solid #86e0a6;
    color: #1e7a3e;
    border-radius: var(--r-sm);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

/* Formulaire clair (fond blanc) */
.contact-form-light {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Rangée 2 colonnes */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Groupe champ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.form-group .req { color: var(--accent-orange); }

/* Inputs CLAIRS */
.contact-form-light input,
.contact-form-light textarea,
.contact-form-light select {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-off);
    border: 1.5px solid rgba(66,97,44,.12);
    border-radius: var(--r-sm);
    color: var(--text-dark);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
    appearance: none;
    -webkit-appearance: none;
}

.contact-form-light select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2342612c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

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

.contact-form-light input:focus,
.contact-form-light textarea:focus,
.contact-form-light select:focus {
    border-color: var(--primary-green);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(66,97,44,.08);
}

.contact-form-light textarea {
    resize: vertical;
    min-height: 130px;
}

/* Carte Google Maps */
.contact-map {
    margin-top: 64px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(66,97,44,.08);
}

.contact-map iframe { display: block; }

/* ===== RESPONSIVE CONTACT ===== */
@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-card {
        position: static;
        padding: 32px 28px 36px;
    }
}

@media (max-width: 600px) {
    .contact-page-section { padding: 56px 0 60px; }

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

    .contact-form-card { padding: 24px 20px 28px; }

    .contact-map { margin-top: 40px; }
    .contact-map iframe { height: 300px; }
}
