/* =============================================================
   pages.css — Private Safari Guides
   V2 — Cereal Magazine / Singita-level editorial impact
   Classes BEM utilisées par les templates Twig (pages/*.twig).
   Charge tokens.css + base.css + layout.css + components.css avant.
   Mobile-first. Aucun gradient. Aucun hex hors palette tokens.
   ============================================================= */

/* =============================================================
   1. GENERIC EDITORIAL HELPERS
   ============================================================= */

/* Long-form prose container (manifeste, body, recit, etc.) */
.editorial-prose {
  max-width: var(--max-measure);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--ink);
}

.editorial-prose > * + * {
  margin-top: var(--rhythm-para);
}

.editorial-prose p {
  margin-bottom: var(--rhythm-para);
  max-width: var(--max-measure);
  line-height: 1.75;
}

.editorial-prose p:last-child {
  margin-bottom: 0;
}

.editorial-prose h2,
.editorial-prose h3 {
  margin-top: var(--rhythm-block);
  margin-bottom: var(--space-3);
}

.editorial-prose ul,
.editorial-prose ol {
  margin-bottom: var(--rhythm-para);
}

.editorial-prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-40);
  text-underline-offset: 4px;
  transition: text-decoration-color var(--t-base) var(--ease-out);
}

.editorial-prose a:hover,
.editorial-prose a:focus-visible {
  text-decoration-color: var(--ink);
}

/* Lettrine (drop cap) — only on first paragraph if .has-lettrine */
.editorial-prose.has-lettrine > p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: 5.4em;
  line-height: 0.82;
  float: left;
  padding: 6px 16px 0 0;
  color: var(--ink);
  font-feature-settings: "lnum";
}

/* Mono caps utility (small uppercase mono labels) — pushed slightly larger */
.mono-caps {
  font-family: var(--ff-mono);
  font-size: 0.8125rem;          /* 13px instead of 12 */
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  font-weight: var(--fw-regular);
}

/* Section number — same as mono-caps but block + ornamental rule above */
.section-number {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.8125rem;          /* 13px */
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ochre);
  margin-bottom: var(--space-4);
  padding-top: 14px;
  position: relative;
}

.section-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--ochre);
}

/* On dark cartouche, the rule and label stay paper */
.cartouche .section-number,
.section-ink .section-number {
  color: var(--paper);
}
.cartouche .section-number::before,
.section-ink .section-number::before {
  background: var(--paper);
}

/* Serif italic helper (display family italic) */
.serif-italic {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--ink);
}

/* Visually hidden / sr-only */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot — invisible but not display:none */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Quiet link (ink with subtle underline) */
.link--quiet {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-40);
  text-underline-offset: 4px;
}

.link--quiet:hover,
.link--quiet:focus-visible {
  text-decoration-color: var(--ink);
  color: var(--ink);
}

/* Ochre link (accent color) */
.link--ochre {
  color: var(--ochre);
  text-decoration: underline;
  text-decoration-color: var(--ochre);
  text-underline-offset: 4px;
}

.link--ochre:hover,
.link--ochre:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

/* Button variants — pushed bigger, more presence */
.btn--outline,
.btn.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 18px 40px;
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-none);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  min-height: 56px;
  transition: background var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
  white-space: nowrap;
}

.btn--outline:hover,
.btn--outline:focus-visible,
.btn.btn--outline:hover,
.btn.btn--outline:focus-visible {
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.btn--solid,
.btn.btn--solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 22px 48px;
  font-family: var(--ff-mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius-none);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  min-height: 64px;
  transition: background var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
  white-space: nowrap;
}

.btn--solid:hover,
.btn--solid:focus-visible,
.btn.btn--solid:hover,
.btn.btn--solid:focus-visible {
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}

/* Photo placeholders (when no image yet provided) */
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--paper-deep);
  color: var(--ink-60);
  font-family: var(--ff-mono);
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  padding: clamp(48px, 8vw, 72px);
  min-height: 320px;
  width: 100%;
}

.photo-placeholder--full {
  height: 90vh;
  min-height: 600px;
}

.photo-placeholder--wide {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.photo-placeholder--portrait {
  aspect-ratio: 3 / 4;
  min-height: 0;
}

/* =============================================================
   2. PAGE HEADER — converted to dramatic editorial hero on every internal page
   ============================================================= */

.page-header {
  position: relative;
  padding: clamp(140px, 22vh, 240px) var(--pad-x) clamp(80px, 14vh, 160px);
  max-width: none;
  margin: 0;
  background: var(--paper);
  overflow: hidden;
}

/* Massive editorial decorative roman numeral filigree behind every page hero */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(transparent, transparent);   /* placeholder, real fold below */
}

.page-header > * {
  position: relative;
  z-index: 2;
  max-width: var(--max-page);
  margin-inline: auto;
}

.page-header__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(3.25rem, 9.5vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-5);
  text-wrap: balance;
  max-width: 18ch;
}

.page-header__subtitle,
.page-header__chapeau {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 50ch;
  margin: 0;
}

.page-header__chapeau {
  margin-top: var(--space-5);
}

/* Page-specific filigree numerals on each page hero */
.page-patrick .page-header,
.page-destinations .page-header,
.page-engagements .page-header,
.page-formules .page-header,
.page-contact .page-header {
  position: relative;
}

.page-patrick .page-header::after,
.page-destinations .page-header::after,
.page-engagements .page-header::after,
.page-formules .page-header::after,
.page-contact .page-header::after {
  position: absolute;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(12rem, 28vw, 26rem);
  line-height: 0.8;
  color: var(--ink);
  opacity: 0.06;
  top: 50%;
  right: clamp(-40px, -3vw, -10px);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.page-patrick      .page-header::after { content: "II"; }
.page-destinations .page-header::after { content: "III"; }
.page-engagements  .page-header::after { content: "IV"; }
.page-formules     .page-header::after { content: "V"; }
.page-contact      .page-header::after { content: "VI"; }

@media (max-width: 720px) {
  .page-patrick .page-header::after,
  .page-destinations .page-header::after,
  .page-engagements .page-header::after,
  .page-formules .page-header::after,
  .page-contact .page-header::after {
    font-size: clamp(8rem, 38vw, 14rem);
    right: -20px;
    opacity: 0.05;
  }
}

/* =============================================================
   3. HOME PAGE — .cartouche, .manifeste, .full-photo, .index-pays, .comment, .citation
   ============================================================= */

/* I. Cartouche d'ouverture (full-screen hero, dramatic) */
.cartouche {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.cartouche__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cartouche__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Subtle ken-burns drift, paused on reduced motion */
  animation: cartouche-drift 24s var(--ease-inout) infinite alternate;
}

@keyframes cartouche-drift {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

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

.cartouche__media .photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--ink);
  color: var(--paper-60);
}

/* Dark veil — flat opacity (no gradient) for legibility */
.cartouche__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26, 24, 20, 0.32);
  pointer-events: none;
}

.cartouche__edition {
  position: absolute;
  top: clamp(24px, 6vh, 56px);
  left: 0;
  z-index: 2;
  padding: 0 var(--pad-x);
  color: var(--paper);
}

.cartouche__edition .mono-caps {
  color: var(--paper);
  opacity: 0.85;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
}

.cartouche__title-zone {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14%;
  z-index: 2;
  padding: 0 var(--pad-x);
  color: var(--paper);
  max-width: var(--max-page);
  margin: 0 auto;
}

.cartouche__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0;
  text-wrap: balance;
  max-width: 16ch;
}

.cartouche__line {
  display: block;
}

.cartouche__line + .cartouche__line {
  font-style: italic;
  color: var(--paper);
  opacity: 0.94;
}

.cartouche__subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.6vw, 1.5rem);
  color: var(--paper);
  opacity: 0.86;
  margin-top: var(--space-5);
  max-width: 56ch;
  letter-spacing: 0.005em;
}

.cartouche__caption {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-4) var(--pad-x);
  text-align: right;
}

.cartouche__caption .mono-caps {
  color: var(--paper);
  opacity: 0.7;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
}

@media (max-width: 720px) {
  .cartouche {
    min-height: 100svh;
  }
  .cartouche__title-zone {
    bottom: 12%;
  }
  .cartouche__caption {
    position: static;
    padding: var(--space-3) var(--pad-x);
  }
}

/* II. Manifeste — quiet but generous */
.manifeste {
  padding: clamp(96px, 16vh, 192px) var(--pad-x);
  background: var(--paper);
}

.manifeste__inner {
  max-width: 820px;
  margin: 0 auto;
}

.manifeste__body {
  max-width: 62ch;
  font-family: var(--ff-body);
  font-size: clamp(1.125rem, 0.4vw + 1.05rem, 1.375rem);
  line-height: 1.75;
  color: var(--ink);
}

.manifeste__body p {
  margin-bottom: var(--rhythm-para);
}

/* III. Full-photo (bleed photograph — truly full bleed, edge to edge) */
.full-photo {
  padding: 0;
  background: var(--paper);
}

.full-photo__figure {
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

.full-photo__image {
  width: 100%;
  height: clamp(420px, 78vh, 880px);
  object-fit: cover;
  display: block;
}

.full-photo__caption {
  display: block;
  padding: var(--space-4) var(--pad-x) 0;
  color: var(--ink-60);
  text-align: left;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  position: relative;
}

.full-photo__caption::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--ochre);
  vertical-align: middle;
  margin-right: var(--space-3);
}

/* IV. Index des pays */
.index-pays {
  padding: clamp(96px, 14vh, 192px) var(--pad-x);
  text-align: center;
  background: var(--paper-deep);
}

.index-pays__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.index-pays__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-7);
}

.index-pays__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: var(--space-3);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  max-width: 100%;
}

.index-pays__list > li {
  margin: 0;
  padding: 0;
}

.index-pays__list > li::before {
  content: none;
}

.index-pays__list a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-40);
  text-underline-offset: 8px;
  transition: text-decoration-color var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
}

.index-pays__list a:hover,
.index-pays__list a:focus-visible {
  color: var(--ochre);
  text-decoration-color: var(--ochre);
}

.index-pays__sep {
  color: var(--ink-40);
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: 0.875em;
}

.index-pays__note {
  margin-top: var(--space-7);
}

/* V. Comment je voyage avec vous */
.comment {
  padding: clamp(96px, 14vh, 192px) var(--pad-x);
  background: var(--paper);
}

.comment__inner {
  max-width: 760px;
  margin: 0 auto;
}

.comment__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-6);
  max-width: 18ch;
}

/* VI. Citation — quoted with editorial guillemets */
.citation {
  padding: clamp(120px, 18vh, 240px) var(--pad-x);
  background: var(--paper-deep);
  text-align: center;
  position: relative;
}

.citation__block {
  max-width: 880px;
  margin: 0 auto;
  border: 0;
  padding: 0;
  font-family: var(--ff-display);
  font-style: italic;
  position: relative;
}

.citation__block::before,
.citation__block::after {
  content: none;
}

.citation__text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.625rem, 3.6vw, 3rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 var(--space-6);
  max-width: none;
  text-wrap: balance;
}

.citation__signature {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-60);
  font-style: normal;
  padding-top: var(--space-4);
  position: relative;
}

.citation__signature::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--ochre);
  margin: 0 auto var(--space-4);
}

/* =============================================================
   4. PATRICK PAGE — split-screen hero, big portrait, recit narrow column
   ============================================================= */

.page-patrick > * + * {
  margin-top: 0;
}

/* Patrick page: turn header + portrait into a single split-screen editorial hero on desktop */
.page-patrick .page-header {
  padding: clamp(96px, 14vh, 160px) var(--pad-x) clamp(48px, 8vh, 96px);
}

.portrait {
  margin: 0 0 0;
  padding: 0;
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background: var(--paper-deep);
}

.portrait__image {
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
  height: clamp(60vh, 78vh, 880px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 30%;
}

.portrait__caption {
  display: block;
  margin-top: 0;
  padding: var(--space-4) var(--pad-x);
  background: var(--paper-deep);
  text-align: left;
  color: var(--ink-60);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait__caption::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--ochre);
  vertical-align: middle;
  margin-right: var(--space-3);
}

/* Récit — generous narrow column, comfortable rhythm */
.recit {
  max-width: calc(62ch + 2 * var(--pad-x));
  margin: 0 auto;
  padding: clamp(96px, 14vh, 192px) var(--pad-x) clamp(64px, 10vh, 128px);
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.3125rem);
  line-height: 1.78;
}

.recit p {
  font-size: inherit;
  line-height: inherit;
  max-width: none;
}

/* Encadre — terrain / asso : larger, magazine pull-out */
.encadre {
  background: var(--paper-deep);
  padding: clamp(48px, 7vw, 96px);
  margin: clamp(64px, 10vh, 128px) auto;
  max-width: var(--max-content);
  border-left: 4px solid var(--ink);
  position: relative;
}

.encadre--terrain {
  border-left-color: var(--ochre);
}

.encadre--asso {
  border-left-color: var(--moss);
}

.encadre .section-number {
  margin-bottom: var(--space-4);
  padding-bottom: 0;
}

.encadre__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 var(--space-5);
  letter-spacing: -0.01em;
}

.encadre__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
}

@media (min-width: 720px) {
  .encadre__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
  }
}

.encadre__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  max-width: none;
  list-style: none;
}

.encadre__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
  padding: var(--space-3) 0;
  border-bottom: var(--bw) solid var(--ink-10);
}

.encadre__row:last-child {
  border-bottom: 0;
}

.encadre__row dt {
  color: var(--ink-60);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.encadre__row dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.25rem);
}

@media (min-width: 720px) {
  .encadre__row {
    grid-template-columns: minmax(180px, max-content) 1fr;
    gap: var(--space-5);
    align-items: baseline;
  }
}

.encadre__nom {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 1.5vw, 1.625rem);
  margin: 0 0 var(--space-2);
  color: var(--ink);
  max-width: none;
  letter-spacing: -0.01em;
}

.encadre__mission {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--ink-90);
  margin: 0 0 var(--space-3);
  max-width: 60ch;
  line-height: 1.7;
}

.encadre__lien {
  margin: 0;
}

.encadre__logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--paper);
  padding: var(--space-3);
}

/* Soft-link transition */
.soft-link {
  padding: clamp(80px, 12vh, 160px) var(--pad-x);
  max-width: 70ch;
  margin: 0 auto;
}

.soft-link p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  line-height: 1.45;
  color: var(--ink);
  text-align: center;
  margin: 0;
  max-width: none;
  text-wrap: balance;
}

/* =============================================================
   5. DESTINATIONS PAGE — magazine spreads, full-bleed photos
   ============================================================= */

.africa-map {
  text-align: center;
  padding: clamp(32px, 5vw, 64px) var(--pad-x);
  max-width: 1200px;
  margin: 0 auto;
  background: var(--paper);
}

.africa-map__image {
  max-width: min(260px, 45%);
  height: auto;
  margin: 0 auto;
  opacity: 0.85;
  display: block;
}

/* Page-header en 2 colonnes (texte | carte) — utilisé sur /destinations */
.page-header--with-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.page-header--with-map .page-header__text {
  max-width: 60ch;
}

.page-header--with-map .page-header__map {
  margin: 0;
  max-width: min(280px, 100%);
  justify-self: center;
}

.page-header--with-map .page-header__map-image {
  width: 100%;
  height: auto;
  opacity: 0.85;
  display: block;
}

@media (min-width: 900px) {
  .page-header--with-map {
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 1fr);
  }
  .page-header--with-map .page-header__map {
    max-width: 320px;
    justify-self: end;
  }
}

.destinations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: none;
}

.destinations-list > li::before {
  content: none;
}

.destinations-list > li {
  padding: 0;
  margin: 0;
}

/* Each destination = a full magazine spread, alternating sides */
.destination {
  padding: 0;
  border-top: 0;
  position: relative;
  background: var(--paper);
}

.destination + .destination {
  margin-top: clamp(64px, 10vh, 128px);
}

.destination:first-child {
  margin-top: clamp(48px, 8vh, 96px);
}

.destination:nth-child(even) {
  background: var(--paper-deep);
}

.destination__inner {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding: clamp(64px, 10vh, 128px) var(--pad-x);
  position: relative;
}

.destination__header {
  margin-bottom: var(--space-4);
  grid-column: 1 / -1;
  position: relative;
}

/* Massive roman numeral filigree behind the country name */
.destination__header::before {
  content: attr(data-num);
  /* Will not render unless we add data-num. We use a different trick below */
}

.destination__country {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-3);
  text-wrap: balance;
}

.destination__subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--ink-70);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.4;
  margin: 0 0 var(--space-5);
  max-width: 50ch;
}

.destination__body {
  max-width: 58ch;
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
  line-height: 1.78;
}

/* Drop cap on first paragraph of every destination body */
.destination__body > p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: 4em;
  line-height: 0.85;
  float: left;
  padding: 6px 14px 0 0;
  color: var(--ochre);
  font-feature-settings: "lnum";
}

/* Full-bleed photo, edge of viewport on whichever side. Mobile = stack. */
.destination__figure {
  margin: 0;
  position: relative;
}

.destination__figure--full,
.destination__figure--portrait {
  aspect-ratio: auto;
}

.destination__image {
  width: 100%;
  height: clamp(360px, 60vh, 720px);
  object-fit: cover;
  display: block;
}

.destination__figure .photo-placeholder {
  width: 100%;
  height: clamp(360px, 60vh, 720px);
  min-height: 0;
}

.destination__caption {
  display: block;
  padding-top: var(--space-3);
  color: var(--ink-60);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.destination__caption::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--ochre);
  vertical-align: middle;
  margin-right: var(--space-2);
}

/* Meta : saison/durée — mono caps with bullet separator inline */
.destination__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) 0;
  padding-top: var(--space-5);
  margin-top: var(--space-5);
  border-top: var(--bw) solid var(--ink-20);
  color: var(--ink-60);
  max-width: none;
  align-items: baseline;
}

.destination__meta-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: baseline;
  margin: 0;
  padding-right: var(--space-5);
  position: relative;
}

.destination__meta-row + .destination__meta-row::before {
  content: "·";
  position: absolute;
  left: -10px;
  top: 0;
  color: var(--ink-40);
  font-family: var(--ff-mono);
}

.destination__meta-row dt {
  color: var(--ink-60);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.destination__meta-row dd {
  margin: 0;
  color: var(--ink-90);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.destination__cta {
  display: block;
  margin: var(--space-6) 0 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  max-width: none;
}

.destination__cta a {
  color: var(--ochre);
  text-decoration: underline;
  text-decoration-color: var(--ochre);
  text-underline-offset: 8px;
}

.destination__cta a:hover,
.destination__cta a:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

/* Desktop : real two-column magazine spread, full-bleed photo on one side, text column 5 cols on the other */
@media (min-width: 1024px) {
  .destination__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
    padding-block: clamp(96px, 14vh, 192px);
  }
  .destination__header {
    grid-column: 1;
    grid-row: 1;
  }
  .destination__body {
    grid-column: 1;
    grid-row: 2;
  }
  .destination__meta {
    grid-column: 1;
    grid-row: 3;
  }
  .destination__cta {
    grid-column: 1;
    grid-row: 4;
  }
  .destination__figure {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: stretch;
    height: 100%;
    /* Push edge-of-viewport on the right */
    margin-right: calc(-1 * var(--pad-x));
  }
  .destination__image,
  .destination__figure .photo-placeholder {
    height: 100%;
    min-height: clamp(560px, 70vh, 820px);
  }

  /* Alternate side */
  .destination--alt .destination__header,
  .destination--alt .destination__body,
  .destination--alt .destination__meta,
  .destination--alt .destination__cta {
    grid-column: 2;
  }
  .destination--alt .destination__figure {
    grid-column: 1;
    grid-row: 1 / span 4;
    margin-right: 0;
    margin-left: calc(-1 * var(--pad-x));
  }

  /* Big italic country letterforms aligned tightly */
  .destination__country {
    font-size: clamp(4rem, 7vw, 8rem);
  }
}

.destinations-end {
  text-align: center;
  padding: clamp(120px, 16vh, 200px) var(--pad-x);
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  margin-top: clamp(64px, 10vh, 128px);
}

.destinations-end p {
  max-width: 56ch;
  margin: 0 auto;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  line-height: 1.45;
  color: var(--paper);
  text-wrap: balance;
}

.destinations-end a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--ochre);
  text-underline-offset: 6px;
}

.destinations-end a:hover,
.destinations-end a:focus-visible {
  color: var(--ochre);
}

/* =============================================================
   6. ENGAGEMENTS PAGE — strong accented blocks, magazine breath
   ============================================================= */

.bloc {
  padding: clamp(96px, 14vh, 192px) var(--pad-x);
  max-width: calc(960px + 2 * var(--pad-x));
  margin: 0 auto;
  position: relative;
}

.bloc h2 {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: var(--space-3) 0 var(--space-6);
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}

.bloc--vivant {
  border-left: 4px solid var(--moss);
  padding-left: clamp(40px, 6vw, 80px);
}

.bloc--vivant .section-number {
  color: var(--moss);
}

.bloc--vivant .section-number::before {
  background: var(--moss);
}

.bloc--transparence {
  border-left: 4px solid var(--ochre);
  padding-left: clamp(40px, 6vw, 80px);
  background: var(--paper-deep);
}

.bloc--transparence .section-number {
  color: var(--ochre);
}
.bloc--transparence .section-number::before {
  background: var(--ochre);
}

.bloc--cadre {
  border-left: 4px solid var(--ink);
  padding-left: clamp(40px, 6vw, 80px);
}

.bloc--cadre .section-number {
  color: var(--ink-90);
}
.bloc--cadre .section-number::before {
  background: var(--ink);
}

.bloc--limite {
  border-left: 4px solid var(--ink-40);
  padding-left: clamp(40px, 6vw, 80px);
  font-size: var(--fs-body);
  color: var(--ink-90);
  background: var(--paper-deep);
}

.bloc--limite .section-number {
  color: var(--ink-60);
}
.bloc--limite .section-number::before {
  background: var(--ink-40);
}

.bloc--limite p {
  font-size: var(--fs-body);
  line-height: 1.78;
}

.bloc__cta {
  margin-top: var(--space-6);
  max-width: none;
}

.bloc.editorial-prose p,
.bloc .editorial-prose p {
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
  line-height: 1.78;
  max-width: 60ch;
}

/* Transparence list — tighter, elegant divider */
.transparence__list {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 56ch;
  counter-reset: trsp;
}

.transparence__list > li {
  padding: var(--space-4) 0 var(--space-4) var(--space-7);
  border-bottom: var(--bw) solid var(--ink-20);
  margin: 0;
  position: relative;
  counter-increment: trsp;
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.125rem);
  line-height: 1.6;
}

.transparence__list > li::before {
  content: counter(trsp, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--space-4);
  color: var(--ochre);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.transparence__list > li:last-child {
  border-bottom: 0;
}

.transparence__lead {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--ink);
  font-size: 1.18em;
  display: inline;
  letter-spacing: -0.005em;
}

/* Disclaimer */
.disclaimer {
  font-size: 13px;
  color: var(--ink-70);
  line-height: 1.65;
  max-width: 65ch;
  margin: clamp(48px, 8vw, 96px) auto;
  padding: var(--space-4) var(--pad-x);
  border-left: var(--bw-thick) solid var(--ink-40);
  background: transparent;
  font-family: var(--ff-body);
  font-style: italic;
}

/* =============================================================
   7. FORMULES PAGE — full-bleed magazine modules, big CTA
   ============================================================= */

.formules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: none;
}

/* Each formule = a dedicated module. Photo full-bleed half-screen, text other half. */
.formule {
  padding: 0;
  border-top: 0;
  position: relative;
  background: var(--paper);
}

.formule + .formule {
  border-top: var(--bw) solid var(--ink-10);
}

.formule:nth-child(even) {
  background: var(--paper-deep);
}

/* Article wrapper = 2-col grid (media | text) at desktop */
.formule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.formule__body {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(48px, 8vh, 96px) var(--pad-x);
  gap: 0;
}

.formule__media {
  margin: 0;
  position: relative;
}

.formule__image {
  width: 100%;
  height: clamp(360px, 60vh, 760px);
  object-fit: cover;
  aspect-ratio: auto;
  display: block;
}

.formule__media .photo-placeholder {
  aspect-ratio: auto;
  height: clamp(360px, 60vh, 760px);
  min-height: 0;
}

/* Inclus + Non-inclus side-by-side at wider widths */
.formule__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin: var(--space-5) 0;
}

@media (min-width: 640px) {
  .formule__lists {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .formule__lists .formule__inclus,
  .formule__lists .formule__non-inclus {
    margin: 0;
    padding-top: var(--space-3);
    border-top: var(--bw) solid var(--ink-10);
  }
}

.formule__titre {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-5);
  text-wrap: balance;
  max-width: 16ch;
}

.formule__description {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  line-height: 1.5;
  color: var(--ink-90);
  margin: 0 0 var(--space-6);
  max-width: 50ch;
}

.formule__prix {
  font-family: var(--ff-display);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  color: var(--ink);
  margin: var(--space-4) 0 var(--space-5);
  max-width: none;
  letter-spacing: -0.005em;
  font-style: normal;
  padding-top: var(--space-3);
  border-top: var(--bw) solid var(--ink-20);
}

.formule__prix-note {
  font-size: 0.85em;
  color: var(--ink-60);
  font-style: italic;
}

.formule__inclus,
.formule__non-inclus {
  margin: var(--space-5) 0;
  padding-top: var(--space-4);
  border-top: var(--bw) solid var(--ink-10);
}

.formule__inclus-label {
  display: block;
  padding-bottom: var(--space-3);
  margin: 0;
  color: var(--ochre);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.formule__non-inclus .formule__inclus-label {
  color: var(--ink-60);
}

.formule__inclus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-90);
  max-width: 60ch;
  counter-reset: incl;
}

.formule__inclus-list > li {
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  margin: 0;
  position: relative;
  counter-increment: incl;
  border-bottom: var(--bw) solid var(--ink-10);
}

.formule__inclus-list > li:last-child {
  border-bottom: 0;
}

.formule__inclus-list > li::before {
  content: counter(incl, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--space-2);
  color: var(--ochre);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
}

.formule__non-inclus .formule__inclus-list > li::before {
  color: var(--ink-40);
}

.formule__cta {
  margin-top: var(--space-6);
  max-width: none;
}

.formule__cta .btn {
  padding: 22px 56px;
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  min-height: 64px;
}

@media (min-width: 1024px) {
  .formule {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: clamp(560px, 78vh, 820px);
  }
  .formule__media {
    height: 100%;
  }
  .formule__media .formule__image,
  .formule__media .photo-placeholder {
    height: 100%;
    min-height: clamp(560px, 78vh, 820px);
  }
  .formule__body {
    padding: clamp(72px, 10vh, 128px) clamp(48px, 6vw, 96px);
    max-width: none;
    justify-content: center;
  }
  .formule--alt .formule__media {
    order: 2;
  }
  .formule--alt .formule__body {
    order: 1;
  }
}

/* Sur-mesure passerelle */
.sur-mesure {
  padding: clamp(96px, 14vh, 192px) var(--pad-x);
  max-width: 80ch;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
}

.sur-mesure p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  max-width: none;
  text-wrap: balance;
}

/* Acompte block */
.acompte {
  background: var(--paper-deep);
  padding: clamp(64px, 10vw, 128px);
  max-width: calc(960px + 2 * var(--pad-x));
  margin: clamp(64px, 10vh, 128px) auto;
  border-left: 4px solid var(--ochre);
  position: relative;
}

.acompte__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-5);
  max-width: 22ch;
}

.acompte .section-number {
  color: var(--ochre);
}
.acompte .section-number::before {
  background: var(--ochre);
}

.acompte__list {
  list-style: none;
  padding: 0;
  max-width: 64ch;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: acmp;
}

.acompte__list > li {
  padding: var(--space-3) 0 var(--space-3) var(--space-7);
  margin: 0;
  color: var(--ink);
  position: relative;
  counter-increment: acmp;
  border-bottom: var(--bw) solid var(--ink-20);
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.125rem);
  line-height: 1.6;
}

.acompte__list > li:last-child {
  border-bottom: 0;
}

.acompte__list > li::before {
  content: counter(acmp, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--space-3);
  color: var(--ochre);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.acompte__list > li::marker { content: none; }

/* Reserver inline form section */
.reserver {
  padding: clamp(96px, 14vh, 192px) var(--pad-x);
  max-width: calc(720px + 2 * var(--pad-x));
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
}

.reserver .section-number {
  color: var(--paper);
}
.reserver .section-number::before {
  background: var(--ochre);
}

.reserver__header {
  margin-bottom: var(--space-7);
}

.reserver__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  color: var(--paper);
  margin: 0 0 var(--space-5);
  letter-spacing: -0.015em;
}

.reserver__intro {
  margin: 0;
  color: var(--paper);
  opacity: 0.85;
  max-width: 56ch;
}

.reserver__intro,
.reserver__intro p {
  color: var(--paper);
  opacity: 0.9;
}

.reserver .form__field > label,
.reserver .form__field > legend {
  color: var(--paper);
  opacity: 0.85;
}

.reserver .form__field input,
.reserver .form__field textarea,
.reserver .form__field select {
  background: transparent;
  color: var(--paper);
  border: 0;
  border-bottom: var(--bw) solid var(--paper-60);
  padding: 14px 0;
  font-size: 1.125rem;
  font-family: var(--ff-body);
}

.reserver .form__field input:focus,
.reserver .form__field textarea:focus {
  outline: 0;
  border-bottom-color: var(--ochre);
}

.reserver .form__hint {
  color: var(--paper-60);
}

.reserver .form__rgpd {
  color: var(--paper-60);
}

.reserver .form__rgpd a {
  color: var(--paper);
  text-decoration-color: var(--paper-60);
}

.reserver .btn--solid {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--paper);
}

.reserver .btn--solid:hover,
.reserver .btn--solid:focus-visible {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* =============================================================
   8. CONTACT PAGE — split-screen form + coords editorial
   ============================================================= */

.page-contact .page-header {
  padding-bottom: clamp(48px, 8vh, 96px);
}

/* Form — large editorial fields (underline only, big type) */
.form--editorial {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) var(--pad-x) clamp(80px, 12vh, 160px);
}

.form__row {
  margin-bottom: var(--space-5);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.form__row--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .form__row--2 {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  border: 0;
  padding: 0;
  min-width: 0;
}

.form__field > label,
.form__field > legend {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-90);
  padding: 0;
  margin-bottom: var(--space-2);
}

.form--editorial input[type="text"],
.form--editorial input[type="email"],
.form--editorial input[type="tel"],
.form--editorial input[type="number"],
.form--editorial textarea,
.form--editorial select {
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: var(--bw) solid var(--ink-40);
  border-radius: 0;
  padding: 14px 0;
  font-size: 1.1875rem;
  font-family: var(--ff-body);
  transition: border-color var(--t-base) var(--ease-out);
  min-width: 0;
  width: 100%;
}

.form--editorial input:focus,
.form--editorial textarea:focus,
.form--editorial select:focus {
  outline: 0;
  border-bottom-color: var(--ochre);
}

.form--editorial textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.55;
}

.form__field--checkboxes {
  display: block;
}

.form__field--checkboxes legend {
  margin-bottom: var(--space-4);
}

.form__hint {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  padding-top: var(--space-1);
  margin: 0;
  font-style: normal;
}

.form__rgpd {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  padding-top: var(--space-5);
  margin: 0;
  line-height: 1.7;
  max-width: none;
}

.form__rgpd a {
  color: var(--ink-90);
  text-decoration: underline;
  text-decoration-color: var(--ink-40);
}

.form__actions {
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-6);
  border-top: var(--bw) solid var(--ink-20);
  margin-top: var(--space-6);
}

.form__actions .btn--solid {
  flex: 1 1 auto;
  min-width: 240px;
}

/* Checkbox grid — minimal, mono caps for state */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-3);
  margin: 0;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  padding: var(--space-2) 0;
}

.checkbox input[type="checkbox"] {
  margin-right: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--ochre);
}

/* Coords block — paper-deep editorial card */
.coords {
  max-width: calc(960px + 2 * var(--pad-x));
  margin: 0 auto clamp(96px, 14vh, 160px);
  padding: clamp(48px, 7vw, 96px) var(--pad-x);
  background: var(--paper-deep);
  border-left: 4px solid var(--ochre);
}

.coords .section-number {
  color: var(--ochre);
  margin-bottom: var(--space-5);
}

.coords .section-number::before {
  background: var(--ochre);
}

.coords__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
}

.coords__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  border-bottom: var(--bw) solid var(--ink-20);
  align-items: baseline;
}

.coords__row:last-child {
  border-bottom: 0;
}

.coords__row dt {
  color: var(--ink-60);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.coords__row dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(1.125rem, 0.4vw + 1rem, 1.375rem);
}

.coords__row dd a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-40);
  text-underline-offset: 4px;
}

.coords__row dd a:hover,
.coords__row dd a:focus-visible {
  color: var(--ochre);
  text-decoration-color: var(--ochre);
}

@media (min-width: 720px) {
  .coords__row {
    grid-template-columns: 220px 1fr;
    gap: var(--space-5);
  }
}

/* Desktop split-screen contact: form on left, coords sticky on right.
   Implemented with grid wrapping main >.form and >.coords. We can target page-contact main. */
@media (min-width: 1180px) {
  .page-contact {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    column-gap: 0;
    align-items: start;
  }
  .page-contact > .page-header {
    grid-column: 1 / -1;
  }
  .page-contact > .form--editorial {
    grid-column: 1;
    padding-left: clamp(var(--pad-x), 8vw, 160px);
    padding-right: clamp(48px, 6vw, 96px);
    max-width: none;
  }
  .page-contact > .coords {
    grid-column: 2;
    margin: 0 0 clamp(96px, 14vh, 160px);
    background: var(--ink);
    color: var(--paper);
    border-left: 0;
    padding: clamp(64px, 8vw, 112px) clamp(40px, 4vw, 80px);
    position: sticky;
    top: 100px;
    height: auto;
  }
  .page-contact > .coords .section-number {
    color: var(--paper);
  }
  .page-contact > .coords .section-number::before {
    background: var(--ochre);
  }
  .page-contact > .coords .coords__row dt {
    color: var(--paper-60);
  }
  .page-contact > .coords .coords__row dd,
  .page-contact > .coords .coords__row dd a {
    color: var(--paper);
  }
  .page-contact > .coords .coords__row dd a {
    text-decoration-color: var(--ochre);
  }
  .page-contact > .coords .coords__row {
    border-bottom-color: rgba(244, 239, 230, 0.18);
  }
}

/* =============================================================
   9. RESERVER-SUCCES PAGE — .merci
   ============================================================= */

.merci {
  text-align: center;
  padding: clamp(120px, 18vh, 240px) var(--pad-x);
  max-width: calc(720px + 2 * var(--pad-x));
  margin: 0 auto;
}

.merci .section-number {
  text-align: center;
  display: inline-block;
}

.merci__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-6);
}

.merci__lede {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.4;
  color: var(--ink-90);
  margin: var(--space-5) auto;
  max-width: 56ch;
  text-align: center;
}

.merci__signature {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  color: var(--ink);
  margin: var(--space-6) 0;
}

.merci__sep {
  width: 80px;
  height: 1px;
  background: var(--ochre);
  margin: var(--space-7) auto;
  border: 0;
}

.merci__pwa {
  background: var(--paper-deep);
  padding: clamp(32px, 5vw, 56px);
  margin: var(--space-7) auto;
  max-width: 520px;
  text-align: left;
  border-left: 4px solid var(--ochre);
}

.merci__pwa-title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 var(--space-4);
}

.merci__back {
  display: block;
  margin-top: var(--space-8);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-60);
  max-width: none;
}

/* =============================================================
   10. 404 PAGE — .page-404
   ============================================================= */

.page-404__inner {
  max-width: 65ch;
  margin: 0 auto;
  padding: clamp(120px, 18vh, 240px) var(--pad-x);
  text-align: center;
}

.page-404__eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ochre);
  margin: 0 0 var(--space-5);
  max-width: none;
}

.page-404__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-6);
}

.page-404__lede {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  line-height: 1.5;
  color: var(--ink-70);
  margin: 0 auto var(--space-8);
  max-width: 50ch;
}

.page-404__back {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-60);
  margin: 0;
  max-width: none;
}

/* =============================================================
   11. FOOTER UPGRADE — paper-deep band, signature larger, 3 cols
   ============================================================= */
.site-footer {
  background: var(--paper-deep);
  border-top: 0;
  padding-block: clamp(80px, 12vh, 160px) clamp(32px, 5vh, 64px);
  margin-top: clamp(64px, 10vh, 128px);
}

.site-footer-inner {
  max-width: var(--max-page);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vh, 64px);
  align-items: start;
}

.site-footer .signature {
  max-width: 280px;
  height: auto;
}

.site-footer .signature object,
.site-footer .signature svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
}

.footer-lines {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-70);
}

.footer-lines a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--ink-20);
}
.footer-lines a:hover { text-decoration-color: var(--ink); color: var(--ink); }

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: var(--bw) solid var(--ink-20);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-60);
}

.footer-credits {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  text-align: center;
  padding-top: var(--space-4);
  border-top: var(--bw) solid var(--ink-10);
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .site-footer-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
  }
  .site-footer .signature   { grid-column: 1; grid-row: 1; }
  .footer-lines              { grid-column: 2; grid-row: 1; }
  .footer-meta               { grid-column: 3; grid-row: 1; flex-direction: column; align-items: flex-start; gap: var(--space-3); border-top: 0; padding-top: 0; }
  .footer-credits            { grid-column: 1 / -1; grid-row: 2; }
}

/* =============================================================
   12. HEADER / DRAWER FIX (override components.css)
   ============================================================= */

.nav-drawer {
  display: none;
}

.nav-drawer[aria-hidden="false"] {
  display: flex;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none !important;
  }
  .nav-drawer,
  .nav-drawer[aria-hidden="false"] {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .nav-primary {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* =============================================================
   13. MICRO-DETAILS
   ============================================================= */

/* Editorial guillemets for citations */
.citation__text {
  position: relative;
  display: block;
}

.citation__text::before {
  content: "« ";
  color: var(--ochre);
  font-style: normal;
}

.citation__text::after {
  content: " »";
  color: var(--ochre);
  font-style: normal;
}

/* If citation already has guillemets in source HTML, double-quoted is acceptable here:
   the visual reads as one rhythmic emphasis. */

/* Soft photo hover (already in components.css for .destination-card; mirror here on figures) */
.destination__figure img,
.full-photo__image,
.formule__image,
.portrait__image {
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.destination__figure:hover img,
.formule__media:hover .formule__image {
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .destination__figure img,
  .full-photo__image,
  .formule__image,
  .portrait__image {
    transition: none !important;
  }
  .destination__figure:hover img,
  .formule__media:hover .formule__image {
    transform: none !important;
  }
}

/* =============================================================
   14. REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .cartouche__overlay,
  .reveal,
  .cartouche__image {
    transition: none !important;
    animation: none !important;
  }
}

/* =============================================================
   15. HOME — PERSONAS & PILIERS (V9 — Vision Patrick V2)
   ============================================================= */

/* III. Personas — 4 cartes (familles, seniors, groupes-couples, solo) */
.personas {
  padding: clamp(96px, 14vh, 192px) var(--pad-x);
  background: var(--paper);
}

.personas__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.personas__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: var(--space-3) 0 var(--space-5);
  max-width: 22ch;
}

.personas__lead {
  max-width: 60ch;
  font-family: var(--ff-body);
  font-size: clamp(1.0625rem, 0.3vw + 1rem, 1.25rem);
  line-height: 1.65;
  color: var(--ink-70);
  margin: 0 0 var(--space-7);
}

.personas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
}

@media (min-width: 720px) {
  .personas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.persona {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: 0;
}

.persona__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.persona__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out, ease-out);
}

.persona:hover .persona__media img {
  transform: scale(1.03);
}

.persona__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(1.5rem, 1.6vw + 1rem, 2rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--space-3);
}

.persona__body p {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-70);
  max-width: 56ch;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .persona:hover .persona__media img {
    transform: none;
  }
}

/* IV. Piliers — fond sombre, 4 cartes opérationnelles */
.section-ink {
  background: var(--ink);
  color: var(--paper);
}

.section-ink .section-number,
.section-ink .section-number::before {
  color: var(--paper);
}

.section-ink .section-number::before {
  background: var(--paper);
  opacity: 0.4;
}

.piliers {
  padding: clamp(96px, 14vh, 192px) var(--pad-x);
}

.piliers__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.piliers__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--paper);
  margin: var(--space-3) 0 var(--space-7);
  max-width: 22ch;
}

.piliers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 3vw, 48px);
}

@media (min-width: 720px) {
  .piliers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .piliers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pilier {
  border-top: 1px solid rgba(244, 239, 230, 0.18);
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pilier__num {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--ochre);
  margin-bottom: var(--space-2);
}

.pilier__title {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: clamp(1.375rem, 1.4vw + 1rem, 1.75rem);
  line-height: 1.2;
  color: var(--paper);
  margin: 0;
}

.pilier__list {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
}

.pilier__list li {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.78);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.pilier__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ochre);
  opacity: 0.7;
}

/* CTA at end of comment section */
.comment__cta {
  margin-top: var(--space-6);
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
