﻿/* ════════════════════════════════════════════════════════
   HERO — Le Territoire
════════════════════════════════════════════════════════ */
.terr-hero {
    width: 100%;
    height: 72vh;
    min-height: 460px;
    background-size: cover;
    background-position: center 40%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.terr-hero::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 10, 22, 0.35) 0%,
        rgba(6, 10, 22, 0.04) 48%,
        rgba(6, 10, 22, 0.65) 100%
    );
}

.terr-hero-label {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terr-hero-eyebrow {
    font-family: "Jost", sans-serif;
    font-size: 0.60rem;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
}

.terr-hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 32px rgba(6,10,22,0.30);
}

.terr-hero-title em {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.10em;
}

/* ════════════════════════════════════════════════════════
   INTRO
════════════════════════════════════════════════════════ */
.terr-intro {
    background: #FDFAF5;
    padding: 88px max(5vw, 48px) 64px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* ════════════════════════════════════════════════════════
   STATS TERRITOIRE — bandeau chiffres
════════════════════════════════════════════════════════ */
.terr-stats {
    background: #1B2744;
    padding: 56px max(5vw, 48px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 100%;
}

.terr-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.terr-stat-value {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #C5B49A;
    letter-spacing: 0.04em;
}

.terr-stat-label {
    font-family: "Jost", sans-serif;
    font-size: 0.60rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    max-width: 160px;
}

/* ════════════════════════════════════════════════════════
   BADGE PRESTATAIRE
════════════════════════════════════════════════════════ */
.terr-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Jost", sans-serif;
    font-size: 0.60rem;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #9B7E54;
    border: 1px solid rgba(155, 126, 84, 0.40);
    padding: 5px 12px;
    width: fit-content;
    border-radius: 2px;
    margin-top: 4px;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .terr-hero { height: 60vh; min-height: 380px; }
    .terr-hero-label { padding-bottom: 44px; }

    .terr-stats {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 24px;
    }

    .terr-intro {
        padding: 64px 24px 48px;
    }
}

@media (max-width: 600px) {
    .terr-hero { height: 56vh; min-height: 320px; }
}

/* ════════════════════════════════════════════════════════
   SECTION ALENTOURS
════════════════════════════════════════════════════════ */
.exp-alentour {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 0;
}

.exp-alentour-line {
    width: 28px;
    height: 1px;
    background: #C5B49A;
}

@media (max-width: 768px) {
    .terr-alentours-grid {
        grid-template-columns: 1fr !important;
    }
}
