/* =============================================
   LabyLeo — app.css
   Charte graphique 2026
   ============================================= */

/* --- Fonts --------------------------------- */
@font-face {
    font-family: 'BunaeroPro';
    src: url('/fonts/BunaeroPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BunaeroPro';
    src: url('/fonts/BunaeroPro-BoldUp.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ArimaMadurai';
    src: url('/fonts/ArimaMadurai-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ArimaMadurai';
    src: url('/fonts/ArimaMadurai-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ArimaMadurai';
    src: url('/fonts/ArimaMadurai-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    src: url('/fonts/Caveat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Caveat';
    src: url('/fonts/Caveat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
}

/* --- Custom Properties --------------------- */
:root {
    --color-nature:       #2d6639;
    --color-nature-deep:  #24612a;
    --color-orange:       #f39200;
    --color-feuille:      #95be27;
    --color-sable:        #e9e0c6;
    --color-silence:      #f6f9e9;
    --color-pierre:       #484534;
    --color-noir:         #13100d;

    --font-title:   'BunaeroPro', 'ArimaMadurai', sans-serif;
    --font-body:    'ArimaMadurai', Georgia, serif;
    --font-cursive: 'Caveat', cursive;

    --nav-height: 72px;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,.12);
    --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-noir);
    background: #fff;
    line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Nav ----------------------------------- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-height);
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(1rem, 5vw, 3rem);
}

/* Logo */
.site-nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.site-nav__logo .logo-laby { color: var(--color-nature-deep); }
.site-nav__logo .logo-leo  { color: var(--color-orange); }

.site-nav__logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

/* Nav links */
.site-nav__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.site-nav__links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-pierre);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.site-nav__links a:hover,
.site-nav__links a.active {
    color: var(--color-nature);
    border-bottom-color: var(--color-feuille);
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform 0.1s;
    border: none;
    text-decoration: none;
}

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

.btn--orange {
    background: var(--color-orange);
    color: #fff;
}

.btn--orange:hover { background: #d97e00; }

.btn--ghost {
    background: transparent;
    color: var(--color-nature);
    border: 2px solid var(--color-nature);
}

.btn--ghost:hover {
    background: var(--color-nature);
    color: #fff;
}

.btn--white {
    background: #fff;
    color: var(--color-nature-deep);
}

.btn--white:hover { background: var(--color-sable); }

/* Burger menu */
.nav-burger { display: none; }

.nav-burger__toggle {
    display: none;
    justify-self: end;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 4px;
    width: 36px;
    height: 36px;
    margin-left: auto;
}

.nav-burger__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-pierre);
    transition: transform var(--transition), opacity var(--transition);
}

/* --- Overlay plein écran (mobile) ---------- */
/* Masqué sur desktop, activé uniquement dans le @media mobile */
.nav-overlay { display: none; }

/* --- Hero ---------------------------------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-nature-deep);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* SVG labyrinth pattern for hero without image */
.hero--no-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect width='80' height='80' fill='none'/%3E%3Cpath d='M10 10h60v60H10zM20 20h40v40H20zM30 30h20v20H30z' fill='none' stroke='%2395be27' stroke-width='1' stroke-opacity='0.18'/%3E%3Cpath d='M10 40h10M60 40h10M40 10v10M40 60v10M20 30h10M50 30h10M30 50h10M30 20h20M40 50v10' stroke='%2395be27' stroke-width='1' stroke-opacity='0.12'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 80px 80px;
    pointer-events: none;
}

/* Overlay for hero with image */
.hero:not(.hero--no-image)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(36,97,42,.55) 0%, rgba(19,16,13,.75) 100%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1600px;
    padding: 2rem 1.5rem;
}

.hero__content {
    max-width: 800px;
    color: #fff;
}

.hero__mascot {
    display: none;
}

.hero--has-mascot .hero__mascot {
    display: block;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(200px, 20vw, 400px);
    aspect-ratio: 1;
}

.hero__mascot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,.35));
}



@media (max-width: 768px) {
    .hero__inner {
        flex-direction: column;
    }

    .hero--has-mascot .hero__mascot {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: clamp(120px, 35vw, 200px);
        margin: 0 auto;
        order: -1;
    }
}

.hero__eyebrow {
    font-family: var(--font-cursive);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--color-feuille);
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
}

.hero__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.hero__title em {
    color: var(--color-orange);
    font-style: normal;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--color-sable);
    margin-bottom: 2.5rem;
    letter-spacing: 0.04em;
}

.hero__scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,.7);
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

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

/* --- Section commons ----------------------- */
.section {
    padding: clamp(1rem, 8vw, 3rem) clamp(1rem, 5vw, 3rem);
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-nature-deep);
    padding-left: 3rem;
    position: relative;
    margin-bottom: 1rem;
}

.section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.5rem;
    height: 1px;
    background: var(--color-orange);
}

.section__title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-nature-deep);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.section__title--white { color: #fff; }
.section__title--small { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section__text {
    text-align: left;
    max-width: 800px;
    margin-top: 1rem;
    line-height: 1.7;
    color: var(--color-pierre);
}

.section__text--light {
    color: rgba(255, 255, 255, 0.85);
}

.section__intro {
    font-size: 1.1rem;
    max-width: 600px;
    color: var(--color-pierre);
    line-height: 1.7;
}

/* --- About --------------------------------- */
.about {
    background: var(--color-silence);
}

.about__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text p {
    font-size: 1.05rem;
    color: var(--color-pierre);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about__text a {
    color: var(--color-nature);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.about__text a:hover {
    color: var(--color-nature-deep);
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--color-feuille);
}

.stat-card__number {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--color-nature-deep);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-card__label {
    font-size: 0.9rem;
    color: var(--color-pierre);
    font-weight: 500;
}

.stat-card--image {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card--image img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: calc(var(--radius) - 4px);
}

/* --- Page header (pages intérieures) ------- */
.page-header__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* --- Page Bandeau -------------------------- */
.page-bandeau {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-silence);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem);
}

.page-bandeau:not(.page-bandeau--no-image)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(36,97,42,.55) 0%, rgba(19,16,13,.75) 100%);
    pointer-events: none;
}

.page-bandeau__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-bandeau:not(.page-bandeau--no-image) .page-bandeau__content {
    color: #fff;
}

.page-bandeau:not(.page-bandeau--no-image) .section__label {
    color: #fff;
}

.page-bandeau:not(.page-bandeau--no-image) .section__label::before {
    background: var(--color-feuille);
}

.page-bandeau__mascotte {
    position: absolute;
    bottom: 0;
    right: clamp(2rem, 8vw, 6rem);
    z-index: 2;
    pointer-events: none;
}

.page-bandeau__mascotte img {
    max-height: clamp(120px, 30vh, 300px);
    width: auto;
    display: block;
}

@media (max-width: 600px) {
    .page-bandeau__mascotte {
        display: none;
    }
}

/* --- Valeurs ------------------------------- */
.valeurs {
    background: #fff;
}

.valeurs__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.valeurs__header {
    text-align: center;
    margin-bottom: 3rem;
}

.valeurs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.valeurs__grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.valeur-card {
    background: var(--color-silence);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.valeur-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.valeur-card__icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.valeur-card__title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--color-nature-deep);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.valeur-card__text {
    font-size: 0.95rem;
    color: var(--color-pierre);
    line-height: 1.65;
}

/* --- Saison -------------------------------- */
.saison {
    background: var(--color-nature);
    color: #fff;
}

.saison__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.saison__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.saison__item {
    border-left: 3px solid var(--color-feuille);
    padding-left: 1rem;
}

.saison__item-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-feuille);
    display: block;
    margin-bottom: 0.2rem;
}

.saison__item-value {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
}

.saison__cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

/* --- Accès --------------------------------- */
.acces {
    background: var(--color-silence);
}

.acces__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
    align-items: start;
}

.acces__inner > div:first-child {
    grid-column: 1 / -1;
}

.acces__details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

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

.acces__item-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

img.acces__item-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-top: 0;
}

.acces__item-content strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-nature-deep);
    margin-bottom: 0.15rem;
}

.acces__item-content span {
    font-size: 0.95rem;
    color: var(--color-pierre);
}

.acces__map {
    background: var(--color-sable);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    align-items: center;
    text-align: center;
}

.acces__map p {
    font-size: 0.95rem;
    color: var(--color-pierre);
    line-height: 1.5;
}

.acces__gps {
    font-family: var(--font-cursive);
    font-size: 1.1rem;
    color: var(--color-nature-deep);
    font-weight: 700;
}

/* --- Accès & Carte (infos-pratiques) ------- */
.acces-carte {
    background: var(--color-silence);
}

.acces-carte__header {
    text-align: center;
    margin-bottom: 2rem;
}

.acces-carte__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.acces-carte__infos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.acces-carte__block {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem 1.5rem;
}

.acces-carte__block-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-feuille);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.acces-carte__address {
    font-style: normal;
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-pierre);
}

.acces-carte__email {
    font-family: var(--font-body);
    color: var(--color-nature);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.acces-carte__email:hover {
    color: var(--color-nature-deep);
}

.acces-carte__text {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-pierre);
}

.acces-carte__text p {
    margin-bottom: 0.5rem;
}

.acces-carte__map {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--color-sable);
}

/* --- Alert banner -------------------------- */
.alert-banner {
    position: sticky;
    top: 0;
    z-index: 101;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-bottom: 3px solid var(--color-orange);
}

.alert-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem clamp(1rem, 5vw, 3rem);
}

.alert-banner__mascot {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.alert-banner__body {
    flex: 1;
    min-width: 0;
}

.alert-banner__title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-nature-deep);
    margin-bottom: 0.2rem;
}

.alert-banner__content {
    font-size: 0.95rem;
    color: var(--color-pierre);
    line-height: 1.5;
}

.alert-banner__content p {
    margin: 0;
}

/* --- Footer -------------------------------- */
.site-footer {
    background: var(--color-nature-deep);
    color: rgba(255,255,255,.85);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem);
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand__logo {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-brand__logo .logo-laby { color: var(--color-feuille); }
.footer-brand__logo .logo-leo  { color: var(--color-orange); }

.footer-brand__tagline {
    font-family: var(--font-cursive);
    font-size: 1rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1rem;
}

.footer-brand__address {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
}

.footer-col__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-feuille);
    margin-bottom: 1rem;
}

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

.footer-col__links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,.7);
    transition: color var(--transition);
}

.footer-col__links a:hover { color: var(--color-orange); }

.site-footer__bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* --- Responsive (≤768px) ------------------- */
@media (max-width: 768px) {
    /* Nav mobile : logo à gauche, burger à droite */
    .site-nav {
        padding: 0 clamp(1rem, 5vw, 2rem);
    }

    /* Cacher les éléments desktop */
    .site-nav__links {
        display: none;
    }

    /* Afficher le burger */
    .nav-burger__toggle {
        display: flex;
        margin-left: auto;
    }

    /* Overlay plein écran */
    .nav-overlay {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(19, 16, 13, 0.95);
        flex-direction: column;
        padding: 2rem clamp(1.5rem, 6vw, 3rem);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .nav-burger__input:checked ~ .nav-overlay {
        opacity: 1;
        pointer-events: all;
    }

    /* Barre haute : croix à droite */
    .nav-overlay__bar {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 3rem;
    }

    /* Croix de fermeture */
    .nav-overlay__close {
        cursor: pointer;
        color: rgba(255, 255, 255, .7);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: color var(--transition), background var(--transition);
    }

    .nav-overlay__close:hover {
        color: #fff;
        background: rgba(255, 255, 255, .1);
    }

    /* Liste des pages */
    .nav-overlay__links {
        list-style: none;
        display: flex;
        flex-direction: column;
    }

    .nav-overlay__links li {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .nav-overlay__links li:first-child {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .nav-overlay__links a {
        display: block;
        padding: 1rem 0;
        font-family: var(--font-title);
        font-size: clamp(1.6rem, 5vw, 2.5rem);
        color: rgba(255, 255, 255, .8);
        transition: color var(--transition), padding-left var(--transition);
    }

    .nav-overlay__links a:hover,
    .nav-overlay__links a.active {
        color: var(--color-orange);
        padding-left: 0.5rem;
    }

    /* Alert banner mobile */
    .alert-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .alert-banner__mascot {
        width: 60px;
        height: 60px;
    }

    /* About */
    .about__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__stats {
        grid-template-columns: 1fr 1fr;
    }

    .about__stats--4col {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Valeurs */
    .valeurs__grid,
    .valeurs__grid--4 {
        grid-template-columns: 1fr;
    }

    /* Saison */
    .saison__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .saison__info {
        grid-template-columns: 1fr 1fr;
    }

    .saison__cta {
        align-items: flex-start;
    }

    /* Accès */
    .acces__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Accès & Carte */
    .acces-carte__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .acces-carte__map {
        height: 300px;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .lightbox__btn {
        width: 44px;
        height: 44px;
    }

    .lightbox__nav--prev { left: 0.5rem; }
    .lightbox__nav--next { right: 0.5rem; }

    .lightbox__video {
        width: 95vw;
    }

    .lightbox__bar {
        border-radius: 12px;
        padding: 0.5rem 1rem;
    }

    /* Contenu image+texte */
    .contenu-block--img-text,
    .contenu-block--img-text--reverse {
        grid-template-columns: 1fr;
    }

    .contenu-block--img-text--reverse .contenu-block--img-text__image {
        order: 0;
    }

    .contenu-block--img-text--reverse .contenu-block__text {
        order: 0;
    }

    /* Footer */
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Section label variant ----------------- */
.section__label--light {
    color: #fff;
}

.section__label--light::before {
    background: var(--color-feuille);
}

/* --- FAQ (accordion with <details>) -------- */
.faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq__inner--page {
    max-width: 900px;
}

.faq__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq__accordion {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.faq__accordion-question {
    display: block;
    padding: 1.2rem 2.5rem 1.2rem 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-nature-deep);
    cursor: pointer;
    position: relative;
    list-style: none;
    transition: color var(--transition);
}

.faq__accordion-question::-webkit-details-marker {
    display: none;
}

.faq__accordion-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-nature);
    transition: transform var(--transition);
}

.faq__accordion[open] .faq__accordion-question::after {
    content: '−';
}

.faq__accordion-question:hover {
    color: var(--color-nature);
}

.faq__accordion-answer {
    padding: 0 0 1.2rem;
    font-size: 0.95rem;
    color: var(--color-pierre);
    line-height: 1.7;
}

.faq__accordion-answer p {
    margin-bottom: 0.5rem;
}

.faq__accordion-answer a {
    color: var(--color-nature-deep);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.faq__accordion-answer a:hover,
.faq__accordion-answer a:focus-visible {
    color: var(--color-orange);
    text-decoration-thickness: 2px;
}

/* --- Saison dates (season opening) --------- */
.saison__dates {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

/* --- Saison info grid (extended) ----------- */
.saison__info--extended {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

/* --- Infos Pratiques ----------------------- */

/* Stat grid 4 colonnes */
.about__inner--center {
    display: block;
}

.about__stats--4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Saison single column (no CTA sidebar) */
.saison__inner--single {
    grid-template-columns: 1fr;
}

/* Horaires : item nocturne (bordure orange) */
.saison__item--highlight {
    border-left-color: var(--color-orange);
}

.saison__item--highlight .saison__item-label {
    color: var(--color-orange);
}

/* Horaires : item fermé (atténué) */
.saison__item--closed {
    opacity: 0.6;
}

/* Tableau tarifs */
.infos-tarifs {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.infos-tarifs__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.infos-tarifs__row:last-child {
    border-bottom: none;
}

.infos-tarifs__label {
    font-size: 1rem;
    color: var(--color-pierre);
}

.infos-tarifs__price {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-nature-deep);
}

.infos-tarifs__note {
    font-size: 0.9rem;
    color: var(--color-feuille);
    font-style: italic;
    margin-top: 1rem;
}

/* --- Tablet (≤1024px) ---------------------- */
@media (min-width: 769px) and (max-width: 1024px) {
    .valeurs__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Logo image (snippet area) ------------- */
.site-nav__logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* --- Gallery (en-images) ------------------- */
.gallery__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery__header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery__count {
    font-family: var(--font-cursive);
    font-size: 1rem;
    color: var(--color-pierre);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery__trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
}

.gallery__thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform var(--transition);
}

.gallery__trigger:hover .gallery__thumb,
.gallery__trigger:focus-visible .gallery__thumb {
    transform: scale(1.04);
}

.gallery__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.9;
    transition: opacity var(--transition), transform var(--transition);
}

.gallery__trigger:hover .gallery__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery__caption {
    padding: 0.6rem 0.25rem;
    font-size: 0.85rem;
    color: var(--color-pierre);
    line-height: 1.4;
}

.gallery__credit {
    display: block;
    font-size: 0.75rem;
    color: rgba(72, 69, 52, 0.6);
    font-family: var(--font-cursive);
}

/* --- Lightbox (dialog) --------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(19, 16, 13, 0.92);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox[open] {
    opacity: 1;
}

.lightbox:not([open]) {
    display: none;
}

.lightbox::backdrop {
    background: transparent;
}

/* Glassmorphism button base */
.lightbox__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: background var(--transition), color var(--transition);
}

.lightbox__btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.lightbox__nav--prev {
    left: 1rem;
}

.lightbox__nav--next {
    right: 1rem;
}

.lightbox__figure {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
    margin: 0;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.lightbox__img.is-loading {
    opacity: 0;
}

.lightbox__img[hidden],
.lightbox__video[hidden] {
    display: none;
}

.lightbox__video {
    width: min(90vw, 960px);
    aspect-ratio: 16 / 9;
    border-radius: 4px;
}

/* Bottom bar — glassmorphism pill */
.lightbox__bar {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 90vw;
}

.lightbox__bar-caption {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.lightbox__bar-counter {
    font-family: var(--font-cursive);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.lightbox__bar-badge {
    display: none;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-orange);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.lightbox__bar-badge.is-visible {
    display: inline-block;
}

/* --- Contenu (blocs configurables) -------- */
.contenu__inner {
    max-width: 950px;
    margin: 2rem auto 0;
}

.contenu-block {
    margin-bottom: 2.5rem;
}

.contenu-block:last-child {
    margin-bottom: 0;
}

.contenu-block--text {
    font-size: 1.05rem;
    color: var(--color-pierre);
    line-height: 1.75;
}

.contenu-block--text p {
    margin-bottom: 1rem;
}

.contenu-block--text img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.contenu-block--text a {
    color: var(--color-nature);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contenu-block--text a:hover {
    color: var(--color-nature-deep);
}

.contenu-block--citation {
    border-left: 4px solid var(--color-orange);
    background: var(--color-silence);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.5rem 2rem;
}

.contenu-block--citation-green {
    border-left-color: var(--color-feuille);
    background: var(--color-silence);
}

.contenu-block__quote {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-pierre);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contenu-block__author {
    font-weight: 700;
    font-style: normal;
    color: var(--color-nature-deep);
}

.contenu-block__role {
    font-size: 0.9rem;
    color: rgba(72, 69, 52, 0.7);
}

.contenu-block--img-text {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2rem;
    align-items: start;
}

.contenu-block--img-text--reverse {
    grid-template-columns: 3fr 2fr;
}

.contenu-block--img-text--reverse .contenu-block--img-text__image {
    order: 2;
}

.contenu-block--img-text--reverse .contenu-block__text {
    order: 1;
}

.contenu-block--img-text__image button {
    all: unset;
    cursor: pointer;
    display: block;
    width: 100%;
}

.contenu-block--img-text img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.contenu-block__text {
    font-size: 1.05rem;
    color: var(--color-pierre);
    line-height: 1.75;
}

.contenu-block__text p {
    margin-bottom: 1rem;
}

.contenu-block__text a {
    color: var(--color-nature);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contenu-block__text a:hover {
    color: var(--color-nature-deep);
}

/* ============================================================
   AVIS GOOGLE
   ============================================================ */

.avis__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.avis__header {
    margin-bottom: 2.5rem;
}

.avis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.avis-card {
    background: var(--color-silence);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.avis-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.avis-card__stars {
    display: flex;
    gap: 0.15rem;
    font-size: 1.2rem;
}

.avis-card__star {
    color: var(--color-sable);
}

.avis-card__star--filled {
    color: var(--color-orange);
}

.avis-card__text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-pierre);
    flex: 1;
}

.avis-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}

.avis-card__auteur {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-nature);
}

.avis-card__date {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(72, 69, 52, 0.6);
}

.avis-card__link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-nature);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.avis-card__link:hover {
    color: var(--color-nature-deep);
}

/* =====================================================
   CONTACT — Editorial botanical (hero + intro + grid)
   ===================================================== */

:root {
    --ct-ink: #1d2a1f;
    --ct-kraft: #ebdfc3;
    --ct-kraft-deep: #d9c99f;
    --ct-paper: #fbf7ec;
    --ct-rule: rgba(29, 42, 31, 0.15);
    --ct-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========== INTRO (title + body + mascot) ========== */

.ct-intro {
    position: relative;
    background: var(--ct-paper);
    padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem);
    font-family: var(--font-body);
    overflow: hidden;
}

.ct-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.ct-intro--with-mascot .ct-intro__inner {
    grid-template-columns: minmax(0, 1fr) auto;
}

.ct-intro__content {
    text-align: left;
    animation: ctFade 0.7s ease-out both;
}

.ct-intro__meta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-nature-deep);
    padding-left: 3rem;
    position: relative;
    margin-bottom: 1rem;
}

.ct-intro__meta::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2.5rem;
    height: 1px;
    background: var(--color-orange);
}

.ct-intro__title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-nature-deep);
    margin: 0;
    max-width: 16ch;
}

.ct-intro__rule {
    display: block;
    width: 60px;
    height: 3px;
    margin: 1.75rem 0;
    background: var(--color-orange);
    border-radius: 2px;
}

.ct-intro__body {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--ct-ink);
    font-weight: 400;
    max-width: 56ch;
}

.ct-intro__body :where(p, ul, ol) { margin: 0; }
.ct-intro__body :where(p, ul, ol) + :where(p, ul, ol) { margin-top: 0.9rem; }
.ct-intro__body a,
.ct-form-card__intro a,
.form__note a {
    color: var(--color-orange);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.ct-intro__body a:hover,
.ct-intro__body a:focus,
.ct-form-card__intro a:hover,
.ct-form-card__intro a:focus,
.form__note a:hover,
.form__note a:focus {
    color: var(--color-nature-deep);
    text-decoration-color: var(--color-nature-deep);
}
.ct-intro__body em {
    font-family: var(--font-cursive);
    font-style: normal;
    font-size: 1.2em;
    color: var(--color-nature-deep);
    line-height: 1;
}

.ct-intro__mascot {
    width: clamp(180px, 24vw, 320px);
    pointer-events: none;
    animation: ctMascot 1s cubic-bezier(.2, .6, .2, 1) 0.15s both;
}

.ct-intro__mascot img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 30px rgba(29, 42, 31, 0.18));
}

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

@keyframes ctMascot {
    from { opacity: 0; transform: translateY(20px) rotate(-6deg); }
    to   { opacity: 1; transform: translateY(0) rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
    .ct-intro__content,
    .ct-intro__mascot { animation: none; }
}

@media (max-width: 768px) {
    .ct-intro--with-mascot .ct-intro__inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }
    .ct-intro__content { text-align: center; }
    .ct-intro__title { max-width: 100%; }
    .ct-intro__rule { margin-left: auto; margin-right: auto; }
    .ct-intro__body { margin-left: auto; margin-right: auto; }
    .ct-intro__mascot {
        order: -1;
        margin: 0 auto;
        width: clamp(140px, 36vw, 220px);
    }
}

/* ========== MAIN — form + aside grid ========== */

.ct-main {
    position: relative;
    background:
        var(--ct-grain),
        linear-gradient(180deg, var(--ct-paper) 0%, var(--ct-kraft) 100%);
    background-size: 180px 180px, 100% 100%;
    background-blend-mode: overlay, normal;
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 5vw, 3rem) clamp(4rem, 9vw, 7rem);
    overflow: hidden;
}

.ct-main__grid {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

@media (max-width: 900px) {
    .ct-main__grid { grid-template-columns: 1fr; }
}

/* ========== FORM CARD ========== */

.ct-form-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
    box-shadow:
        0 1px 0 rgba(29, 42, 31, 0.04),
        0 24px 48px -20px rgba(29, 42, 31, 0.22),
        0 4px 12px -4px rgba(29, 42, 31, 0.08);
    border: 1px solid rgba(29, 42, 31, 0.06);
}

.ct-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background:
        linear-gradient(180deg, transparent 0%, rgba(243, 146, 0, 0.025) 100%);
    pointer-events: none;
}

.ct-form-card__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--ct-rule);
    position: relative;
}

.ct-form-card__num {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    line-height: 0.85;
    color: var(--color-orange);
    letter-spacing: -0.03em;
    display: inline-block;
    transform: translateY(-4px);
}

.ct-form-card__title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    line-height: 1.1;
    color: var(--ct-ink);
    margin: 0 0 0.35rem;
    letter-spacing: -0.01em;
}

.ct-form-card__sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(29, 42, 31, 0.68);
    margin: 0;
}

.ct-form-card__intro {
    margin: 0 0 1.5rem;
    padding: 1rem 1.15rem;
    background: var(--color-silence);
    border-left: 2px solid var(--color-feuille);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--ct-ink);
}

.ct-form-card__intro :where(p, ul, ol) { margin: 0; }
.ct-form-card__intro :where(p, ul, ol) + :where(p, ul, ol) { margin-top: 0.55rem; }

/* ========== ASIDE (editorial panel + rotated seal) ========== */

.ct-aside {
    position: sticky;
    top: calc(var(--nav-height) + 1.25rem);
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

@media (max-width: 900px) {
    .ct-aside { position: static; }
}

.ct-aside__panel {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    box-shadow:
        0 1px 0 rgba(29, 42, 31, 0.04),
        0 24px 48px -20px rgba(29, 42, 31, 0.22),
        0 4px 12px -4px rgba(29, 42, 31, 0.08);
    border: 1px solid rgba(29, 42, 31, 0.06);
}

.ct-aside__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--ct-rule);
}

.ct-aside__num {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    line-height: 0.85;
    color: var(--color-nature);
    letter-spacing: -0.03em;
    transform: translateY(-2px);
}

.ct-aside__title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    line-height: 1.15;
    color: var(--ct-ink);
    margin: 0 0 0.25rem;
    letter-spacing: -0.01em;
}

.ct-aside__sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(29, 42, 31, 0.65);
    margin: 0;
}

.ct-aside__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.ct-aside__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--ct-rule);
}

.ct-aside__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ct-aside__bullet {
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--color-orange);
    font-size: 1.6rem;
    line-height: 1;
    transform: translateY(-5px);
}

.ct-aside__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.ct-aside__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(29, 42, 31, 0.55);
}

.ct-aside__value {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ct-ink);
    line-height: 1.35;
    word-break: break-word;
    letter-spacing: -0.005em;
}

.ct-aside__value--plain {
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.5;
}

a.ct-aside__value {
    background-image: linear-gradient(0deg, var(--color-orange) 0%, var(--color-orange) 100%);
    background-size: 100% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease, color 0.2s ease;
    text-decoration: none;
    color: var(--ct-ink);
    padding-bottom: 2px;
}

a.ct-aside__value:hover {
    background-size: 100% 2px;
    color: var(--color-orange);
}

.ct-aside__link {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-nature);
    text-decoration: none;
    transition: color var(--transition), gap 0.2s ease;
}

.ct-aside__link:hover {
    color: var(--color-orange);
    gap: 0.55rem;
}

.ct-aside__socials {
    margin-top: 0.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ct-rule);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ct-aside__socials-links {
    display: flex;
    gap: 0.5rem;
}

.ct-aside__socials-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-silence);
    color: var(--color-nature);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ct-aside__socials-links a:hover {
    background: var(--color-nature);
    color: #fff;
    transform: translateY(-2px);
}

/* ========== FORM controls (reused by partial) ========== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

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

.form__row--split {
    flex-direction: row;
    flex-wrap: wrap;
}

.form__row--split > .form__field {
    flex: 1 1 220px;
    min-width: 0;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form__label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--ct-ink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form__input,
.form__select,
.form__textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(29, 42, 31, 0.35);
    border-radius: 8px;
    background: #fff;
    color: var(--ct-ink);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    width: 100%;
    line-height: 1.4;
    box-shadow: inset 0 1px 2px rgba(29, 42, 31, 0.04);
}

.form__input:hover,
.form__select:hover,
.form__textarea:hover {
    border-color: rgba(29, 42, 31, 0.6);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.18);
}

.form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23f39200' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form__textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.55;
}

.form__input[aria-invalid="true"],
.form__select[aria-invalid="true"],
.form__textarea[aria-invalid="true"] {
    border-color: #c0392b;
}

.form__error {
    display: block;
    color: #922b21;
    font-size: 0.82rem;
    font-family: var(--font-body);
    font-weight: 500;
    margin: 0.1rem 0 0;
    padding: 0;
    list-style: none;
}

.form__error li { list-style: none; }

.form__error--global {
    background: linear-gradient(135deg, #fdecea 0%, #fad4d0 100%);
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    border-left: 3px solid #c0392b;
}

/* Conditional block (reservation details) */

.form__conditional {
    margin: 0.3rem 0 0.3rem;
    padding: 1.4rem 1.4rem 1.1rem;
    background: linear-gradient(135deg, var(--color-silence) 0%, rgba(149, 190, 39, 0.12) 100%);
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: ctCondIn 0.3s ease-out;
}

.form__conditional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.4rem;
    width: 2.5rem;
    height: 3px;
    background: var(--color-orange);
    border-radius: 0 0 2px 2px;
}

.form__conditional[hidden] { display: none; }

.form__conditional-title {
    font-family: var(--font-cursive);
    font-size: 1.25rem;
    color: var(--color-nature-deep);
    margin: 0;
    line-height: 1;
}

@keyframes ctCondIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .form__conditional { animation: none; }
}

/* Notes per motif */

.form__note {
    padding: 0.85rem 1.1rem;
    border-radius: 6px;
    background: var(--color-silence);
    border-left: 2px solid var(--color-feuille);
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ct-ink);
    font-family: var(--font-body);
    animation: ctCondIn 0.3s ease-out;
}

.form__note[hidden] { display: none; }

.form__note :where(p, ul, ol) { margin: 0; }
.form__note :where(p, ul, ol) + :where(p, ul, ol) { margin-top: 0.45rem; }

/* Honeypot (invisible) */

.form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form__field--turnstile { margin-top: 0.3rem; }

/* Submit button */

.form__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--ct-rule);
}

.form__submit {
    padding: 1rem 2.2rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    gap: 0.7rem;
    border-radius: 999px;
    background: var(--color-orange);
    color: #fff;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 18px -4px rgba(243, 146, 0, 0.45);
}

.form__submit:hover {
    background: #d97e00;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(243, 146, 0, 0.55);
}

.form__submit:active {
    transform: translateY(0);
}

.form__submit svg {
    transition: transform 0.25s ease;
}

.form__submit:hover svg {
    transform: translateX(4px);
}

@media (max-width: 560px) {
    .form__actions {
        justify-content: stretch;
    }
    .form__submit {
        flex: 1;
        justify-content: center;
    }
}

/* Flash messages */

.form__flash {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.45;
    animation: ctFlashIn 0.4s ease-out;
}

.form__flash-icon { flex: 0 0 auto; margin-top: 1px; }

.form__flash--success {
    background: linear-gradient(135deg, #e4f5db 0%, #d4edc6 100%);
    color: #24612a;
    border-left: 3px solid var(--color-feuille);
    box-shadow: 0 6px 18px -8px rgba(149, 190, 39, 0.4);
}

.form__flash--error {
    background: linear-gradient(135deg, #fdecea 0%, #fad4d0 100%);
    color: #922b21;
    border-left: 3px solid #c0392b;
    box-shadow: 0 6px 18px -8px rgba(192, 57, 43, 0.3);
}

@keyframes ctFlashIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .form__flash { animation: none; }
}

/* =============================================
   Error pages (404, 403, 500, 503…)
   ============================================= */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 8vw, 6rem) 1.5rem;
    background: var(--color-sable, #fdf8f0);
}

.error-page__inner {
    max-width: 640px;
    text-align: center;
}

.error-page__code {
    font-size: clamp(4rem, 14vw, 8rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 1rem;
    color: var(--color-vert-fonce, #2d6639);
    letter-spacing: -0.04em;
    opacity: 0.95;
}

.error-page__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 0.75rem;
    color: var(--color-vert-fonce, #2d6639);
}

.error-page__lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 auto 2rem;
    color: var(--color-texte, #333);
    max-width: 480px;
}

.error-page__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
