/* ==========================================================================
   COPATE COOP-CA — Feuille de style principale
   Thème : agriculture tropicale & environnement — design doux
   ========================================================================== */

:root {
    --green-900: #14331f;
    --green-800: #1c4a2c;
    --green-700: #24623a;
    --green-600: #2f7a4d;
    --green-500: #3d9563;
    --green-400: #6bb389;
    --green-100: #e6f1ea;
    --green-050: #f2f8f4;

    --gold-600: #cf9a3c;
    --gold-500: #e0ac4b;
    --gold-100: #f8ecd3;

    --earth-700: #5a4327;
    --earth-500: #8a6a3f;

    --cream: #f8f6f0;
    --cream-2: #fdfcf9;
    --ink: #24302a;
    --muted: #6a766f;
    --line: #e7e3d8;

    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(20, 51, 31, .06);
    --shadow: 0 12px 30px rgba(20, 51, 31, .10);
    --shadow-lg: 0 24px 60px rgba(20, 51, 31, .14);

    --radius: 18px;
    --radius-lg: 28px;
    --radius-sm: 12px;

    --font-head: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --container: 1180px;
    --header-h: 78px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--green-900); }

.container { width: min(var(--container), 92%); margin-inline: auto; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--green-600); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold-500); border-radius: 2px; }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .85rem 1.6rem; border-radius: 100px; font-weight: 600; font-size: .98rem;
    border: 1.5px solid transparent; cursor: pointer; transition: .25s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 10px 22px rgba(47,122,77,.28); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.75); color: var(--green-800); border-color: var(--green-100); }
.btn-ghost:hover { background: #fff; border-color: var(--green-400); }
.btn-gold { background: var(--gold-500); color: #3d2c0a; }
.btn-gold:hover { background: var(--gold-600); }
.btn-outline { border-color: var(--green-600); color: var(--green-700); }
.btn-outline:hover { background: var(--green-600); color: #fff; }

/* ---------- En-tête ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(248,246,240,.82); backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent; transition: .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(253,252,249,.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--green-800); letter-spacing: .02em; }
.brand-text small { font-size: .72rem; letter-spacing: .22em; color: var(--gold-600); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: .4rem; }
.main-nav a { padding: .55rem .9rem; border-radius: 100px; font-weight: 500; font-size: .96rem; color: var(--ink); transition: .2s; }
.main-nav a:hover { color: var(--green-700); background: var(--green-100); }
.main-nav a.active { color: var(--green-800); background: var(--green-100); font-weight: 600; }
.main-nav .nav-cta { margin-left: .5rem; background: var(--green-600); color: #fff; font-weight: 600; }
.main-nav .nav-cta:hover { background: var(--green-700); }

.lang-switch { display: inline-flex; align-items: center; gap: 2px; margin-left: .4rem; background: var(--green-050); border: 1px solid var(--green-100); border-radius: 100px; padding: 3px; }
.lang-switch a { padding: .28rem .6rem; border-radius: 100px; font-size: .8rem; font-weight: 700; color: var(--muted); }
.lang-switch a:hover { color: var(--green-700); }
.lang-switch a.active { background: var(--green-600); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--green-800); border-radius: 3px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(120% 90% at 85% -10%, var(--green-100) 0%, transparent 55%),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem .4rem .5rem;
    background: #fff; border: 1px solid var(--green-100); border-radius: 100px; font-size: .82rem;
    font-weight: 600; color: var(--green-700); box-shadow: var(--shadow-sm); margin-bottom: 1.6rem;
}
.hero-badge b { background: var(--green-600); color: #fff; padding: .15rem .55rem; border-radius: 100px; font-size: .72rem; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); margin-bottom: 1.3rem; }
.hero h1 .accent { color: var(--green-600); font-style: italic; }
.hero p.lead { margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-trust .item { display: flex; flex-direction: column; }
.hero-trust .item b { font-family: var(--font-head); font-size: 1.6rem; color: var(--green-800); }
.hero-trust .item span { font-size: .82rem; color: var(--muted); }
.hero-trust .divider { width: 1px; height: 34px; background: var(--line); }

.hero-visual { position: relative; }
.hero-visual .frame {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
    border: 8px solid #fff; transform: rotate(1.2deg);
}
.hero-visual .frame img { width: 100%; height: 100%; }
.hero-card {
    position: absolute; background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow); padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.hero-card .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; color: #fff; }
.hero-card small { display: block; color: var(--muted); font-size: .74rem; }
.hero-card b { font-family: var(--font-head); color: var(--green-800); font-size: 1rem; }
.hero-card.one { bottom: -22px; left: -22px; }
.hero-card.one .ic { background: var(--green-600); }
.hero-card.two { top: 24px; right: -18px; }
.hero-card.two .ic { background: var(--gold-500); color: #3d2c0a; }

/* Bandeau logos/partenaires */
.leaf-divider { height: 60px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M60 8c-14 0-22 12-22 26 14 0 22-12 22-26zM60 8c14 0 22 12 22 26-14 0-22-12-22-26z' fill='%23e6f1ea'/%3E%3C/svg%3E") repeat-x center; opacity: .8; }

/* ---------- Stats ---------- */
.stats { background: var(--green-800); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat b { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); display: block; color: #fff; }
.stat b .plus { color: var(--gold-500); }
.stat span { color: var(--green-100); font-size: .95rem; }

/* ---------- Cartes services ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem 1.8rem; transition: .3s; position: relative; overflow: hidden;
}
.card::after { content: ''; position: absolute; inset: auto -40% -50% auto; width: 160px; height: 160px; background: var(--green-050); border-radius: 50%; transition: .4s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-100); }
.card:hover::after { background: var(--green-100); }
.card > * { position: relative; z-index: 1; }
.card .icon {
    width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
    background: var(--green-100); color: var(--green-700); margin-bottom: 1.2rem;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 1rem; }
.card .more { color: var(--green-600); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
.card .more svg { width: 16px; height: 16px; transition: .2s; }
.card:hover .more svg { transform: translateX(4px); }

/* ---------- Bloc image + texte ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1.2rem; }
.split-body p { color: var(--muted); margin-bottom: 1rem; }
.feature-list { list-style: none; margin: 1.4rem 0 2rem; display: grid; gap: .8rem; }
.feature-list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; color: var(--ink); }
.feature-list li svg { width: 22px; height: 22px; flex: none; color: var(--green-600); margin-top: 2px; }

.tint { background: var(--green-050); }
.tint-cream { background: var(--cream-2); }

/* ---------- Valeurs / mission ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; }
.mv-card .tag { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); margin-bottom: .8rem; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: .8rem; }
.mv-card p { color: var(--muted); }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.value { text-align: center; padding: 1.6rem 1rem; }
.value .vic { width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); display: grid; place-items: center; }
.value .vic svg { width: 28px; height: 28px; }
.value h4 { font-size: 1.1rem; margin-bottom: .4rem; }
.value p { color: var(--muted); font-size: .9rem; }

/* ---------- Actualités ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .3s; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.news-card:hover .thumb img { transform: scale(1.05); }
.news-card .body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.news-card .date { font-size: .82rem; color: var(--green-600); font-weight: 600; margin-bottom: .5rem; }
.news-card h3 { font-size: 1.2rem; margin-bottom: .6rem; line-height: 1.3; }
.news-card p { color: var(--muted); font-size: .93rem; margin-bottom: 1rem; flex: 1; }
.news-card .more { color: var(--green-700); font-weight: 600; font-size: .9rem; }

/* ---------- Galerie ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .cap { position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem .9rem; color: #fff; background: linear-gradient(transparent, rgba(20,51,31,.82)); font-weight: 600; font-size: .95rem; }
.gallery-item .cat { position: absolute; top: .8rem; left: .8rem; background: rgba(255,255,255,.9); color: var(--green-700); font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 100px; }

/* ---------- Filtres galerie ---------- */
.filters { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filters button { padding: .5rem 1.2rem; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; font-weight: 600; font-size: .9rem; color: var(--muted); cursor: pointer; transition: .2s; }
.filters button:hover { border-color: var(--green-400); color: var(--green-700); }
.filters button.active { background: var(--green-600); border-color: var(--green-600); color: #fff; }

/* ---------- CTA bande ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--green-800), var(--green-600)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 5vw, 4rem); }
.cta-band::before { content: ''; position: absolute; inset: -30% -10% auto auto; width: 340px; height: 340px; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%); }
.cta-band .inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: .6rem; }
.cta-band p { color: var(--green-100); max-width: 480px; }
.cta-band .actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- Page bannière ---------- */
.page-hero { background: radial-gradient(100% 120% at 80% 0, var(--green-100), transparent 60%), var(--cream); padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--green-600); font-weight: 500; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: .8rem; }
.page-hero p { color: var(--muted); font-size: 1.08rem; max-width: 620px; }

/* ---------- Conseil d'administration ---------- */
.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.member { text-align: center; }
.member .avatar { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 1rem; background: var(--green-100); display: grid; place-items: center; font-family: var(--font-head); font-size: 2.2rem; color: var(--green-600); border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.member h4 { font-size: 1.1rem; margin-bottom: .2rem; }
.member span { color: var(--gold-600); font-size: .88rem; font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: start; }
.contact-info { display: grid; gap: 1.2rem; }
.contact-info .item { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; }
.contact-info .item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; flex: none; }
.contact-info .item .ic svg { width: 22px; height: 22px; }
.contact-info .item h4 { font-size: 1rem; margin-bottom: .2rem; }
.contact-info .item p, .contact-info .item a { color: var(--muted); font-size: .95rem; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--green-900); }
.field input, .field textarea, .field select {
    width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
    font-family: inherit; font-size: .96rem; background: var(--cream-2); transition: .2s; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 4px var(--green-100); }
.field textarea { resize: vertical; min-height: 130px; }

.alert { padding: .9rem 1.2rem; border-radius: 12px; font-weight: 500; margin-bottom: 1.4rem; font-size: .95rem; }
.alert-success { background: var(--green-100); color: var(--green-800); }
.alert-error { background: #fceaea; color: #9b2c2c; }

/* ---------- Article ---------- */
.article-hero img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 16/7; object-fit: cover; }
.article-body { max-width: 760px; margin-inline: auto; }
.article-body p { margin-bottom: 1.3rem; color: #3a453e; font-size: 1.06rem; }
.article-meta { display: flex; gap: 1rem; align-items: center; color: var(--green-600); font-weight: 600; font-size: .9rem; margin-bottom: 1rem; }

/* ---------- Bouton WhatsApp flottant ---------- */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 200;
    display: flex; align-items: center; gap: .6rem;
    background: #25d366; color: #fff; padding: 12px 16px 12px 12px; border-radius: 100px;
    box-shadow: 0 12px 30px rgba(37,211,102,.4); font-weight: 600; transition: .3s;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float .whatsapp-label { max-width: 0; overflow: hidden; white-space: nowrap; transition: .35s; font-size: .95rem; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(37,211,102,.5); }
.whatsapp-float:hover .whatsapp-label { max-width: 140px; }
.whatsapp-float::after {
    content: ''; position: absolute; inset: 0; border-radius: 100px;
    box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--green-900); color: #cfe0d5; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand > p { margin: 1.2rem 0; font-size: .92rem; line-height: 1.7; color: #a9c1b3; }
.footer-brand .brand-logo { border-radius: 12px; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .2s; }
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { background: var(--green-600); }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-col a { display: block; color: #a9c1b3; font-size: .93rem; padding: .3rem 0; transition: .2s; }
.footer-col a:hover { color: var(--gold-500); padding-left: 4px; }
.footer-contact { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: #a9c1b3; margin-bottom: .8rem; }
.footer-contact svg { width: 20px; height: 20px; flex: none; color: var(--green-400); margin-top: 2px; }
.footer-contact a:hover { color: var(--gold-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .86rem; color: #8fa89a; }
.footer-bottom a { color: var(--gold-500); }

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
    .cards-grid, .news-grid, .gallery-grid, .board-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-visual { max-width: 460px; margin-inline: auto; }
    .hero-card.one { left: 0; }
    .hero-card.two { right: 0; }
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
        background: var(--cream-2); padding: 1rem; gap: .3rem; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow); transform: translateY(-120%); transition: .35s; visibility: hidden;
    }
    .main-nav.open { transform: none; visibility: visible; }
    .main-nav a { padding: .8rem 1rem; }
    .main-nav .nav-cta { margin-left: 0; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .cta-band .inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
    .cards-grid, .news-grid, .gallery-grid, .board-grid, .values-grid, .mv-grid, .form-row { grid-template-columns: 1fr; }
    .whatsapp-float .whatsapp-label { display: none; }
    .brand-text small { display: none; }
}
