/* ============================================================
   Les Randonneurs — les-randonneurs.com
   Carnet d'expédition saharienne : papier sable, encre brune,
   terracotta & indigo. Typo Gambarino (display) / Colfax (texte).
   ============================================================ */

/* ---------- Fontes auto-hébergées ---------- */
@font-face {
    font-family: 'Gambarino';
    src: url('/fonts/Gambarino-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Colfax';
    src: url('/fonts/Colfax-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: optional;
}
@font-face {
    font-family: 'Colfax';
    src: url('/fonts/Colfax-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}
@font-face {
    font-family: 'Colfax';
    src: url('/fonts/Colfax-RegularItalic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: optional;
}
@font-face {
    font-family: 'Colfax';
    src: url('/fonts/Colfax-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: optional;
}
@font-face {
    font-family: 'Colfax';
    src: url('/fonts/Colfax-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
}

/* ---------- Variables & socle ---------- */
:root {
    --paper: #f5eedd;
    --paper-2: #ece1c6;
    --ink: #2b2310;
    --ink-2: #6d6147;
    --line: rgba(43, 35, 16, .22);
    --terra: #b34a16;
    --terra-deep: #8c3a12;
    --indigo: #1f3b63;
    --night: #152540;
    --gold: #c79a3d;
    --sand: #d9c69c;
    --wa: #1faa55;
    --font-display: 'Gambarino', 'Iowan Old Style', Georgia, serif;
    --font-body: 'Colfax', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --w-content: 71rem;
    --w-text: 44rem;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

/* Grain papier, très léger, sur tout le site */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .05;
    background-image: 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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.04;
    margin: 0 0 1.2rem;
    text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }

p { margin: 0 0 1.1rem; }

a { color: inherit; }

main a:not(.btn):not(.card):not(.dest) {
    color: var(--terra-deep);
    text-decoration-color: rgba(179, 74, 22, .4);
    text-underline-offset: 3px;
    transition: text-decoration-color .2s;
}
main a:not(.btn):not(.card):not(.dest):hover { text-decoration-color: var(--terra); }

::selection { background: var(--terra); color: var(--paper); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: -200vw;
    top: 0;
    z-index: 100;
    padding: .8rem 1.2rem;
    background: var(--ink);
    color: var(--paper);
}
.skip-link:focus { left: 0; }

/* ---------- Surtitres (kickers) ---------- */
.kicker {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 0 0 1.1rem;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--terra);
}
.kicker::before {
    content: '';
    width: 2.4rem;
    height: 1px;
    background: currentColor;
    flex: none;
}
.kicker--center { justify-content: center; }
.kicker--center::after {
    content: '';
    width: 2.4rem;
    height: 1px;
    background: currentColor;
    flex: none;
}
.kicker--light { color: var(--sand); }
.kicker--gold { color: var(--gold); }

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .85rem 1.6rem;
    border: 1px solid var(--ink);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn--solid {
    background: var(--terra);
    border-color: var(--terra);
    color: var(--paper);
}
.btn--solid:hover { background: var(--terra-deep); border-color: var(--terra-deep); }

.btn--line {
    background: transparent;
    border-color: currentColor;
    color: inherit;
}

.btn--ghost {
    background: transparent;
    border-color: rgba(245, 238, 221, .55);
    color: var(--paper);
}
.btn--ghost:hover { background: rgba(245, 238, 221, .12); }

.btn--wa { border-color: var(--line); }
.btn--wa svg { color: var(--wa); }
.btn--wa:hover { border-color: var(--wa); }

/* ---------- Barre haute ---------- */
.topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .45rem 1.5rem;
    background: var(--night);
    color: var(--sand);
    font-size: .8rem;
    letter-spacing: .03em;
}
.topbar p { margin: 0; }
.topbar a { color: var(--paper); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar span { margin: 0 .4rem; opacity: .5; }

/* ---------- Navigation ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: var(--w-content);
    margin: 0 auto;
    padding: .55rem 1.5rem;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
}
.nav__brand-logo { display: block; flex: none; line-height: 0; }
.nav__brand-logo svg { display: block; width: 46px; height: 46px; }
.nav__brand-text { display: flex; flex-direction: column; }
.nav__brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1;
}
.nav__brand-name em { font-style: normal; color: var(--terra); }
.nav__brand-tag {
    margin-top: 4px;
    font-weight: 500;
    font-size: .6rem;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--ink2);
}

.nav__list {
    display: flex;
    gap: .2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav__menu { display: flex; align-items: center; gap: 1rem; }
.nav__item { position: relative; }

.nav__group {
    appearance: none;
    background: none;
    border: 0;
    padding: .9rem .85rem;
    font: 500 .9rem/1 var(--font-body);
    letter-spacing: .05em;
    color: var(--ink);
    cursor: pointer;
}
.nav__group::after {
    content: '';
    display: inline-block;
    margin-left: .45rem;
    width: .42rem;
    height: .42rem;
    border-right: 1.5px solid var(--terra);
    border-bottom: 1.5px solid var(--terra);
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s;
}

.nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 15rem;
    margin: 0;
    padding: .5rem 0;
    list-style: none;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(43, 35, 16, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s, transform .18s, visibility .18s;
}
.nav__item:hover .nav__sub,
.nav__item:focus-within .nav__sub,
.nav__item.open .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.nav__item:hover .nav__group::after,
.nav__item.open .nav__group::after { transform: translateY(1px) rotate(225deg); }

.nav__sub a {
    display: block;
    padding: .5rem 1.2rem;
    font-size: .92rem;
    text-decoration: none;
}
.nav__sub a:hover, .nav__sub a[aria-current] { background: var(--paper-2); color: var(--terra-deep); }

.nav__cta { padding: .6rem 1.1rem; }
.nav__burger { display: none; }

/* ---------- Héros accueil ---------- */
.hero {
    position: relative;
    min-height: 88svh;
    display: flex;
    align-items: flex-end;
    color: var(--paper);
    overflow: hidden;
    background: var(--night);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.6s ease;
}
.hero__slides img.on { opacity: 1; }
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(185deg, rgba(21, 37, 64, .2) 30%, rgba(24, 18, 5, .72) 88%);
}
.hero__body {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--w-content);
    margin: 0 auto;
    padding: 7rem 1.5rem 5.5rem;
}
.hero__body h1 {
    max-width: 13em;
    margin-bottom: 1.4rem;
    font-size: clamp(2.7rem, 7vw, 5.6rem);
}
.hero__sub {
    max-width: 36rem;
    margin-bottom: 2.2rem;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(245, 238, 221, .92);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__strip {
    position: relative;
    z-index: 2;
    border-top: 1px dashed rgba(245, 238, 221, .35);
}
.hero__strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 2.4rem;
    max-width: var(--w-content);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--sand);
}
.hero__strip-inner span { display: flex; align-items: center; gap: .6rem; }
.hero__strip-inner span::before { content: '✦'; font-size: .6rem; color: var(--gold); }

/* ---------- Sections ---------- */
.sec { padding: 6.5rem 1.5rem; }
.sec--tight { padding: 4.5rem 1.5rem; }
.sec--deep { background: var(--paper-2); }
.sec__inner { max-width: var(--w-content); margin: 0 auto; }
.sec__intro { max-width: var(--w-text); }
.sec__intro--center { margin-inline: auto; text-align: center; }

.lead { font-size: 1.22rem; font-weight: 300; line-height: 1.6; color: var(--ink); }

/* Filet caravane entre sections */
.route {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: var(--w-content);
    margin: 0 auto;
    padding: 0 1.5rem;
    color: var(--terra);
}
.route::before, .route::after {
    content: '';
    flex: 1;
    border-top: 1px dashed var(--line);
}
.route svg { flex: none; }

/* ---------- Édito deux colonnes ---------- */
.duo {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}
.duo--flip { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
.duo--flip .duo__media { order: -1; }

/* Cadre photo façon carnet : double trait décalé */
.frame { position: relative; }
.frame img { display: block; width: 100%; height: auto; }
/* Cadre décalé ancré sur l'image seule (16:9), pas sur la légende. */
.frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    aspect-ratio: 16 / 9;
    transform: translate(14px, 14px);
    border: 1px solid var(--terra);
    pointer-events: none;
    z-index: -1;
}
.frame--indigo::after { border-color: var(--indigo); }

.frame figcaption {
    margin-top: 1.4rem;
    font-size: .85rem;
    font-style: italic;
    color: var(--ink-2);
}

/* ---------- Liste éditoriale des voyages ---------- */
.ways { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.way {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1.2fr) minmax(0, 2fr) auto;
    gap: clamp(1.2rem, 3vw, 3rem);
    align-items: center;
    padding: 2.2rem 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background .25s;
}
.way:hover { background: rgba(217, 198, 156, .25); }
.way__num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--terra);
    paint-order: stroke;
}
.way__media {
    overflow: hidden;
    aspect-ratio: 5 / 3.4;
}
.way__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.way:hover .way__media img { transform: scale(1.05); }
.way h3 { margin-bottom: .4rem; }
.way p { margin: 0; max-width: 36rem; color: var(--ink-2); font-size: .98rem; }
.way__go {
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--terra-deep);
    white-space: nowrap;
}
.way__go::after { content: ' →'; }

/* ---------- Destinations ---------- */
.dests {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-top: 3.2rem;
}
.dest {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4.1;
    overflow: hidden;
    text-decoration: none;
    color: var(--paper);
    background: var(--night);
}
.dest img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .92;
    transition: transform .7s ease, opacity .4s;
}
.dest:hover img { transform: scale(1.06); opacity: 1; }
.dest::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(18, 14, 4, .82));
}
.dest__body {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 1.4rem 1.3rem;
}
.dest__body h3 { margin: 0 0 .25rem; font-size: 1.5rem; }
.dest__body p {
    margin: 0;
    font-size: .85rem;
    letter-spacing: .04em;
    color: var(--sand);
}
.dest:nth-child(2) { transform: translateY(2.2rem); }
.dest:nth-child(4) { transform: translateY(2.2rem); }

/* ---------- Bande témoignage ---------- */
.quoteband {
    position: relative;
    padding: 7.5rem 1.5rem;
    background: var(--night);
    color: var(--paper);
    overflow: hidden;
}
.quoteband__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
}
.quoteband__inner {
    position: relative;
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}
.quoteband__mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: .4;
    color: var(--gold);
    display: block;
    margin-bottom: 1.6rem;
}
.quoteband blockquote {
    margin: 0 0 1.8rem;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    line-height: 1.4;
}
.quoteband figcaption {
    font-size: .85rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--sand);
}
.quoteband__more { margin-top: 2.4rem; }

/* ---------- Carnet pratique (teasers infos) ---------- */
.practical {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    margin-top: 3rem;
}
.practical .card {
    display: block;
    padding: 2.4rem 2.2rem 2.2rem;
    border: 1px solid var(--line);
    background: var(--paper);
    text-decoration: none;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.practical .card:hover {
    border-color: var(--terra);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(43, 35, 16, .1);
}
.card__tag {
    display: inline-block;
    margin-bottom: 1.2rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--paper);
    background: var(--indigo);
    padding: .35rem .7rem;
}
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--ink-2); margin-bottom: 1.4rem; }
.card__go {
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--terra-deep);
}
.card__go::after { content: ' →'; }

/* ---------- CTA final ---------- */
.cta {
    background: var(--indigo);
    color: var(--paper);
    padding: 6.5rem 1.5rem;
    background-image:
        radial-gradient(ellipse 60% 50% at 85% 10%, rgba(199, 154, 61, .14), transparent),
        radial-gradient(ellipse 50% 60% at 10% 90%, rgba(21, 37, 64, .8), transparent);
}
.cta__inner { max-width: 46rem; margin: 0 auto; text-align: center; }
.cta .kicker { justify-content: center; }
.cta .kicker::after { content: ''; width: 2.4rem; height: 1px; background: currentColor; flex: none; }
.cta h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.cta__sub { max-width: 36rem; margin: 0 auto 2.4rem; color: rgba(245, 238, 221, .85); font-weight: 300; }
.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
}
.cta .btn--solid { background: var(--terra); border-color: var(--terra); }
.cta .btn--line { border-color: rgba(245, 238, 221, .5); }
.cta .btn--line:hover { border-color: var(--paper); }
.cta__phone { margin: 1.8rem 0 0; font-size: .92rem; color: var(--sand); }
.cta__phone a { color: var(--paper); }

/* ---------- Pied de page ---------- */
.footer {
    background: var(--night);
    color: rgba(245, 238, 221, .8);
    border-top: 1px dashed rgba(199, 154, 61, .45);
    font-size: .95rem;
}
.footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    max-width: var(--w-content);
    margin: 0 auto;
    padding: 4.5rem 1.5rem 3rem;
}
.footer__wordmark {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--paper);
    margin: 0 0 1rem;
}
.footer__desc { font-size: .9rem; font-weight: 300; max-width: 24rem; }
.footer__contact { line-height: 1.9; }
.footer__contact a { color: var(--paper); text-decoration: none; }
.footer__contact a:hover { text-decoration: underline; }
.footer__social { display: flex; gap: 1.2rem; }
.footer__social a { color: var(--gold); text-decoration: none; }
.footer__social a:hover { text-decoration: underline; }

.footer__head {
    margin: 0 0 1rem;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}
.footer__col ul { margin: 0; padding: 0; list-style: none; }
.footer__col li { margin-bottom: .55rem; }
.footer__col a { text-decoration: none; font-size: .9rem; }
.footer__col a:hover { color: var(--paper); text-decoration: underline; }

.footer__base {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem 2rem;
    max-width: var(--w-content);
    margin: 0 auto;
    padding: 1.4rem 1.5rem 2rem;
    border-top: 1px solid rgba(245, 238, 221, .12);
    font-size: .8rem;
    color: rgba(245, 238, 221, .55);
}
.footer__base p { margin: 0; }
.footer__base a { color: rgba(245, 238, 221, .8); }

/* ---------- Entête de page intérieure ---------- */
.phero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 56svh;
    background: var(--night);
    color: var(--paper);
    overflow: hidden;
}
.phero__media, .phero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.phero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(185deg, rgba(21, 37, 64, .25) 25%, rgba(24, 18, 5, .72) 90%);
}
.phero__body {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--w-content);
    margin: 0 auto;
    padding: 6rem 1.5rem 3.5rem;
}
.phero__body h1 { max-width: 15em; margin-bottom: .6rem; }
.phero__lead {
    max-width: 38rem;
    margin: 0;
    font-size: 1.12rem;
    font-weight: 300;
    color: rgba(245, 238, 221, .9);
}
.phero__crumb {
    margin-bottom: 1.6rem;
    font-size: .8rem;
    letter-spacing: .06em;
    color: var(--sand);
}
.phero__crumb a { color: var(--sand); text-decoration: none; }
.phero__crumb a:hover { text-decoration: underline; }
.phero__crumb span[aria-hidden] { margin: 0 .5rem; opacity: .5; }

/* ---------- Prose (pages éditoriales) ---------- */
.prose { max-width: var(--w-text); }
.prose h2 { margin-top: 3.2rem; }
.prose h3 { margin-top: 2.4rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--terra); }

.prose .note {
    margin: 2rem 0;
    padding: 1.6rem 1.8rem;
    border-left: 3px solid var(--gold);
    background: var(--paper-2);
    font-size: .98rem;
}
.prose .note p:last-child { margin-bottom: 0; }

/* Tableau éditorial (saisons, etc.) */
.table-wrap { overflow-x: auto; margin: 2rem 0; }
table.season {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
}
table.season th, table.season td {
    padding: .8rem 1rem;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
table.season th {
    background: var(--night);
    color: var(--paper);
    font-weight: 500;
    letter-spacing: .04em;
}
table.season tr:nth-child(even) td { background: rgba(217, 198, 156, .18); }

/* ---------- FAQ ---------- */
.faq { max-width: var(--w-text); }
.faq details {
    border-bottom: 1px solid var(--line);
    padding: .2rem 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
    padding: 1.1rem 2.2rem 1.1rem 0;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.05rem;
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: .2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--terra);
    transition: transform .25s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq__a { padding: 0 0 1.3rem; color: var(--ink-2); }

/* ---------- Témoignages (page) ---------- */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}
.review {
    display: flex;
    flex-direction: column;
    padding: 2.2rem 2rem;
    background: var(--paper);
    border: 1px solid var(--line);
}
.review__stars { color: var(--gold); letter-spacing: .25em; margin-bottom: 1.2rem; }
.review blockquote { margin: 0 0 1.6rem; font-style: italic; flex: 1; }
.review figcaption {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-size: .9rem;
}
.review figcaption img { border-radius: 50%; width: 46px; height: 46px; object-fit: cover; }
.review figcaption strong { display: block; font-weight: 500; }
.review figcaption span { color: var(--ink-2); font-size: .82rem; }

/* ---------- Étapes / jalons (itinéraires types) ---------- */
.steps {
    margin: 2.5rem 0;
    padding: 0;
    list-style: none;
    border-left: 1px dashed var(--terra);
}
.steps li {
    position: relative;
    padding: 0 0 1.8rem 1.8rem;
}
.steps li::before {
    content: '✦';
    position: absolute;
    left: -.55rem;
    top: .15rem;
    font-size: .8rem;
    color: var(--terra);
    background: var(--paper);
    padding: 2px 0;
}
.steps strong { font-weight: 500; }
.steps span { display: block; color: var(--ink-2); font-size: .95rem; }

/* ---------- Galerie contact / agence ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.4rem;
    margin-top: 3rem;
}
.contact-card {
    padding: 2.2rem 2rem;
    border: 1px solid var(--line);
    background: var(--paper);
    text-align: center;
}
.contact-card h3 { font-size: 1.3rem; }
.contact-card p { color: var(--ink-2); font-size: .95rem; }
.contact-card .btn { margin-top: .6rem; }

/* ---------- Animations d'apparition ----------
   Scopées sous html.js : sans JavaScript, tout reste visible. */
html.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    html.js .reveal { opacity: 1; transform: none; transition: none; }
    .hero__slides img { transition: none; }
    * { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 64rem) {
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .dests { grid-template-columns: 1fr 1fr; }
    .way { grid-template-columns: 4rem minmax(0, 1fr) auto; }
    .way__media { display: none; }
}

@media (max-width: 50rem) {
    .topbar { justify-content: center; text-align: center; }
    .topbar p:first-child { display: none; }

    .nav__brand-name { font-size: 1.2rem; }
    .nav__brand-tag {
        white-space: nowrap;
        font-size: .55rem;
        letter-spacing: .1em;
    }

    .nav__burger {
        display: inline-flex;
        align-items: center;
        gap: .6rem;
        appearance: none;
        background: none;
        border: 1px solid var(--line);
        padding: .55rem .9rem;
        font: 500 .85rem/1 var(--font-body);
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--ink);
        cursor: pointer;
    }
    .nav__burger-box { display: grid; gap: 4px; }
    .nav__burger-box i { width: 18px; height: 1.5px; background: var(--ink); transition: transform .25s, opacity .25s; }
    .nav__burger[aria-expanded="true"] .nav__burger-box i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .nav__burger[aria-expanded="true"] .nav__burger-box i:nth-child(2) { opacity: 0; }
    .nav__burger[aria-expanded="true"] .nav__burger-box i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: calc(100dvh - 7rem);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 1.6rem;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 24px 40px rgba(43, 35, 16, .18);
    }
    .nav__menu.open { display: flex; }
    .nav__list { flex-direction: column; gap: 0; }
    .nav__group {
        width: 100%;
        text-align: left;
        padding: 1rem 0 .4rem;
        font-size: .75rem;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--terra);
        cursor: default;
    }
    .nav__group::after { display: none; }
    .nav__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 0;
        box-shadow: none;
        background: none;
        padding: 0;
    }
    .nav__sub a { padding: .45rem 0; font-size: 1.02rem; }
    .nav__cta { margin-top: 1.2rem; justify-content: center; }

    .hero__body { padding: 5rem 1.5rem 3.5rem; }
    .duo, .duo--flip { grid-template-columns: 1fr; }
    .duo--flip .duo__media { order: 0; }
    .frame::after { transform: translate(10px, 10px); }
    .sec { padding: 4.5rem 1.5rem; }

    .way { grid-template-columns: 3.2rem minmax(0, 1fr); }
    .way__go { grid-column: 2; }

    .dests { grid-template-columns: 1fr; }
    .dest, .dest:nth-child(2), .dest:nth-child(4) { transform: none; aspect-ratio: 16 / 10; }

    .practical { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
