/* =========================================================
 * Étang de Saint-Géry — design éditorial
 * Palette : verts + crèmes / Polices : Cormorant Garamond + Inter
 * ========================================================= */

:root {
    /* Palette d'origine — verts conservés */
    --vertclair: #B7CE66;
    --vertsemiclair: #8FB43A;
    --vertfonce: #4B5943;
    --vertbleu: #C8D6A2;
    --vertsemifonce: #679436;
    --grisclair: #DCDFDA;

    /* Tons éditoriaux dérivés */
    --creme: #F6F4ED;
    --creme-fonce: #ECE7D8;
    --encre: #1F231C;
    --vertprofond: #2F3A2A;

    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--encre);
    background: var(--creme);
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.35s ease, padding 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
    color: #fff;
}
.nav--solid { background: var(--creme); color: var(--encre); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.nav.scrolled, .nav--solid { background: var(--creme); color: var(--encre); padding: 14px 48px; box-shadow: 0 1px 0 rgba(0,0,0,0.06); }

.nav__brand {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.nav__brand-mark {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.18);   /* fill du cercle quand nav transparente */
    --logo-accent: #fff;                 /* traits + œil quand nav transparente */
    transition: color 0.35s ease;
}
.nav__brand-mark svg { width: 100%; height: 100%; display: block; }
.nav.scrolled .nav__brand-mark,
.nav--solid .nav__brand-mark {
    color: var(--vertfonce);             /* fill du cercle */
    --logo-accent: var(--creme);         /* traits + œil */
}
.nav__brand-text {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.08;
    font-weight: 500;
}
.nav__brand-text em {
    font-style: italic;
    color: var(--vertclair);          /* en mode transparent (sur hero) : tonalité claire */
    font-weight: 500;
}
.nav.scrolled .nav__brand-text em,
.nav--solid .nav__brand-text em {
    color: var(--vertsemifonce);      /* en mode solide (crème) : tonalité plus foncée */
}
.nav__links {
    display: flex; gap: 36px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
}
.nav__links a { position: relative; padding: 6px 0; }
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--vertsemiclair);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--vertsemiclair);
    transition: all 0.25s ease;
}
.nav__cta:hover { background: var(--vertsemifonce); border-color: var(--vertsemifonce); }
.nav__cta svg { width: 12px; height: 12px; }

.nav__burger {
    display: none;
    width: 32px; height: 24px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}
.nav__burger span { display: block; width: 100%; height: 1.5px; background: currentColor; transition: all 0.3s ease; }

/* CTA dédié au menu mobile (caché en desktop, visible en mobile uniquement) */
.nav__mobile-cta { display: none; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    color: #fff;
}
.hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.55) 100%),
        url("images/hero.webp") center 30% / cover no-repeat;
}
.hero__media::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 80%, rgba(75,89,67,0.5) 0%, transparent 60%);
    mix-blend-mode: multiply;
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 48px 88px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: end;
    gap: 48px;
}
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 28px;
}
.hero__eyebrow::before { content: ""; width: 36px; height: 1px; background: currentColor; }
.hero__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(56px, 7vw, 104px);
    line-height: 0.98;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--vertclair); }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__aside {
    align-self: end;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 4px;
    padding: 28px 30px;
    max-width: 380px;
    justify-self: end;
    margin-bottom: 4px;
}
.hero__aside-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.85; margin-bottom: 14px; }
.hero__aside-text {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
    font-style: italic;
}
.hero__aside-sig { margin-top: 18px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; }

.hero__scroll {
    position: absolute;
    bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 3;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0.85;
}
.hero__scroll::after {
    content: ""; width: 1px; height: 36px; background: currentColor;
    animation: scrollLine 2.2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50%      { transform: scaleY(1);   opacity: 1; }
}

/* ---------- Hero "page" (autres pages) ---------- */
.page-hero {
    position: relative;
    height: 56vh;
    min-height: 440px;
    overflow: hidden;
    color: #fff;
    display: flex; align-items: end;
}
.page-hero__media {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.7) 100%),
        url("images/hero.webp") center 35% / cover no-repeat;
}
.page-hero__content {
    position: relative; z-index: 2;
    max-width: 1280px; width: 100%;
    margin: 0 auto;
    padding: 0 48px 80px;
}
.page-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 24px;
}
.page-hero__eyebrow::before { content: ""; width: 36px; height: 1px; background: currentColor; }
.page-hero__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(44px, 6vw, 84px);
    line-height: 1;
    letter-spacing: -0.01em;
    max-width: 18ch;
}
.page-hero__title em { font-style: italic; color: var(--vertclair); }
.page-hero__sub { margin-top: 20px; font-size: 16px; opacity: 0.85; max-width: 60ch; line-height: 1.6; }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    text-align: center;
}
.btn--primary { background: var(--vertsemiclair); color: #fff; }
.btn--primary:hover { background: var(--vertclair); color: var(--vertprofond); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: #fff; color: var(--encre); }
.btn--dark { background: var(--vertfonce); color: var(--creme); }
.btn--dark:hover { background: var(--vertprofond); }
.btn--outline { background: transparent; color: var(--vertfonce); border-color: var(--vertfonce); }
.btn--outline:hover { background: var(--vertfonce); color: var(--creme); }
.btn svg { width: 14px; height: 14px; }

/* ---------- STATS BAND ---------- */
.stats {
    background: var(--vertprofond);
    color: var(--creme);
    padding: 90px 48px;
}
.stats__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.stat { padding: 0 48px; position: relative; }
.stat:not(:last-child)::after {
    content: ""; position: absolute;
    right: 0; top: 12px; bottom: 12px;
    width: 1px; background: rgba(255,255,255,0.12);
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }
.stat__num {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 72px;
    color: var(--vertclair);
    line-height: 1;
    margin-bottom: 18px;
}
.stat__title { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-bottom: 14px; line-height: 1.15; }
.stat__body  { font-size: 14px; line-height: 1.65; opacity: 0.78; max-width: 320px; }

/* ---------- Sections génériques ---------- */
section { padding: 130px 48px; }
.container { max-width: 1280px; margin: 0 auto; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--vertsemifonce);
    margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--vertprofond);
}
.section-title em { font-style: italic; color: var(--vertsemifonce); }
.section-body { font-size: 16.5px; line-height: 1.75; color: #3b4138; max-width: 56ch; }

/* ---------- Présentation ---------- */
.presentation { background: var(--creme); }
.presentation__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 96px;
    align-items: center;
}
.presentation__img-wrap { position: relative; aspect-ratio: 4 / 5; }
.presentation__img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.presentation__img-tag {
    position: absolute;
    bottom: -28px; left: -28px;
    background: var(--vertfonce);
    color: var(--creme);
    padding: 22px 28px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.2;
    max-width: 260px;
}
.presentation__img-tag small {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.7;
}
.presentation__features { margin-top: 40px; display: grid; gap: 22px; }
.feature {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
    padding-top: 22px;
    border-top: 1px solid rgba(75,89,67,0.18);
}
.feature__num { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--vertsemifonce); }
.feature__title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--vertprofond); margin-bottom: 6px; }
.feature__body  { font-size: 14.5px; color: #4b5447; line-height: 1.6; }

/* ---------- Postes ---------- */
.postes { background: var(--creme-fonce); padding-top: 130px; padding-bottom: 130px; }
.postes__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 70px;
}
.postes__head p { font-size: 16px; line-height: 1.7; color: #4b5447; max-width: 48ch; }
.postes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.poste-card {
    background: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(47,58,42,0.04);
    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.poste-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -30px rgba(47,58,42,0.22), 0 6px 18px -10px rgba(47,58,42,0.10);
}
.poste-card__img {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    position: relative;
}
.poste-card__img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.poste-card__num {
    position: absolute;
    top: 18px; left: 20px;
    color: #fff;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.05em;
    z-index: 2;
}
.poste-card__body { padding: 24px 26px 28px; }
.poste-card__title { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--vertprofond); margin-bottom: 6px; }
.poste-card__meta {
    display: flex; gap: 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vertsemifonce);
    font-weight: 600;
    margin-bottom: 14px;
}
.poste-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.poste-card__meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--vertsemiclair); }
.poste-card__desc { font-size: 14px; line-height: 1.6; color: #5a614f; margin-bottom: 18px; }
.poste-card__link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--vertfonce);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--vertfonce);
}
.poste-card__link:hover { color: var(--vertsemifonce); border-color: var(--vertsemifonce); }

/* ---------- Accordéons calendrier ---------- */
.poste-detail {
    background: #fff;
    margin-bottom: 22px;
    border-top: 1px solid rgba(75,89,67,0.15);
    border-bottom: 1px solid rgba(75,89,67,0.15);
}
.poste-detail__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 32px 28px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.poste-detail__head:hover { background: var(--creme); }
.poste-detail__num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--vertsemifonce);
    margin-right: 24px;
}
.poste-detail__title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--vertprofond);
    flex: 1;
}
.poste-detail__toggle {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--vertfonce);
    color: var(--vertfonce);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.poste-detail.open .poste-detail__toggle {
    background: var(--vertfonce);
    color: var(--creme);
    transform: rotate(45deg);
}
.poste-detail__body {
    display: none;
    padding: 0 28px 32px;
}
.poste-detail.open .poste-detail__body { display: block; }

/* ---------- Calendrier ---------- */
.calendar-container {
    margin-top: 20px;
    background: var(--creme);
    padding: 24px;
    border: 1px solid rgba(75,89,67,0.1);
}
.calendar-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
}
.calendar-header h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--vertprofond);
}
.calendar-header button {
    background: transparent;
    color: var(--vertfonce);
    border: 1px solid var(--vertfonce);
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}
.calendar-header button:hover { background: var(--vertfonce); color: var(--creme); }
.calendar {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 4px;
}
.calendar th {
    background: transparent;
    color: var(--vertsemifonce);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 0;
}
.calendar td {
    text-align: center;
    height: 52px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--vertprofond);
    background: var(--creme);
    border: 0;
    position: relative;
    overflow: hidden;
}
.calendar td > div { padding: 4px; position: relative; z-index: 2; }
/* Cellule entièrement réservée */
.bgred { background: rgba(205, 97, 85, 0.38) !important; color: #7B241C; font-weight: 600; }
/* Réservation classique : premier jour (arrivée à midi → 2e moitié de la journée occupée) */
.bgblancrouge { background: var(--creme) !important; }
.bgblancrouge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(205, 97, 85, 0.38);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}
/* Réservation classique : dernier jour (départ à midi → 1ère moitié occupée) */
.bgrougeblanc { background: var(--creme) !important; }
.bgrougeblanc::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(205, 97, 85, 0.38);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
}

/* ---------- Expérience ---------- */
.experience {
    background: var(--vertprofond);
    color: var(--creme);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.experience__img {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.4)),
        url("images/accueil-2.webp") center / cover no-repeat;
    min-height: 720px;
}
.experience__content { padding: 130px 80px; display: flex; flex-direction: column; justify-content: center; max-width: 640px; }
.experience .eyebrow { color: var(--vertclair); }
.experience .section-title { color: var(--creme); }
.experience .section-title em { color: var(--vertclair); }
.experience p { color: rgba(246,244,237,0.78); font-size: 16.5px; line-height: 1.8; margin-top: 28px; }
.experience__list { margin-top: 40px; display: grid; gap: 14px; }
.experience__list li {
    padding-left: 28px;
    position: relative;
    font-size: 15.5px;
    color: rgba(246,244,237,0.92);
}
.experience__list li::before {
    content: "";
    position: absolute; left: 0; top: 11px;
    width: 14px; height: 1px; background: var(--vertclair);
}
.experience__cta { margin-top: 44px; }

/* ---------- Localisation ---------- */
.localisation { background: var(--creme-fonce); padding: 130px 48px; }
.localisation__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.localisation__info dl { margin-top: 40px; display: grid; gap: 22px; }
.localisation__info .row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(75,89,67,0.18);
}
.localisation__info dt {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--vertsemifonce);
    font-weight: 600;
    padding-top: 4px;
}
.localisation__info dd { font-family: var(--serif); font-size: 22px; color: var(--vertprofond); line-height: 1.3; }
.localisation__info dd small {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    color: #5a614f;
    margin-top: 4px;
    line-height: 1.5;
}
.localisation__map {
    aspect-ratio: 4/5;
    border-radius: 2px;
    overflow: hidden;
    background: var(--vertbleu);
    border: 1px solid rgba(75,89,67,0.15);
}
.localisation__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.85) hue-rotate(-10deg); }

/* ---------- CTA band ---------- */
.cta {
    background: var(--vertfonce);
    color: var(--creme);
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: ""; position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: var(--vertsemifonce);
    opacity: 0.18;
    top: -260px; right: -120px;
    filter: blur(2px);
}
.cta::after {
    content: ""; position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: var(--vertclair);
    opacity: 0.12;
    bottom: -180px; left: -80px;
}
.cta__inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
}
.cta__title { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); line-height: 1.05; font-weight: 400; color: var(--creme); }
.cta__title em { font-style: italic; color: var(--vertclair); }
.cta__sub { margin-top: 24px; color: rgba(246,244,237,0.75); font-size: 16px; max-width: 50ch; line-height: 1.7; }
.cta__panels { display: grid; gap: 16px; }
.cta-panel {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 26px 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cta-panel:hover { background: rgba(183,206,102,0.12); border-color: var(--vertclair); }
.cta-panel h4 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--creme); margin-bottom: 4px; }
.cta-panel p  { font-size: 13px; color: rgba(246,244,237,0.65); letter-spacing: 0.02em; }
.cta-panel__arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.cta-panel:hover .cta-panel__arrow {
    background: var(--vertclair);
    border-color: var(--vertclair);
    color: var(--vertprofond);
    transform: rotate(-45deg);
}
.cta-panel__arrow svg { width: 16px; height: 16px; }

/* ---------- Formulaires ---------- */
.form-section {
    background: var(--creme);
    padding: 130px 48px;
}
.form-section--postes { background: var(--creme-fonce); }
.form-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 96px;
    align-items: start;
}
.form-grid--single { grid-template-columns: 1fr; max-width: 760px; }

.form-card {
    background: #fff;
    padding: 56px 52px;
    border: 1px solid rgba(75,89,67,0.1);
    border-radius: 2px;
}
.form-row { margin-bottom: 22px; }
.form-row--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--vertsemifonce);
    font-weight: 600;
    margin-bottom: 10px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row input[type="password"],
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--encre);
    background: var(--creme);
    border: 1px solid rgba(75,89,67,0.18);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    border-color: var(--vertsemifonce);
    background: #fff;
}
.form-row textarea { min-height: 150px; resize: vertical; }

.form-divider {
    margin: 36px 0 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(75,89,67,0.15);
    font-family: var(--serif);
    font-size: 22px;
    color: var(--vertprofond);
    font-weight: 500;
}
.form-toggle {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    background: transparent;
    border: 1px dashed rgba(75,89,67,0.35);
    cursor: pointer;
    color: var(--vertfonce);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease;
}
.form-toggle:hover { border-color: var(--vertsemifonce); color: var(--vertsemifonce); }

.form-check {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 0;
}
.form-check input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--vertsemifonce);
    margin-top: 2px;
    cursor: pointer;
}
.form-check label {
    font-family: var(--sans);
    font-size: 13.5px;
    color: var(--encre);
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    margin: 0;
    cursor: pointer;
}
.form-check label .help {
    display: block;
    color: #5a614f;
    font-size: 12px;
    margin-top: 4px;
}

.price-row {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--creme);
    padding: 22px 26px;
    margin-top: 18px;
    border: 1px solid rgba(75,89,67,0.15);
}
.price-row__label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--vertsemifonce);
    font-weight: 600;
}
.price-row__amount {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--vertprofond);
}
.price-row__amount small { font-family: var(--sans); font-size: 14px; color: #5a614f; margin-left: 4px; }

.form-submit { margin-top: 32px; }
.form-submit .btn { width: 100%; justify-content: center; }

.contact-aside {
    padding-top: 12px;
}
.contact-aside dl { display: grid; gap: 24px; margin-top: 36px; }
.contact-aside .row {
    display: grid; grid-template-columns: 110px 1fr;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(75,89,67,0.18);
}
.contact-aside dt {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--vertsemifonce);
    font-weight: 600;
    padding-top: 4px;
}
.contact-aside dd { font-family: var(--serif); font-size: 22px; color: var(--vertprofond); line-height: 1.3; }
.contact-aside dd small { display: block; font-family: var(--sans); font-size: 13px; color: #5a614f; margin-top: 4px; line-height: 1.5; }

/* Tarifs panneau */
.tarifs-card {
    background: var(--vertprofond);
    color: var(--creme);
    padding: 36px 40px;
    margin-top: 32px;
    border-radius: 2px;
}
.tarifs-card h4 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--creme);
}
.tarifs-card ul { display: grid; gap: 14px; }
.tarifs-card li {
    display: flex; justify-content: space-between; gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(246,244,237,0.12);
    font-size: 14px;
}
.tarifs-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.tarifs-card .price { color: var(--vertclair); font-weight: 600; }

/* ---------- Alertes ---------- */
.toast-zone {
    position: fixed;
    top: 100px; right: 28px;
    z-index: 200;
    display: flex; flex-direction: column; gap: 12px;
    max-width: calc(100vw - 56px);
}
.toast {
    background: #fff;
    border-left: 4px solid var(--vertsemifonce);
    padding: 16px 22px;
    box-shadow: 0 20px 50px -20px rgba(31,35,28,0.4);
    border-radius: 2px;
    min-width: 280px;
    display: flex; justify-content: space-between; align-items: center; gap: 18px;
    animation: toastIn 0.4s ease;
}
.toast--error { border-left-color: #CD6155; }
.toast__msg { font-size: 14px; line-height: 1.5; color: var(--encre); }
.toast__close {
    background: transparent; border: 0; cursor: pointer;
    font-size: 20px; line-height: 1; color: #5a614f;
}
@keyframes toastIn {
    from { transform: translateX(20px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #1a1f17;
    color: rgba(246,244,237,0.7);
    padding: 80px 48px 36px;
}
.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(246,244,237,0.1);
}
.site-footer__brand {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--creme);
    line-height: 1.1;
    margin-bottom: 16px;
}
.site-footer__brand em { font-style: italic; color: var(--vertclair); }
.site-footer__tag { font-size: 14px; line-height: 1.7; max-width: 38ch; }
.site-footer h5 {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--vertclair);
    margin-bottom: 22px;
    font-weight: 600;
}
.site-footer ul { display: grid; gap: 10px; }
.site-footer ul a { font-size: 14px; color: rgba(246,244,237,0.7); transition: color 0.2s ease; }
.site-footer ul a:hover { color: var(--creme); }
.site-footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px;
    color: rgba(246,244,237,0.45);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .nav, section, .stats, .form-section, .localisation, .cta, .site-footer { padding-left: 32px; padding-right: 32px; }
    .form-grid { grid-template-columns: 1fr; gap: 56px; }
    .experience__content { padding: 100px 48px; }
}

@media (max-width: 900px) {
    /* La nav reste toujours sur fond crème en mobile, pour homogénéiser.
       Hauteur déterministe (76px) pour que le menu déroulant se colle pile dessous. */
    .nav {
        background: var(--creme);
        color: var(--encre);
        box-shadow: 0 1px 0 rgba(0,0,0,0.06);
        padding: 0 22px;
        min-height: 76px;
        box-sizing: border-box;
    }
    /* Sur mobile la nav est toujours "solid" → le logo prend les couleurs du mode solide :
       cercle en vertfonce, traits en crème. */
    .nav__brand-mark {
        color: var(--vertfonce);
        --logo-accent: var(--creme);
    }
    /* CTA "Réserver" caché dans la barre — il réapparaît dans le menu burger */
    .nav__cta { display: none; }
    /* Hero, sections : derrière la nav fixe, on garde le fond crème en haut */
    body { background: var(--creme); }
    /* La nav est fixed (~64px). Le contenu du hero doit toujours commencer en
       dessous, donc on réduit la hauteur mini et on cale le contenu en haut. */
    /* Le hero grandit avec son contenu (pas de coupe) et démarre sous la nav fixe */
    .hero { height: auto; min-height: 100vh; overflow: visible; padding-top: 0; }
    .page-hero { height: auto; min-height: 46vh; overflow: visible; }

    .nav, section, .stats, .form-section, .localisation, .cta, .site-footer { padding-left: 22px; padding-right: 22px; }
    .nav__links {
        display: none;
        position: fixed;
        top: 76px;
        left: 0; right: 0;
        background: var(--creme);
        color: var(--encre);
        flex-direction: column;
        gap: 0;
        padding: 22px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav__links.open { display: flex; }
    .nav__links a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(75,89,67,0.1);
        font-size: 14px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-weight: 500;
    }
    .nav__links .nav__mobile-cta {
        margin-top: 16px;
        background: var(--vertsemiclair);
        color: #fff;
        text-align: center;
        padding: 14px 22px;
        border: 1px solid var(--vertsemiclair);
        border-radius: 999px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .nav__links .nav__mobile-cta svg { width: 12px; height: 12px; }
    .nav__burger { display: flex; }

    .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;   /* commence sous la nav, s'écoule vers le bas */
        padding: 132px 22px 64px;      /* grande marge sous la nav (hauteur nav + air) */
    }
    .hero__aside {
        justify-self: start;
        max-width: 100%;
        margin-top: 32px;
    }
    .hero__scroll { display: none; }   /* "Défiler" masqué sur mobile */
    .page-hero__content { padding: 124px 22px 56px; }

    .stats__inner { grid-template-columns: 1fr; gap: 40px; }
    .stat { padding: 0; }
    .stat:not(:last-child)::after { width: auto; height: 1px; right: 0; left: 0; bottom: -20px; top: auto; }

    .presentation__grid,
    .postes__head,
    .experience,
    .localisation__grid,
    .cta__inner,
    .site-footer__inner { grid-template-columns: 1fr; gap: 48px; }

    .postes__grid { grid-template-columns: 1fr; }
    .experience__img { min-height: 380px; }
    .form-card { padding: 36px 26px; }
    .form-row--cols { grid-template-columns: 1fr; }
    /* éviter le débordement des inputs date (qui ont une min-width native sur mobile) */
    .form-row--cols > * { min-width: 0; }
    .form-row input, .form-row select, .form-row textarea { width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box; }
    .form-section, .localisation, .cta { padding-top: 80px; padding-bottom: 80px; }
    section { padding-top: 80px; padding-bottom: 80px; }
    .site-footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}
