/* ==========================================================================
   Mboa Évasion — agence de voyage au Cameroun
   Palette bleu & or · police Poppins
   ========================================================================== */

:root {
  --navy: #0e2748;
  --navy-2: #163a66;
  --navy-3: #2b5c94;
  --gold: #9a7414;          /* or foncé : textes et accents sur fond clair */
  --gold-dark: #7a5b0e;
  --gold-bright: #d4af37;   /* or vif : boutons et éléments décoratifs */
  --gold-light: #e8c766;    /* or clair : accents sur fond bleu */
  --sand: #f7f4ee;
  --sand-2: #ece6d8;
  --line: #e0d8c6;
  --ink: #1a2233;
  --muted: #5a6272;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 22px 44px -24px rgba(14, 39, 72, .45);
  --header-h: 76px;
  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
}

/* Base ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
address { font-style: normal; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 200; background: var(--gold-bright); color: var(--navy); padding: .6rem 1rem; border-radius: 8px; font-weight: 700; }
:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 3px; }

/* Boutons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit; font-size: .95rem; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold-bright); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--sand-2); }
.btn--ghost { border-color: rgba(255, 255, 255, .7); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--sm { padding: .6rem 1.1rem; font-size: .88rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 600; color: var(--gold); text-decoration: none;
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover { gap: .65rem; color: var(--gold-dark); }

/* Barre du haut + en-tête ------------------------------------------------ */
.topbar { background: var(--navy); color: rgba(255, 255, 255, .82); font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; }
.topbar p { margin: 0; }
.topbar ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--gold-light); text-decoration: underline; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 238, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px -20px rgba(14, 39, 72, .4); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo__mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo__text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); letter-spacing: -.03em; }
.logo__text em { font-style: normal; color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav ul { display: flex; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.site-nav ul a { position: relative; font-weight: 500; font-size: .95rem; text-decoration: none; padding: .3rem 0; }
.site-nav ul a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold-bright); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.site-nav ul a:hover::after, .site-nav ul a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav ul a[aria-current="page"] { color: var(--navy); font-weight: 600; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer;
}
.nav-toggle__bar { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 1rem;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px -20px rgba(14, 39, 72, .35);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav ul a::after { display: none; }
  .site-nav ul a[aria-current="page"] { color: var(--gold); }
}
@media (max-width: 700px) { .topbar { display: none; } }

/* Hero ------------------------------------------------------------------- */
.hero, .page-hero, .cta-band { position: relative; isolation: isolate; color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8, 24, 46, .4) 0%, rgba(8, 24, 46, .32) 40%, rgba(8, 24, 46, .9) 100%);
}
.hero { min-height: min(90vh, 840px); display: flex; align-items: flex-end; padding: 8rem 0 3.5rem; }
.hero__content { max-width: 780px; }
.hero h1 { color: #fff; }
.hero__lead { font-size: clamp(1.02rem, 1.5vw, 1.15rem); max-width: 640px; color: rgba(255, 255, 255, .92); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-bright); }
.hero .eyebrow, .page-hero .eyebrow, .section--navy .eyebrow, .cta-band .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before, .page-hero .eyebrow::before, .section--navy .eyebrow::before, .cta-band .eyebrow::before { background: var(--gold-light); }

.finder {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: .6rem;
  max-width: 820px; margin-top: 2.8rem; padding: .8rem;
  background: #fff; color: var(--ink);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.finder label {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .35rem .9rem;
  border-right: 1px solid var(--line);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.finder label:nth-of-type(2) { border-right: 0; }
.finder select {
  border: 0; background: transparent; padding: .15rem 0;
  font: inherit; font-size: .98rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink);
  cursor: pointer;
}
.finder .btn { border-radius: 12px; }
@media (max-width: 720px) {
  .finder { grid-template-columns: 1fr; }
  .finder label { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: .6rem; }
  .finder label:nth-of-type(2) { border-bottom: 0; }
}

.page-hero { min-height: 440px; display: flex; align-items: flex-end; padding: 7rem 0 3.5rem; }
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero .hero__lead { margin-bottom: 0; }
.breadcrumb { display: flex; gap: .5rem; list-style: none; margin: 0 0 1.2rem; padding: 0; font-size: .88rem; color: rgba(255, 255, 255, .8); }
.breadcrumb li + li::before { content: "/"; margin-right: .5rem; opacity: .6; }
.breadcrumb a { color: #fff; }

/* Sections --------------------------------------------------------------- */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--white { background: #fff; }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, .88); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head p:last-child { margin-bottom: 0; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.5rem 3rem; max-width: none; }
.section-head--row > div { max-width: 680px; }
.lead { font-size: 1.08rem; color: var(--muted); }
.section--navy .lead { color: rgba(255, 255, 255, .78); }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* Chiffres clés ---------------------------------------------------------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; border-top: 1px solid var(--line); padding-top: 2.2rem; }
.fact__num { font-family: var(--font-display); font-size: clamp(2.1rem, 3.6vw, 2.9rem); font-weight: 700; line-height: 1; letter-spacing: -.03em; color: var(--navy); }
.fact__label { font-weight: 600; color: var(--gold); margin: .7rem 0 .35rem; }
.fact p { color: var(--muted); font-size: .93rem; margin: 0; }
@media (max-width: 960px) { .facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } }

/* Split image / texte ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.split__media { position: relative; }
.split__media > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.split--reverse .split__media { order: 2; }
.media-badge {
  position: absolute; left: -1.2rem; bottom: 2rem;
  max-width: 230px; padding: 1rem 1.3rem;
  background: var(--navy); color: rgba(255, 255, 255, .9);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  border-top: 3px solid var(--gold-bright);
  font-weight: 500; font-size: .92rem; line-height: 1.4;
}
.media-badge strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; line-height: 1.1; color: var(--gold-light); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media > img { aspect-ratio: 4 / 3; }
  .media-badge { left: 1rem; bottom: 1rem; }
}

/* Cartes atouts ---------------------------------------------------------- */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.section--white .feature { background: var(--sand); }
.feature h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.feature p { color: var(--muted); margin: 0; font-size: .95rem; }
.icon {
  width: 52px; height: 52px; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  border-radius: 14px; background: var(--navy); color: var(--gold-light);
}
.icon svg { width: 26px; height: 26px; }
.features-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2rem; }
@media (max-width: 560px) { .features-2 { grid-template-columns: 1fr; } }
.features-2 .feature { padding: 1.4rem; }

/* Cartes destinations ---------------------------------------------------- */
.dest-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-auto-rows: 300px; gap: 1.2rem; }
.dest-grid .dest-card:first-child { grid-row: span 2; }
.dest-card {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: flex-end;
  border-radius: var(--radius); color: #fff; text-decoration: none;
}
.dest-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.dest-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 35%, rgba(8, 24, 46, .92)); }
.dest-card:hover img { transform: scale(1.06); }
.dest-card__body { padding: 1.5rem; }
.dest-card__region { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); }
.dest-card h3 { font-size: 1.35rem; margin: .3rem 0 .35rem; color: #fff; }
.dest-card p { margin: 0; font-size: .92rem; color: rgba(255, 255, 255, .86); }
.dest-grid .dest-card:first-child h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
@media (max-width: 960px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; }
  .dest-grid .dest-card:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-grid .dest-card:first-child { grid-column: auto; }
}

/* Cartes circuits -------------------------------------------------------- */
.circuit-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.circuit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.circuit-card[hidden] { display: none; }
.circuit-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.circuit-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tag {
  position: absolute; top: 1rem; left: 1rem;
  padding: .35rem .8rem; border-radius: 999px;
  background: var(--navy); color: var(--gold-light);
  font-size: .72rem; font-weight: 600; letter-spacing: .03em;
}
.circuit-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.meta { display: flex; flex-wrap: wrap; gap: .35rem 1rem; margin-bottom: .7rem; font-size: .84rem; font-weight: 500; color: var(--muted); }
.meta span { display: inline-flex; align-items: center; gap: .35rem; }
.meta svg { width: 16px; height: 16px; color: var(--gold); }
.circuit-card h3 { margin-bottom: .5rem; }
.circuit-card p { color: var(--muted); font-size: .94rem; }
.circuit-card__note { font-size: .83rem !important; font-style: italic; }
.circuit-card__foot {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line);
}
.price { font-size: .76rem; line-height: 1.3; color: var(--muted); margin: 0; }
.price strong { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); }

.itinerary { margin: 0 0 1.2rem; border-top: 1px solid var(--line); }
.itinerary summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 0; cursor: pointer; list-style: none;
  font-weight: 600; font-size: .95rem; color: var(--navy);
}
.itinerary summary::-webkit-details-marker { display: none; }
.itinerary summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--gold); }
.itinerary[open] summary::after { content: "−"; }
.itinerary ol { display: grid; gap: .6rem; margin: 0; padding: 0; list-style: none; font-size: .9rem; }
.itinerary li { display: grid; grid-template-columns: 3.4rem 1fr; gap: .5rem; }
.itinerary li b { color: var(--gold); font-weight: 600; }

.filters {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; padding: 1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--sand); color: var(--ink);
  font: inherit; font-size: .87rem; font-weight: 500; cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.chip:hover { border-color: var(--navy-3); }
.chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: var(--gold-light); }
.filters label { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .88rem; }
.filters select { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 10px; background: var(--sand); font: inherit; font-size: .92rem; }
.results-count { margin-bottom: 1.5rem; color: var(--muted); font-size: .93rem; }
.empty { padding: 3rem 1.5rem; text-align: center; background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); }

.checklist { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 1.8rem; }
.checklist li::before {
  content: ""; position: absolute; left: .1rem; top: .5em;
  width: .85rem; height: .45rem;
  border-left: 2px solid var(--gold-bright); border-bottom: 2px solid var(--gold-bright);
  transform: rotate(-45deg);
}
.checklist--no li::before {
  width: .8rem; height: 2px; top: .8em; border: 0; background: var(--navy-3); transform: none;
}

/* Témoignages ------------------------------------------------------------ */
.quote {
  display: flex; flex-direction: column; margin: 0; padding: 2rem;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius);
}
.quote__stars { color: var(--gold-bright); letter-spacing: .18em; margin-bottom: 1rem; }
.quote blockquote { margin: 0 0 1.6rem; font-size: 1rem; }
.quote figcaption { display: flex; align-items: center; gap: .85rem; margin-top: auto; font-weight: 600; }
.quote figcaption span { display: block; font-weight: 400; font-size: .83rem; color: rgba(255, 255, 255, .68); }
.avatar {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-bright); color: var(--navy); font-weight: 700;
}

/* Bandeau appel à l'action ----------------------------------------------- */
.cta-band { padding: clamp(4.5rem, 10vw, 7.5rem) 0; text-align: center; }
.cta-band > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(9, 27, 52, .8); }
.cta-band h2 { max-width: 760px; margin-inline: auto; color: #fff; }
.cta-band p { max-width: 600px; margin: 0 auto 2rem; color: rgba(255, 255, 255, .88); font-size: 1.05rem; }
.cta-band .hero__actions { justify-content: center; }

/* Page destinations ------------------------------------------------------ */
.region-nav { position: sticky; top: var(--header-h); z-index: 40; background: var(--navy); }
.region-nav ul { display: flex; gap: .3rem; margin: 0; padding: .55rem 0; list-style: none; overflow-x: auto; scrollbar-width: none; }
.region-nav ul::-webkit-scrollbar { display: none; }
.region-nav a {
  display: block; padding: .45rem .95rem; border-radius: 999px;
  color: rgba(255, 255, 255, .82); font-size: .87rem; font-weight: 500; text-decoration: none; white-space: nowrap;
}
.region-nav a:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.region-nav a.is-active { background: var(--gold-bright); color: var(--navy); font-weight: 600; }

.dest-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 60px);
}
.dest-block:last-child { border-bottom: 0; }
.dest-block:nth-child(even) .dest-block__media { order: 2; }
.dest-block__media { position: relative; padding-bottom: 1.5rem; }
.dest-block__media > img:first-child { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); }
.dest-block__media .inset {
  position: absolute; right: -1rem; bottom: 0;
  width: 40%; aspect-ratio: 1; object-fit: cover;
  border: 6px solid var(--sand); border-radius: 14px; box-shadow: var(--shadow);
}
.dest-block:nth-child(even) .inset { right: auto; left: -1rem; }
.dest-block h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.dest-block p { color: #3a4150; }
.info-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.6rem 0; padding: 1.2rem 0; border-block: 1px solid var(--line); }
.info-list dt { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.info-list dd { margin: .25rem 0 0; font-weight: 500; font-size: .92rem; line-height: 1.45; }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.6rem; padding: 0; list-style: none; }
.pills li { padding: .35rem .85rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .84rem; font-weight: 500; }
.notice { margin: 0 0 1.5rem; padding: 1rem 1.2rem; background: #fbf5e1; border-left: 4px solid var(--gold-bright); border-radius: 8px; font-size: .92rem; }
@media (max-width: 860px) {
  .dest-block { grid-template-columns: 1fr; }
  .dest-block:nth-child(even) .dest-block__media { order: 0; }
  .dest-block__media .inset, .dest-block:nth-child(even) .inset { right: .8rem; left: auto; width: 34%; }
  .info-list { grid-template-columns: 1fr; }
}

/* Page agence ------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { padding: .3rem 0 .3rem 1.2rem; border-left: 3px solid var(--gold-bright); }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 2.6rem); font-weight: 700; line-height: 1.15; color: var(--gold-light); }
.stat span { font-size: .93rem; color: rgba(255, 255, 255, .78); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.timeline { position: relative; display: grid; gap: 1.5rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 7px; top: .5rem; bottom: .5rem; width: 2px; background: var(--line); }
.timeline li { position: relative; padding-left: 2.3rem; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: .3rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-bright); border: 3px solid var(--sand); box-shadow: 0 0 0 1px var(--line);
}
.timeline b { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); }

.team-card { padding: 2rem 1.5rem; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.team-card .avatar { width: 84px; height: 84px; margin: 0 auto 1rem; font-family: var(--font-display); font-size: 1.5rem; }
.team-card:nth-child(2) .avatar { background: var(--navy); color: var(--gold-light); }
.team-card:nth-child(3) .avatar { background: var(--navy-3); color: #fff; }
.team-card:nth-child(4) .avatar { background: var(--gold-light); color: var(--navy); }
.team-card h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.team-card .role { font-size: .83rem; font-weight: 600; color: var(--gold); margin-bottom: .8rem; }
.team-card p:last-child { color: var(--muted); font-size: .92rem; margin: 0; }

/* Page contact ----------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { padding: clamp(1.5rem, 4vw, 2.5rem); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); scroll-margin-top: calc(var(--header-h) + 20px); }
.form-card h2 { font-size: clamp(1.6rem, 2.8vw, 2rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 600; }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem;
  border: 1px solid #d3cbb8; border-radius: 10px; background: var(--sand); color: var(--ink);
  font: inherit; font-size: .95rem;
  transition: border-color .2s ease, background-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-3); background: #fff; box-shadow: 0 0 0 3px rgba(43, 92, 148, .2); }
.field textarea { min-height: 140px; resize: vertical; }
.field__error { font-size: .83rem; color: #a3261a; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #a3261a; }
.checkbox { display: flex; align-items: flex-start; gap: .65rem; font-size: .9rem; }
.checkbox input { width: 18px; height: 18px; margin-top: .25rem; accent-color: var(--navy); flex-shrink: 0; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.form-actions small { color: var(--muted); }
.form-status { margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: 10px; background: #e4ecf6; border-left: 4px solid var(--gold-bright); color: var(--navy); font-weight: 500; }

.info-card { padding: 2rem; background: var(--navy); color: rgba(255, 255, 255, .88); border-radius: var(--radius); }
.info-card h2 { font-size: 1.5rem; color: #fff; }
.info-card ul { display: grid; gap: 1.3rem; margin: 0; padding: 0; list-style: none; }
.info-card li { display: grid; grid-template-columns: 44px 1fr; gap: .9rem; align-items: start; }
.info-card .icon { width: 44px; height: 44px; margin: 0; background: rgba(232, 199, 102, .14); color: var(--gold-light); }
.info-card .icon svg { width: 22px; height: 22px; }
.info-card small { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); }
.info-card a { color: #fff; }
.map { margin-top: 1.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--sand-2); }
.map iframe { display: block; width: 100%; height: 280px; border: 0; }

.faq { max-width: 860px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--gold); }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); padding-bottom: 1.2rem; margin: 0; }

/* Pied de page ----------------------------------------------------------- */
.gold-stripe { height: 4px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright) 30%, var(--gold-light) 50%, var(--gold-bright) 70%, var(--gold-dark)); }
.site-footer { background: #0a1d36; color: rgba(255, 255, 255, .75); font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.2fr; gap: 2.5rem; padding-top: 4.5rem; }
.site-footer .logo__text { color: #fff; }
.site-footer .logo__text em { color: var(--gold-light); }
.footer__brand p { margin-top: 1.2rem; max-width: 330px; }
.site-footer h3 { font-family: var(--font-body); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.1rem; }
.site-footer ul { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem;
  margin-top: 3.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .83rem;
}
.footer__bottom p { margin: 0; }
.signature { letter-spacing: .02em; }
.signature strong { color: var(--gold-light); font-weight: 600; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* Animations ------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
