/* ============================================================
   Club Canin de Moëlan-sur-Mer
   ============================================================ */

/* ---------- Variables ---------- */
:root {
    --vert: #2a7a50;
    --vert-fonce: #1b5235;
    --vert-clair: #eaf5ef;
    --vert-moyen: #d1ead9;
    --ambre: #d97706;
    --ambre-fonce: #b45309;
    --ambre-clair: #fef3c7;
    --fond: #f9f7f3;
    --surface: #ffffff;
    --texte: #1c1a17;
    --texte-doux: #6b6460;
    --texte-leger: #a09a94;
    --bordure: #e8e2da;
    --rayon: 1rem;
    --rayon-sm: 0.6rem;
    --rayon-lg: 1.5rem;
    --ombre: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.07);
    --ombre-md: 0 4px 8px rgba(0,0,0,0.08), 0 14px 36px rgba(0,0,0,0.1);
    --ombre-lg: 0 8px 20px rgba(0,0,0,0.1), 0 32px 64px rgba(0,0,0,0.13);
    --navbar-h: 72px;
    --transition: 0.22s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--fond);
    color: var(--texte);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

a { color: var(--vert); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--vert-fonce); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--navbar-h);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bordure);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.navbar.scrollee {
    box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    margin: 0 auto 1.25rem;
    background: rgba(255,255,255,0.1);
    padding: 6px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--vert-fonce);
    letter-spacing: -0.03em;
    white-space: nowrap;
    text-decoration: none;
}

.logo-icone {
    font-size: 1.6rem;
    line-height: 1;
}

.logo-texte-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--texte-leger);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 1px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-desktop a {
    padding: 0.4rem 0.6rem;
    border-radius: var(--rayon-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--texte-doux);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.nav-desktop a:hover {
    background: var(--vert-clair);
    color: var(--vert-fonce);
}

.nav-desktop a.actif {
    color: var(--vert);
}

.btn-nav {
    background: var(--vert) !important;
    color: #fff !important;
    padding: 0.5rem 1.1rem !important;
    border-radius: var(--rayon-sm) !important;
    box-shadow: 0 2px 8px rgba(42, 122, 80, 0.25) !important;
}

.btn-nav:hover {
    background: var(--vert-fonce) !important;
    box-shadow: 0 3px 14px rgba(42, 122, 80, 0.4) !important;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    font-size: 1.4rem;
    color: var(--texte);
    line-height: 1;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--surface);
    border-top: 1px solid var(--bordure);
    padding: 0.75rem 1.5rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.nav-mobile.ouvert {
    display: flex;
}

.nav-mobile a {
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--texte);
    border-bottom: 1px solid var(--bordure);
}

.nav-mobile a:last-child {
    border-bottom: none;
    color: var(--vert);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--rayon-sm);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primaire {
    background: var(--vert);
    color: #fff;
    border-color: var(--vert);
    box-shadow: 0 3px 12px rgba(42,122,80,0.3);
}

.btn-primaire:hover {
    background: var(--vert-fonce);
    border-color: var(--vert-fonce);
    color: #fff;
    box-shadow: 0 5px 18px rgba(42,122,80,0.45);
    transform: translateY(-1px);
}

.btn-contour {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn-contour:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.8);
}

.btn-ambre {
    background: var(--ambre);
    color: #fff;
    border-color: var(--ambre);
    box-shadow: 0 3px 12px rgba(217,119,6,0.3);
}

.btn-ambre:hover {
    background: var(--ambre-fonce);
    border-color: var(--ambre-fonce);
    color: #fff;
    box-shadow: 0 5px 18px rgba(217,119,6,0.45);
    transform: translateY(-1px);
}

.btn-secondaire {
    background: var(--surface);
    color: var(--vert);
    border-color: var(--vert);
}

.btn-secondaire:hover {
    background: var(--vert-clair);
    color: var(--vert-fonce);
}

/* ---------- Sections ---------- */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--fond);
}

.section-blanche {
    background: var(--surface);
}

.section-vert {
    background: linear-gradient(135deg, var(--vert-fonce) 0%, var(--vert) 100%);
    color: #fff;
}

.section-vert .texte-doux { color: rgba(255,255,255,0.75); }

.section-entete {
    text-align: center;
    margin-bottom: 3.5rem;
}

.tag-section {
    display: inline-block;
    background: var(--vert-clair);
    color: var(--vert-fonce);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 0.85rem;
}

.section-vert .tag-section {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.section-entete h2 {
    font-size: 2.2rem;
    color: var(--texte);
    margin-bottom: 0.85rem;
}

.section-vert .section-entete h2 {
    color: #fff;
}

.section-entete p {
    font-size: 1.05rem;
    color: var(--texte-doux);
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #0f3d22 0%, #1b5235 40%, #2a7a50 80%, #3a9663 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--navbar-h) + 3rem) 2rem 4rem;
}

/* Motif pattes décoratif */
.hero::before {
    content: '🐾';
    position: absolute;
    font-size: 18rem;
    opacity: 0.04;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    pointer-events: none;
    line-height: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(42,122,80,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-contenu {
    position: relative;
    z-index: 1;
    max-width: 720px;
    color: #fff;
    animation: fade-up 0.7s ease both;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    color: #fff;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    white-space: pre-line;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin: 0 auto 2.25rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    justify-content: center;
}

.hero-stat-val {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-stat-lib {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    margin-top: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- Présentation ---------- */
.grille-deux {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.presentation-texte h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--texte);
}

.presentation-texte p {
    color: var(--texte-doux);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
}

.bureau {
    margin-top: 2rem;
    background: var(--vert-clair);
    border-radius: var(--rayon);
    padding: 1.5rem;
    border: 1px solid var(--vert-moyen);
}

.bureau h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--vert-fonce);
    margin-bottom: 1rem;
    font-weight: 700;
}

.bureau-membres-liste {
    font-size: 0.88rem;
    color: var(--texte-doux);
    line-height: 1.8;
    font-weight: 500;
}

.bureau-liste {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bureau-membre {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--vert-moyen);
}

.bureau-membre:last-child {
    border-bottom: none;
}

.bureau-role {
    color: var(--texte-leger);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bureau-nom {
    font-weight: 700;
    color: var(--texte);
}

.bureau-tel {
    font-size: 0.85rem;
    color: var(--vert);
    font-weight: 600;
    white-space: nowrap;
}

.infos-cles {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.info-carte {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: var(--rayon);
    padding: 1.5rem;
    box-shadow: var(--ombre);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow var(--transition), transform var(--transition);
}

.info-carte:hover {
    box-shadow: var(--ombre-md);
    transform: translateY(-2px);
}

.info-carte-icone {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.1rem;
}

.info-carte-titre {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--texte-leger);
    margin-bottom: 0.3rem;
}

.info-carte-valeur {
    font-size: 1rem;
    font-weight: 700;
    color: var(--texte);
    line-height: 1.4;
}

.info-carte-valeur small {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--texte-doux);
    margin-top: 0.2rem;
}

/* ---------- Activités ---------- */
.grille-activites {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.carte-activite {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: var(--rayon-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--ombre);
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.carte-activite::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vert), var(--ambre));
    opacity: 0;
    transition: opacity var(--transition);
}

.carte-activite:hover {
    box-shadow: var(--ombre-md);
    transform: translateY(-5px);
}

.carte-activite:hover::before {
    opacity: 1;
}

.act-icone {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.act-titre {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--texte);
    margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
}

.act-desc {
    font-size: 0.9rem;
    color: var(--texte-doux);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.act-horaires {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.act-horaire {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--vert-fonce);
    background: var(--vert-clair);
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    width: fit-content;
}

/* ---------- Tableau horaires ---------- */
.tableau-horaires {
    background: var(--surface);
    border-radius: var(--rayon-lg);
    overflow: hidden;
    box-shadow: var(--ombre-md);
    border: 1px solid var(--bordure);
    margin-top: 3rem;
}

.tableau-horaires table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.tableau-horaires th {
    background: var(--vert-fonce);
    color: #fff;
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tableau-horaires td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--bordure);
    vertical-align: middle;
}

.tableau-horaires tbody tr:last-child td {
    border-bottom: none;
}

.tableau-horaires tbody tr:nth-child(even) {
    background: var(--fond);
}

.tableau-horaires tbody tr:hover {
    background: var(--vert-clair);
}

/* ---------- Tarifs ---------- */
.grille-tarifs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.carte-tarif {
    background: var(--surface);
    border: 2px solid var(--bordure);
    border-radius: var(--rayon-lg);
    padding: 2.25rem 2rem;
    text-align: center;
    box-shadow: var(--ombre);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    position: relative;
}

.carte-tarif:hover {
    box-shadow: var(--ombre-md);
    transform: translateY(-4px);
    border-color: var(--vert);
}

.carte-tarif.vedette {
    border-color: var(--vert);
    box-shadow: 0 0 0 4px var(--vert-clair), var(--ombre-md);
}

.vedette-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vert);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.9rem;
    border-radius: 100px;
    white-space: nowrap;
}

.tarif-icone {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.tarif-titre {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--texte);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tarif-desc {
    font-size: 0.82rem;
    color: var(--texte-doux);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.tarif-prix {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vert);
    letter-spacing: -0.05em;
    line-height: 1;
}

.tarif-prix sup {
    font-size: 1.4rem;
    vertical-align: top;
    margin-top: 0.5rem;
    font-weight: 700;
}

.tarif-prix span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--texte-leger);
    letter-spacing: 0;
}

.tarif-option {
    background: var(--fond);
    border: 1px solid var(--bordure);
    border-radius: var(--rayon);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tarif-option-titre {
    font-weight: 700;
    color: var(--texte);
    font-size: 0.95rem;
}

.tarif-option-desc {
    font-size: 0.82rem;
    color: var(--texte-doux);
    margin-top: 0.2rem;
}

.tarif-option-prix {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ambre);
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.note-tarif {
    background: var(--ambre-clair);
    border: 1px solid #fde68a;
    border-radius: var(--rayon);
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.65;
}

.note-tarif strong {
    font-weight: 700;
}

/* ---------- Chien visiteur ---------- */
.chien-visiteur-grille {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cv-texte h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cv-texte p {
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.97rem;
}

.cv-ehpad {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.cv-ehpad-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 600;
}

.cv-ehpad-icone {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cv-cartes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cv-carte {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--rayon);
    padding: 1.5rem;
    backdrop-filter: blur(4px);
}

.cv-carte-titre {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cv-carte p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Bénévoles ---------- */
.benevole-grille {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.benevole-col h3 {
    font-size: 1.2rem;
    color: var(--texte);
    margin-bottom: 1.25rem;
    padding-left: 0.85rem;
    border-left: 3px solid var(--vert);
}

.criteres-liste {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.critere {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--texte-doux);
    line-height: 1.55;
}

.critere-check {
    flex-shrink: 0;
    width: 1.4rem;
    height: 1.4rem;
    background: var(--vert-clair);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--vert-fonce);
    font-weight: 800;
    margin-top: 0.05rem;
}

.etapes-liste {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.etape {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.etape-num {
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
    background: var(--vert);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.etape-texte strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--texte);
    margin-bottom: 0.2rem;
}

.etape-texte span {
    font-size: 0.88rem;
    color: var(--texte-doux);
}

.zone-geo {
    margin-top: 1.5rem;
    background: var(--vert-clair);
    border-radius: var(--rayon);
    padding: 1.25rem 1.5rem;
    font-size: 0.88rem;
    color: var(--texte-doux);
    line-height: 1.65;
    border: 1px solid var(--vert-moyen);
}

.zone-geo strong {
    color: var(--vert-fonce);
    font-weight: 700;
}

/* ---------- Localisation ---------- */
.localisation-grille {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

#carte-leaflet {
    height: 420px;
    border-radius: var(--rayon-lg);
    overflow: hidden;
    box-shadow: var(--ombre-md);
    border: 1px solid var(--bordure);
}

.itineraire {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.itineraire h3 {
    font-size: 1.2rem;
    color: var(--texte);
    padding-left: 0.85rem;
    border-left: 3px solid var(--vert);
    margin-bottom: -0.5rem;
}

.itineraire-depuis {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: var(--rayon);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--ombre);
}

.itineraire-depuis-titre {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--vert-fonce);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.itineraire-depuis p {
    font-size: 0.9rem;
    color: var(--texte-doux);
    line-height: 1.65;
}

.adresse-carte {
    background: var(--vert-clair);
    border: 1px solid var(--vert-moyen);
    border-radius: var(--rayon);
    padding: 1.25rem 1.5rem;
}

.adresse-carte-titre {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--texte-leger);
    margin-bottom: 0.4rem;
}

.adresse-carte-valeur {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vert-fonce);
    line-height: 1.45;
}

/* ---------- Contact ---------- */
.contact-cartes-grille {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.formulaire {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: var(--rayon-lg);
    padding: 2.5rem;
    box-shadow: var(--ombre);
}

.formulaire h3 {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
    color: var(--texte);
}

.champ-grille {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.champ {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.champ-plein { grid-column: 1 / -1; }

.champ label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--texte-doux);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.champ input,
.champ select,
.champ textarea {
    padding: 0.65rem 1rem;
    border: 1.5px solid var(--bordure);
    border-radius: var(--rayon-sm);
    background: var(--fond);
    color: var(--texte);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
    outline: none;
    border-color: var(--vert);
    box-shadow: 0 0 0 3px rgba(42,122,80,0.12);
    background: var(--surface);
}

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

.contact-infos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-carte {
    background: var(--surface);
    border: 1px solid var(--bordure);
    border-radius: var(--rayon);
    padding: 1.4rem;
    box-shadow: var(--ombre);
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    min-width: 0;
}

.contact-carte > div {
    min-width: 0;
    flex: 1;
}

.contact-icone {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.1rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--texte-leger);
    margin-bottom: 0.3rem;
}

.contact-valeur {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--texte);
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.contact-valeur a {
    color: var(--vert);
    font-weight: 700;
}

.contact-valeur a[href^="mailto"] {
    font-size: 0.78rem;
    font-weight: 600;
    word-break: normal;
    white-space: nowrap;
}

/* ---------- Footer ---------- */
footer {
    background: var(--vert-fonce);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 2rem;
}

.footer-contenu {
    margin: 0 auto 1.5rem;
    max-width: 560px;
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

.footer-titre {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.footer-liens {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-liens a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-liens a:hover { color: #fff; }

.footer-bas {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.footer-scc {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-scc:hover {
    color: rgba(255,255,255,0.9);
}

/* ---------- Animations ---------- */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animer { animation: fade-up 0.5s ease both; }
.animer-delai-1 { animation-delay: 0.1s; }
.animer-delai-2 { animation-delay: 0.2s; }
.animer-delai-3 { animation-delay: 0.3s; }
.animer-delai-4 { animation-delay: 0.4s; }

/* Intersection observer animation — masqué uniquement si JS est disponible */
.js .fade-in-element {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
/* ---- Tablette (≤ 1024px) ---- */
@media (max-width: 1024px) {
    .grille-deux { grid-template-columns: 1fr; gap: 2.5rem; }
    .chien-visiteur-grille { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-cartes-grille { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile paysage / petite tablette (≤ 768px) ---- */
@media (max-width: 768px) {
    /* Navbar */
    .nav-desktop { display: none; }
    .burger { display: block; }
    .logo-img { width: 38px; height: 38px; }
    .nav-mobile a {
        padding: 1rem 0.5rem;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Sections */
    .section { padding: 3rem 0; }
    .section-entete { margin-bottom: 2rem; }
    .section-entete h2 { font-size: 1.6rem; }

    /* Hero */
    .hero { padding: calc(var(--navbar-h) + 2rem) 1.5rem 3rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-logo { width: 90px; height: 90px; }
    .hero p { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 1.5rem; }

    /* Présentation */
    .info-carte { padding: 1.1rem; }

    /* Activités */
    .grille-activites { grid-template-columns: 1fr; }
    .carte-activite { padding: 1.5rem; }

    /* Tarifs */
    .grille-tarifs { grid-template-columns: 1fr; }

    /* Bénévoles */
    .benevole-grille { grid-template-columns: 1fr; gap: 2rem; }

    /* Localisation */
    .localisation-grille { grid-template-columns: 1fr; }
    #carte-leaflet { height: 280px; }

    /* Contact */
    .contact-cartes-grille { grid-template-columns: 1fr; }

    /* Tableau horaires */
    .tableau-horaires { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .tableau-horaires table { min-width: 500px; }

    /* Footer */
    .footer-bas { text-align: center; }
}

/* ---- Mobile portrait (≤ 480px) ---- */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 1.9rem; }
    .hero-logo { width: 80px; height: 80px; }
    .hero-stats { flex-direction: column; gap: 0.85rem; text-align: left; }
    .hero-tag { font-size: 0.72rem; }

    .section-entete h2 { font-size: 1.4rem; }

    .bureau-membre { grid-template-columns: 90px 1fr; row-gap: 0.1rem; }
    .bureau-tel { grid-column: 2; }
    .bureau-tel { font-size: 1rem; }

    .tarif-prix { font-size: 2.4rem; }
    .grille-tarifs { gap: 1rem; }
    .carte-tarif { padding: 1.5rem 1.25rem; }

    .cv-cartes { gap: 0.75rem; }
    .cv-carte { padding: 1.1rem; }

    .etape-num { width: 1.9rem; height: 1.9rem; font-size: 0.78rem; flex-shrink: 0; }

    .contact-carte { padding: 1rem; }
    .contact-icone { font-size: 1.3rem; }

    .footer-logo { font-size: 1rem; }

    /* Boutons plus grands pour le tactile */
    .btn { min-height: 48px; }
    .btn-nav { min-height: 44px; }
}
