/* =========================================================
   ÉCHAPPÉE v2 — Magazine de voyage
   Palette bleu nuit + crème + terracotta
   Design system & global styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,700;0,6..96,800;1,6..96,400;1,6..96,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ---- Tokens ---- */
:root {
  --ink:         #0a2540;    /* navy nuit */
  --ink-soft:    #14365e;
  --ocean:       #1f4d7a;    /* bleu profond */
  --ocean-mid:   #3a6e9c;
  --sky:         #c8d9e7;    /* bleu pâle */
  --sky-soft:    #e5edf4;

  --paper:       #f3ecdf;    /* crème chaud */
  --paper-warm:  #ebe1cf;
  --bone:        #e2d6bd;
  --rule:        #d6c9ad;
  --rule-soft:   #e8dcc4;

  --terra:       #d4633a;    /* terracotta vif */
  --terra-deep:  #a84a26;
  --terra-soft:  #e89878;

  --muted:       #7a7268;
  --muted-dark:  #4d4942;

  --serif:       'Bodoni Moda', 'Didot', 'Times New Roman', serif;
  --italic:      'Cormorant Garamond', serif;
  --sans:        'Space Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --max:         1480px;
  --gutter:      clamp(20px, 4vw, 64px);
  --r-card:      18px;
  --r-pill:      999px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; max-width: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---- Type primitives ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--terra);
  border-radius: 50%;
  margin: 0 10px 2px 0;
  vertical-align: middle;
}
.eyebrow.on-dark { color: rgba(243,236,223,0.7); }
.eyebrow.on-dark .dot { background: var(--terra-soft); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.italic-accent {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.lead {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--muted-dark);
  max-width: 56ch;
}
.lead.on-dark { color: rgba(243,236,223,0.78); }

.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.rule { height: 1px; background: var(--rule); width: 100%; }

/* =========================================================
   NAV — transparente sur fond sombre, opaque sur clair
   ========================================================= */
/* DÉFAUT (sous-pages : blog, archive, article, à-propos, contact, légales) :
   nav SOLIDE, texte sombre lisible sur fond crème. */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
/* ACCUEIL uniquement (classe ajoutée en JS si .hero-v2 présent) :
   nav transparente posée par-dessus le hero photo, texte clair. */
.nav.is-overlay {
  position: absolute;
  background: transparent;
  border-bottom-color: transparent;
  color: var(--paper);
}
/* ACCUEIL après défilement : fond navy translucide, texte clair. */
.nav.is-overlay.is-solid {
  position: fixed;
  background: rgba(10, 37, 64, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  color: var(--paper);
  border-bottom: 1px solid rgba(243,236,223,0.08);
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  gap: 24px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  position: relative;
  padding: 6px 0;
  transition: opacity 0.2s;
  opacity: 0.85;
}
.nav-link:hover { opacity: 1; }
.nav-link.is-active { opacity: 1; font-weight: 500; }
.nav-link.is-active::before {
  content: '';
  position: absolute;
  left: -14px; top: 50%;
  width: 6px; height: 6px;
  background: var(--terra);
  border-radius: 50%;
  transform: translateY(-50%);
}
.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.015em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.nav-logo .ampersand { color: var(--terra); font-family: var(--italic); font-size: 36px; }
.nav-issue {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--terra);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
/* défaut (nav solide / sous-pages) : assombrir, sinon le CTA se fond dans le crème */
.nav-cta:hover { background: var(--terra-deep); color: var(--paper); transform: translateY(-1px); }
/* accueil (nav transparente par-dessus le hero) : effet crème d'origine conservé */
.nav.is-overlay .nav-cta:hover { background: var(--paper); color: var(--ink); }
.nav-cta .arrow { width: 12px; height: 12px; }
.nav-burger { display: none; }

@media (max-width: 900px) {
  .nav-row { grid-template-columns: 1fr auto; height: 68px; }
  .nav-left, .nav-right { display: none; }
  .nav-logo { font-size: 22px; justify-self: start; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    width: 28px; height: 28px;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    background: transparent;
    color: inherit;
  }
  .nav-burger span { display: block; height: 1.5px; background: currentColor; transition: transform 0.3s, opacity 0.3s; }
}

/* Mobile fullscreen overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  display: flex;
  flex-direction: column;
  padding: 26px var(--gutter) 40px;
  overflow-y: auto;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-overlay .mo-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px;
}
.mobile-overlay .mo-logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--paper);
}
.mobile-overlay .mo-logo .amp { color: var(--terra); }
.mobile-overlay .mo-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(243,236,223,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  background: transparent;
}
.mobile-overlay .mo-close svg { width: 18px; height: 18px; }
.mobile-overlay .mo-nav { display: flex; flex-direction: column; gap: 0; }
.mobile-overlay .mo-nav a {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 8vw, 56px);
  padding: 22px 0;
  border-bottom: 1px solid rgba(243,236,223,0.15);
  color: var(--paper);
  letter-spacing: -0.015em;
  transition: padding-left .25s, color .25s;
  line-height: 1;
}
.mobile-overlay .mo-nav a:hover { padding-left: 8px; color: var(--terra-soft); }
.mobile-overlay .mo-nav a em { font-family: var(--italic); font-style: italic; color: var(--terra-soft); font-weight: 400; }
.mobile-overlay .mo-cta {
  margin-top: 36px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  background: var(--terra);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-start;
  display: inline-block;
  white-space: nowrap;
}
.mobile-overlay .mo-cta svg,
.mobile-overlay .mo-cta .arrow { display: none; }

/* =========================================================
   HERO v2 — full-bleed, photo, titre serif géant
   ========================================================= */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding-top: 84px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,37,64,0.55) 0%, rgba(10,37,64,0.15) 35%, rgba(10,37,64,0.55) 75%, rgba(10,37,64,0.85) 100%),
    linear-gradient(90deg, rgba(10,37,64,0.45) 0%, transparent 60%);
}

/* Dotted travel path */
.hero-path {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
}
.hero-path circle { fill: rgba(243,236,223,0.9); }
.hero-path path { stroke: rgba(243,236,223,0.7); stroke-width: 1.5; fill: none; stroke-dasharray: 2 8; }

.hero-content {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(180px, 18vw, 240px);
}
.hero-eyebrow-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: clamp(40px, 6vw, 80px);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero-eyebrow-row .l, .hero-eyebrow-row .r {
  display: flex; align-items: center; gap: 14px;
  opacity: 0.85;
}
.hero-eyebrow-row .badge-circle {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 4px rgba(212,99,58,0.25);
}

.hero-mega {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(54px, 14vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}
.hero-mega .row { display: block; }
.hero-mega .row.indent { padding-left: clamp(40px, 12vw, 220px); }
.hero-mega em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  color: var(--terra-soft);
  letter-spacing: -0.01em;
}
.hero-mega .underline-emphasis {
  position: relative;
  display: inline-block;
}
.hero-mega .underline-emphasis::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
}

.hero-sub {
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}
.hero-sub > * { min-width: 0; }
.hero-sub p {
  max-width: 44ch;
  color: rgba(243,236,223,0.85);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
}
.hero-sub .actions {
  display: flex; gap: 16px; align-items: center;
}

/* Floating destination cards bottom of hero */
.hero-cards {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(40px, 6vw, 64px);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  z-index: 5;
}
.hero-cards > * { min-width: 0; }
.hcard {
  position: relative;
  background: rgba(243,236,223,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 22px;
  padding: 14px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(243,236,223,0.6);
}
.hcard:hover { transform: translateY(-6px); background: var(--paper); }
.hcard .ph {
  width: 88px; height: 88px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sky);
  position: relative;
}
.hcard .ph img { width: 100%; height: 100%; object-fit: cover; }
.hcard .ph .pin {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(10,37,64,0.7);
  color: var(--paper);
  font-size: 9px;
  padding: 3px 6px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.hcard .body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hcard .country {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hcard h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hcard h4 em { font-family: var(--italic); font-style: italic; color: var(--terra); font-weight: 400; }
.hcard .arr {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s;
}
.hcard:hover .arr { transform: rotate(-45deg); background: var(--terra); }

@media (max-width: 1024px) {
  .hero-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .hero-cards { position: static; padding: 0 var(--gutter) 40px; margin-top: 32px; grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 60px; }
  .hero-mega .row.indent { padding-left: 20px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px 18px 32px;
  border-radius: var(--r-pill);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--terra); color: var(--paper); }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--terra); }
.btn-ghost { background: transparent; color: currentColor; border: 1px solid currentColor; }
.btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--terra); color: var(--paper); }
.btn .arr {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
}
.btn-light .arr, .btn-ghost .arr { background: rgba(10,37,64,0.08); }
.btn:hover .arr { transform: rotate(-45deg); }

.icon-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: var(--paper);
}
.icon-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.icon-btn.solid-ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.icon-btn.solid-ink:hover { background: var(--terra); border-color: var(--terra); }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  width: max-content;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--terra-soft);
}
.marquee-track .star { color: var(--terra); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section.tinted { background: var(--paper-warm); }
.section.dark { background: var(--ink); color: var(--paper); }
.section.cream { background: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head .left h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.028em;
  margin: 14px 0 0;
}
.section-head .left h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.section.dark .section-head .left h2 em { color: var(--terra-soft); }
.section-head .right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section-head .right .controls { display: flex; gap: 10px; margin-top: 10px; }

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================
   CIRCULAR DESTINATIONS (réf Triply)
   ========================================================= */
.circle-dests-wrap { padding: clamp(60px, 8vw, 100px) 0; background: var(--paper); position: relative; overflow: hidden; }
.circle-dests-wrap .deco-leaf {
  position: absolute;
  right: -40px; top: 40px;
  width: 280px;
  opacity: 0.35;
  pointer-events: none;
}
.circle-dests-wrap .deco-path {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 200px;
  pointer-events: none;
  opacity: 0.5;
}
.circle-dests {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 32px);
  position: relative;
}
.cdest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cdest .circle {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: 0 12px 40px rgba(10,37,64,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cdest:hover .circle { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(10,37,64,0.2); }
.cdest .circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.cdest:hover .circle img { transform: scale(1.08); }
.cdest .badge {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--paper);
  transition: background 0.25s;
}
.cdest:hover .badge { background: var(--terra); }
.cdest .name {
  margin-top: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.cdest .name em { font-family: var(--italic); font-style: italic; color: var(--terra); font-weight: 400; }
.cdest .meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cdest .meta strong { color: var(--terra); font-weight: 500; }
@media (max-width: 900px) {
  .circle-dests { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .circle-dests { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   ARTICLES GRID (#articles)
   ========================================================= */
.articles {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(28px, 3.2vw, 44px) clamp(20px, 2.4vw, 32px);
}
.article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
}
.article .media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--bone);
}
.article .media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.45), transparent 45%);
}
.article .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.article:hover .media img { transform: scale(1.06); }
.article .tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
}
.article .open-btn {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.article:hover .open-btn { background: var(--terra); color: var(--paper); transform: rotate(-45deg); }
.article .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.article .meta .dot { color: var(--terra); }
.article h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--ink);
}
.article h3 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.article p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted-dark);
  line-height: 1.6;
}

/* Variants */
.article.feature {
  grid-column: span 7;
  grid-row: span 2;
}
.article.feature .media { aspect-ratio: 16 / 11; }
.article.feature h3 { font-size: clamp(36px, 4.4vw, 60px); }
.article.feature p { font-size: 15.5px; max-width: 56ch; }

.article.tall { grid-column: span 5; }
.article.tall .media { aspect-ratio: 4 / 5; }
.article.tall h3 { font-size: clamp(26px, 2.2vw, 34px); }

.article.wide { grid-column: span 6; }
.article.wide .media { aspect-ratio: 5 / 4; }
.article.wide h3 { font-size: clamp(26px, 2.4vw, 36px); }

.article.small { grid-column: span 3; }
.article.small .media { aspect-ratio: 1 / 1; }
.article.small h3 { font-size: clamp(20px, 1.6vw, 24px); }

.article.text-card {
  grid-column: span 3;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-card);
  padding: 32px 28px;
  justify-content: space-between;
  min-height: 360px;
}
.article.text-card h3 { color: var(--paper); font-size: 26px; }
.article.text-card h3 em { color: var(--terra-soft); }
.article.text-card .meta { color: rgba(243,236,223,0.6); }
.article.text-card .meta .dot { color: var(--terra-soft); }
.article.text-card .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  color: var(--terra-soft);
  font-style: italic;
}

@media (max-width: 1100px) {
  .article.feature { grid-column: span 12; }
  .article.tall, .article.wide { grid-column: span 6; }
  .article.small, .article.text-card { grid-column: span 6; }
}
@media (max-width: 640px) {
  .article.tall, .article.wide, .article.small, .article.text-card { grid-column: span 12; }
}

/* =========================================================
   PULL QUOTE
   ========================================================= */
.pullquote {
  padding: clamp(100px, 12vw, 180px) 0;
  text-align: center;
  position: relative;
}
.pullquote .qmark {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(120px, 18vw, 280px);
  color: var(--terra);
  line-height: 0.6;
  opacity: 0.18;
  margin-bottom: -40px;
}
.pullquote p {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto;
}
.pullquote p .mark { color: var(--terra); }
.pullquote .cite {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   OVAL SPOTLIGHT (réf Maldives)
   ========================================================= */
.oval-spot {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.oval-spot::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border: 1px dashed rgba(243,236,223,0.18);
  border-radius: 50%;
}
.oval-spot::after {
  content: '';
  position: absolute;
  left: -120px; bottom: -120px;
  width: 400px; height: 400px;
  border: 1px dashed rgba(243,236,223,0.12);
  border-radius: 50%;
}
.oval-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}
.oval-grid > * { min-width: 0; }
.oval-spot .label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.6);
  display: flex; align-items: center; gap: 14px;
}
.oval-spot .label::before {
  content: ''; width: 36px; height: 1px; background: var(--terra); display: inline-block;
}
.oval-spot h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 24px 0 28px;
}
.oval-spot h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.oval-spot p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(243,236,223,0.8);
  max-width: 46ch;
}
.oval-spot .specs {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(243,236,223,0.18);
  border-bottom: 1px solid rgba(243,236,223,0.18);
}
.oval-spot .specs .item { min-width: 0; flex: 1 1 100px; }
.oval-spot .specs .item .v {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}
.oval-spot .specs .item .v em { color: var(--terra-soft); font-family: var(--italic); font-style: italic; }
.oval-spot .specs .item .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.55);
  margin-top: 8px;
}

.oval-media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 50% / 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.oval-media img { width: 100%; height: 100%; object-fit: cover; }
.oval-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,37,64,0.45));
}
.oval-media .float-label {
  position: absolute;
  left: 50%; bottom: 18%;
  transform: translateX(-50%);
  background: rgba(243,236,223,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 28px;
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  z-index: 2;
}
.oval-media .side-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(243,236,223,0.18);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  z-index: 2;
  transition: background 0.25s;
}
.oval-media .side-circle:hover { background: var(--terra); }
.oval-media .side-circle.left  { left: -28px; }
.oval-media .side-circle.right { right: -28px; background: var(--terra); }
.oval-media .side-circle.right:hover { background: var(--terra-deep); }

.oval-media .float-icons {
  position: absolute;
  top: 50%; left: 18px;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px;
  z-index: 2;
}
.oval-media .ficn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(243,236,223,0.85);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}

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

/* =========================================================
   HORIZONTAL DESTINATION RAIL
   ========================================================= */
.rail-wrap { padding: clamp(80px, 10vw, 140px) 0; background: var(--paper-warm); position: relative; }
.rail-wrap .rail-deco {
  position: absolute;
  left: 0; right: 0; top: 50%;
  pointer-events: none;
  opacity: 0.3;
}
.rail {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 8px var(--gutter) 32px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail-card {
  flex: 0 0 clamp(280px, 28vw, 360px);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bone);
  cursor: pointer;
}
.rail-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.rail-card:hover img { transform: scale(1.05); }
.rail-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.7), transparent 50%);
}
.rail-card .info {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  color: var(--paper);
  z-index: 2;
}
.rail-card .info .country {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 8px;
}
.rail-card .info h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.015em;
}
.rail-card .info h3 em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
}
.rail-card .num {
  position: absolute;
  top: 20px; left: 24px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.08em;
  z-index: 2;
}
.rail-card .price {
  position: absolute;
  top: 20px; right: 24px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '✦';
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  color: var(--terra);
  font-size: 280px;
  right: -40px; top: -60px;
  opacity: 0.15;
  pointer-events: none;
}
.newsletter::after {
  content: '';
  position: absolute;
  left: -200px; bottom: -200px;
  width: 500px; height: 500px;
  border: 1px dashed rgba(243,236,223,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  position: relative;
}
.newsletter-inner > * { min-width: 0; }
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
}
.newsletter h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.newsletter form {
  display: flex;
  align-items: stretch;
  background: rgba(243,236,223,0.08);
  border: 1px solid rgba(243,236,223,0.2);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 28px;
  gap: 8px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 0;
}
.newsletter input::placeholder { color: rgba(243,236,223,0.5); }
.newsletter button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--terra);
  color: var(--paper);
  padding: 14px 26px;
  border-radius: var(--r-pill);
  transition: background 0.2s;
}
.newsletter button[type="submit"]:hover { background: var(--terra-deep); }
.newsletter .terms { font-size: 12px; color: rgba(243,236,223,0.55); margin-top: 18px; max-width: 44ch; }
.newsletter .eyebrow { color: rgba(243,236,223,0.65); }
.newsletter .eyebrow .dot { background: var(--terra-soft); }

@media (max-width: 900px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 7vw, 96px) 0 32px;
  position: relative;
  border-top: 1px solid rgba(243,236,223,0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(243,236,223,0.15);
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-brand .amp { color: var(--terra); font-family: var(--italic); }
.footer-brand + p {
  margin-top: 20px;
  color: rgba(243,236,223,0.65);
  max-width: 36ch;
  font-size: 14px;
}
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.55);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--terra-soft); }
.footer ul a em { font-family: var(--italic); font-style: italic; }
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.6);
}
.footer-bot .colophon { display: flex; align-items: center; gap: 16px; }
.footer-bot .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); display: inline-block; }

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

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.page-hero {
  padding: clamp(140px, 11vw, 180px) 0 clamp(64px, 7vw, 100px);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  border: 1px dashed rgba(243,236,223,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 320px; height: 320px;
  border: 1px dashed rgba(212,99,58,0.3);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 28px; color: rgba(243,236,223,0.7); }
.page-hero .eyebrow .dot { background: var(--terra-soft); }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0;
  position: relative;
  z-index: 1;
}
.page-hero h1 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--terra-soft);
  font-weight: 400;
}
.page-hero .sub {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 64px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid rgba(243,236,223,0.18);
  position: relative;
  z-index: 1;
}
.page-hero .sub .num {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
}
.page-hero .sub .num sup { color: var(--terra-soft); font-size: 18px; vertical-align: super; }
.page-hero .sub p { max-width: 58ch; color: rgba(243,236,223,0.82); font-size: 16px; line-height: 1.7; }

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 20px;
  padding: clamp(60px, 7vw, 96px) 0;
  background: var(--paper);
}
.about-mosaic .tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--bone);
}
.about-mosaic .tile img { width: 100%; height: 100%; object-fit: cover; }
.about-mosaic .tile.t1 { grid-column: 1 / span 5; grid-row: span 6; }
.about-mosaic .tile.t2 { grid-column: 6 / span 4; grid-row: span 4; }
.about-mosaic .tile.t3 { grid-column: 10 / span 3; grid-row: span 5; }
.about-mosaic .tile.t4 { grid-column: 6 / span 4; grid-row: span 4; }
.about-mosaic .tile.t5 { grid-column: 10 / span 3; grid-row: span 5; }
.about-mosaic .tile.t1::after,
.about-mosaic .tile.t3::after,
.about-mosaic .tile.t4::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.55), transparent 50%);
}
.about-mosaic .caption {
  position: absolute;
  bottom: 22px; left: 24px; right: 24px;
  color: var(--paper);
  font-family: var(--italic);
  font-style: italic;
  font-size: 20px;
  z-index: 2;
}

@media (max-width: 900px) {
  .about-mosaic { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .about-mosaic .tile { grid-column: 1 !important; aspect-ratio: 4/3; grid-row: auto !important; }
}

.manifesto {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--paper);
}
.manifesto-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 96px;
  max-width: var(--max);
  margin: 0 auto;
}
.manifesto-inner > * { min-width: 0; }
.manifesto .label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  position: sticky;
  top: 120px;
  align-self: start;
}
.manifesto h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.manifesto h2 em { font-family: var(--italic); font-style: italic; color: var(--terra); font-weight: 400; }
.manifesto p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted-dark);
  margin: 0 0 24px;
  max-width: 64ch;
}
.manifesto p.first::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  float: left;
  font-size: 92px;
  line-height: 0.85;
  padding: 10px 16px 0 0;
  color: var(--terra);
}

@media (max-width: 900px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
  .manifesto .label { position: static; }
}

.author-solo {
  background: var(--paper-warm);
  padding: clamp(80px, 10vw, 140px) 0;
}
.author-postcard {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-top: 56px;
}
.author-notes {
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.note-block {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--rule-soft);
}
.note-block:last-of-type { border-bottom: none; }
.note-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}
.note-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.note-value em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.author-prose {
  margin-top: 20px;
  font-family: var(--italic);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
}
.author-polaroid {
  margin: 0;
  background: var(--paper);
  padding: 24px 24px 18px;
  box-shadow: 0 28px 60px -24px rgba(10,37,64,0.32);
  transform: rotate(2.5deg);
  transform-origin: top center;
  align-self: start;
  position: relative;
}
.author-polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: grayscale(0.08) contrast(1.02);
}
.author-polaroid figcaption {
  margin-top: 16px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 18px;
  text-align: center;
  color: var(--ink);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .author-postcard { grid-template-columns: 1fr; gap: 56px; }
  .author-polaroid { transform: rotate(1.5deg); max-width: 320px; margin: 0 auto; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact {
  padding-top: clamp(60px, 7vw, 96px);
  padding-bottom: clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  background: var(--paper);
}
.contact > * { min-width: 0; }
.contact-info h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.contact-info h2 em { font-family: var(--italic); font-style: italic; color: var(--terra); font-weight: 400; }
.contact-info p { margin: 0 0 36px; max-width: 48ch; color: var(--muted-dark); font-size: 16px; line-height: 1.7; }
.contact-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.contact-row > * { min-width: 0; }
.contact-row:last-child { border-bottom: 1px solid var(--rule); }
.contact-row .k {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-row .v {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.contact-row .v em { font-family: var(--italic); font-style: italic; color: var(--terra); font-weight: 400; }
.contact-row .v small { display: block; font-family: var(--sans); font-size: 13.5px; font-weight: 400; color: var(--muted); margin-top: 6px; letter-spacing: 0; }

.contact-form {
  background: var(--ink);
  color: var(--paper);
  padding: 48px;
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 240px; height: 240px;
  border: 1px dashed rgba(243,236,223,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.contact-form .form-eyebrow {
  font-family: var(--italic);
  font-style: italic;
  font-size: 18px;
  color: var(--terra-soft);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  display: block;
}
.contact-form h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}
.contact-form h3 em { font-family: var(--italic); font-style: italic; color: var(--terra-soft); font-weight: 400; }
.contact-form .field {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid rgba(243,236,223,0.2);
}
.contact-form label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243,236,223,0.65);
  margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: transparent;
  border: none;
  outline: none;
  font: inherit;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 22px;
  padding: 4px 0;
  resize: none;
}
.contact-form select { font-family: var(--sans); font-size: 16px; }
.contact-form select option { background: var(--ink); color: var(--paper); }
.contact-form textarea { min-height: 96px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(243,236,223,0.4); }
.contact-form .row-2 {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px;
}
.contact-form .row-2 > * { min-width: 0; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; max-width: 100%; }
.contact-form .submit {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.contact-form .submit .note { font-size: 12px; color: rgba(243,236,223,0.55); max-width: 28ch; }

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .contact-form { padding: 32px; }
  .contact-form .row-2 { grid-template-columns: 1fr; }
  .page-hero .sub { grid-template-columns: 1fr; gap: 24px; }
  .hero-sub { grid-template-columns: 1fr; gap: 20px; }
  .hero-sub .actions { flex-wrap: wrap; }
  .newsletter form { flex-direction: column; border-radius: 24px; padding: 14px; gap: 10px; align-items: stretch; }
  .newsletter input { padding: 14px 18px; text-align: center; }
  .newsletter button[type="submit"] { width: 100%; justify-content: center; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .numbers-grid > div:nth-child(2) { border-right: none !important; }
  .numbers-grid > div { padding: 36px 24px !important; }
  .cta-strip-inner { grid-template-columns: 1fr !important; gap: 24px !important; }
}
@media (max-width: 700px) {
  .contact-form { padding: 24px 20px; }
  .contact-form h3 { font-size: 30px; margin-bottom: 24px; }
  .contact-row { grid-template-columns: 1fr; gap: 8px; }
  .contact-form .submit { flex-direction: column; align-items: flex-start; }
  .faq-grid { grid-template-columns: 1fr !important; }
  .faq-grid > details { padding: 24px 0 !important; border-right: none !important; }
  .hero-eyebrow-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-eyebrow-row .l, .hero-eyebrow-row .r { max-width: 100%; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr !important; }
  .numbers-grid > div { border-right: none !important; border-bottom: 1px solid var(--rule); }
}

/* Topics chips */
.topics {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.topics-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.topic {
  padding: 12px 20px;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  font-family: var(--sans);
  background: transparent;
  color: var(--ink);
}
.topic:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.topic.active { background: var(--terra); color: var(--paper); border-color: var(--terra); }

/* Utility */
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-gap-16 { display: flex; gap: 16px; align-items: center; }

/* Scroll fade-in */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }


/* ============================================================
   LAZARRE — intégration moteur (habillage « L'Escale » / theme-16)
   Classes générées par le moteur (/blog, archives, article, auteur) — à conserver.
   Palette : navy nuit (--ink) + crème (--paper) + terracotta (--terra).
   ============================================================ */

/* utilitaire SEO (H1 réel hors composition décorative du hero) */
.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; }

/* dropdown catégories (nav) */
.nav-cat-dd{ position:relative; display:inline-flex; align-items:center; }
.nav-cat-menu{
  position:absolute; top:100%; left:0; min-width:210px;
  display:none; flex-direction:column;
  background:var(--paper); border:1px solid var(--rule);
  padding:10px 0; margin-top:14px; z-index:160;
  box-shadow:0 26px 54px -26px rgba(10,37,64,0.32);
  border-radius:14px;
}
.nav-cat-dd:hover > .nav-cat-menu{ display:flex; }
.nav-cat-menu a{ display:block; padding:9px 20px; white-space:nowrap; font-family:var(--sans); font-size:12.5px; font-weight:500; letter-spacing:.04em; text-transform:none; color:var(--ink); opacity:1; }
.nav-cat-menu a::before{ display:none; }
.nav-cat-menu a:hover{ color:var(--terra); }

/* pont invisible : comble la gouttière entre "Blog" et le sous-menu
   (la gouttière visuelle margin-top:14px reste, mais le survol ne décroche plus) */
.nav-cat-dd{ position:relative; }
.nav-cat-dd::after{ content:""; position:absolute; left:0; right:0; top:100%; height:22px; }

/* liens catégories du menu MOBILE — masqués sur desktop, affichés dans l'overlay */
.nav-mobile-cat{ display:none; }
.mobile-overlay .nav-mobile-cat{
  display:block;
  font-family:var(--serif);
  font-weight:500;
  font-size:clamp(20px, 5.5vw, 30px);
  padding:16px 0 16px 26px;
  border-bottom:1px solid rgba(243,236,223,0.12);
  color:rgba(243,236,223,0.82);
  letter-spacing:-0.005em;
  line-height:1;
  position:relative;
  transition:padding-left .25s, color .25s;
}
.mobile-overlay .nav-mobile-cat::before{
  content:"·"; position:absolute; left:6px; top:50%;
  transform:translateY(-50%); color:var(--terra-soft);
}
.mobile-overlay .nav-mobile-cat:hover{ padding-left:34px; color:var(--terra-soft); }

/* listing blog + archives — carte image plein cadre, dégradé pour lisibilité */
.blog-listing{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,2.4vw,32px); padding:0 var(--gutter); max-width:var(--max); margin:0 auto; }
.blog-card{
  position:relative; display:flex; flex-direction:column; justify-content:flex-end;
  min-height:440px; padding:26px; overflow:hidden; border-radius:var(--r-card);
  background:var(--bone) center/cover no-repeat; color:var(--paper);
  box-shadow:0 30px 60px -32px rgba(10,37,64,0.45);
  transition:transform .6s cubic-bezier(.2,.6,.2,1);
}
.blog-card::before{ content:""; position:absolute; inset:0; z-index:0; background:linear-gradient(180deg, rgba(10,37,64,0) 38%, rgba(10,37,64,0.82)); }
.blog-card:hover{ transform:translateY(-6px); }
.blog-card > *{ position:relative; z-index:2; }
.blog-card-cover{ position:absolute; inset:0; z-index:3; }
.blog-card-category{ position:absolute; top:18px; left:18px; z-index:4; font-family:var(--sans); font-size:10px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--paper); background:var(--terra); padding:7px 13px; border-radius:999px; }
.blog-card-date{ font-family:var(--sans); font-size:10.5px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:rgba(243,236,223,0.85); margin-bottom:10px; }
.blog-card-title{ font-family:var(--serif); font-weight:500; font-size:1.85rem; line-height:1.04; letter-spacing:-.02em; color:var(--paper); margin:0; }
.blog-card-title em{ font-family:var(--italic); font-style:italic; color:var(--terra-soft); font-weight:400; }
.blog-card-excerpt{ margin:10px 0 0; font-family:var(--sans); font-size:.95rem; line-height:1.5; color:rgba(243,236,223,0.85); display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.blog-empty{ grid-column:1 / -1; font-family:var(--italic); font-style:italic; font-size:1.8rem; color:var(--muted); text-align:center; padding:80px var(--gutter); }
@media (max-width:1024px){ .blog-listing{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .blog-listing{ grid-template-columns:1fr; } }

/* pages génériques / légales / archives */
.page{ max-width:880px; margin:0 auto; padding:clamp(120px,12vw,180px) var(--gutter) clamp(72px,9vw,120px); background:var(--paper); }
.page > h1{ font-family:var(--serif); font-weight:500; font-size:clamp(46px,7vw,96px); line-height:.94; letter-spacing:-.03em; color:var(--ink); margin:0 0 28px; }
.page > h1 em{ font-family:var(--italic); font-style:italic; color:var(--terra); font-weight:400; }
.page .intro{ font-family:var(--serif); font-size:clamp(18px,1.6vw,24px); line-height:1.5; color:var(--muted-dark); margin:0 0 36px; max-width:60ch; }
.page .content{ font-family:var(--sans); font-size:1.05rem; line-height:1.78; color:var(--ink); }
.page .content > * + *{ margin-top:1.1em; }
.page .content h2{ font-family:var(--serif); font-weight:500; font-size:2rem; color:var(--ink); margin:1.6em 0 .4em; letter-spacing:-.02em; }
.page .content h3{ font-family:var(--serif); font-weight:500; font-size:1.5rem; color:var(--ink); margin:1.4em 0 .3em; }
.page .content a{ color:var(--terra); text-decoration:underline; }
.archive-desc{ font-family:var(--italic); font-style:italic; font-size:1.3rem; color:var(--muted); max-width:60ch; margin:0 0 8px; }

/* article (.post) */
.post{ max-width:760px; margin:0 auto; padding:clamp(120px,12vw,170px) var(--gutter) clamp(64px,8vw,110px); background:var(--paper); }
.post > header{ margin-bottom:40px; }
.post > header img{ width:100%; aspect-ratio:16/10; object-fit:cover; margin-bottom:32px; border-radius:var(--r-card); background:var(--bone); }
.post > header h1{ font-family:var(--serif); font-weight:500; font-size:clamp(36px,5.5vw,68px); line-height:.98; letter-spacing:-.03em; color:var(--ink); margin:0 0 20px; text-wrap:balance; }
.post > header h1 em{ font-family:var(--italic); font-style:italic; color:var(--terra); font-weight:400; }
.post .content{ font-family:var(--sans); font-size:1.08rem; line-height:1.8; color:var(--ink); }
.post .content > * + *{ margin-top:1.15em; }
.post .content .lede{ font-family:var(--italic); font-style:italic; color:var(--muted-dark); font-size:1.4rem; line-height:1.5; }
.post .content h2{ font-family:var(--serif); font-weight:500; font-size:1.9rem; color:var(--ink); margin:1.7em 0 .4em; letter-spacing:-.02em; }
.post .content h3{ font-family:var(--serif); font-weight:500; font-size:1.45rem; color:var(--ink); margin:1.5em 0 .3em; }
.post .content img{ width:100%; margin:1.5em 0; border-radius:var(--r-card); }
.post .content a{ color:var(--terra); text-decoration:underline; }
.post .content blockquote{ margin:1.5em 0; padding:6px 0 6px 28px; border-left:2px solid var(--terra); font-family:var(--italic); font-style:italic; font-size:1.6rem; line-height:1.2; color:var(--ink); }

/* méta article : date · auteur · catégorie */
.article-meta{ display:flex; flex-wrap:wrap; align-items:center; gap:12px; font-family:var(--sans); font-size:11px; font-weight:500; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin:0; }
.article-meta-sep{ color:var(--terra); }
.article-meta-author, .article-meta-category{ color:var(--terra); }
.article-meta-author:hover, .article-meta-category:hover{ color:var(--terra-deep); }

/* box auteur sous l'article */
.author-box{ display:flex; gap:22px; align-items:center; margin-top:52px; padding:28px; background:var(--paper-warm); border:1px solid var(--rule); border-radius:var(--r-card); }
.author-box-photo img{ width:84px; height:84px; border-radius:50%; object-fit:cover; background:var(--bone); }
.author-box-name{ font-family:var(--serif); font-style:italic; font-size:1.5rem; color:var(--ink); display:inline-block; margin-bottom:6px; }
a.author-box-name:hover{ color:var(--terra); }
.author-box-bio{ margin:0; font-family:var(--sans); color:var(--muted-dark); font-size:1rem; line-height:1.55; }

/* page auteur (overrides légers sur les styles inline du moteur) */
.author-page{ background:var(--paper); padding-top:clamp(120px,12vw,180px); }
.author-page-bio{ color:var(--muted) !important; font-family:var(--italic) !important; font-style:italic; }
.author-page-bio-long .content{ color:var(--ink) !important; font-family:var(--sans); }

/* grille auteurs — section "norme" de l'À propos */
.authors{ padding:clamp(80px,10vw,140px) 0; background:var(--paper); }
.authors-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(240px, 1fr)); gap:56px 40px; margin-top:56px; }
.author-mini{ display:flex; flex-direction:column; gap:14px; margin:0; }
.author-mini__img{ margin:0; padding:18px 18px 14px; background:var(--paper); border:1px solid var(--rule); box-shadow:0 28px 60px -24px rgba(10,37,64,0.32); max-width:260px; transform:rotate(-1.5deg); transform-origin:top center; }
.author-mini:nth-child(even) .author-mini__img{ transform:rotate(1.8deg); }
.author-mini__img img{ width:100%; aspect-ratio:4/5; object-fit:cover; display:block; filter:grayscale(0.06) contrast(1.02); transition:transform 1s cubic-bezier(.2,.6,.2,1); }
.author-mini:hover .author-mini__img img{ transform:scale(1.04); }
.author-mini__img figcaption{ margin-top:14px; font-family:var(--italic); font-style:italic; font-size:16px; color:var(--ink); text-align:center; letter-spacing:.02em; }
.author-mini__role{ font-family:var(--sans); font-size:10.5px; font-weight:500; letter-spacing:.22em; text-transform:uppercase; color:var(--terra); }
.author-mini__name{ font-family:var(--serif); font-weight:500; font-size:2rem; line-height:1; color:var(--ink); margin:0; letter-spacing:-.02em; }
.author-mini__bio{ font-family:var(--sans); font-size:.98rem; line-height:1.6; color:var(--muted-dark); margin:0; max-width:38ch; }
.author-mini__cta{ margin-top:auto; font-family:var(--sans); font-size:11px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--terra); display:inline-flex; gap:8px; align-items:center; }
.author-mini__cta .arrow{ transition:transform .25s; }
.author-mini__cta:hover{ color:var(--terra-deep); }
.author-mini__cta:hover .arrow{ transform:translateX(4px); }

/* contact — habillage du handler PHP (eyebrow italic, alertes) */
.contact-form .form-eyebrow{ font-family:var(--italic); font-style:italic; font-size:18px; color:var(--terra-soft); letter-spacing:-0.005em; margin-bottom:8px; display:block; }
.contact-form label{ display:block; }
.contact-form .submit .btn{ flex:0 0 auto; }
.cf-alert{ padding:16px 20px; margin-bottom:22px; font-family:var(--sans); font-size:.95rem; line-height:1.5; border-radius:12px; }
.cf-alert-success{ background:rgba(212,99,58,0.16); border:1px solid var(--terra); color:var(--paper); }
.cf-alert-error{ background:rgba(243,236,223,0.08); border:1px solid rgba(243,236,223,0.3); color:var(--paper); }
.cf-alert ul{ margin:8px 0 0; padding-left:18px; }

/* masquage des cartes lors du filtrage par catégorie (accueil) */
.article.is-hidden{ display:none; }

/* ============================================================
   ANTI-DÉBORDEMENT — petits écrans (jusqu'à ~330px)
   Aucun scroll horizontal sur accueil / blog / à-propos / contact.
   ============================================================ */
@media (max-width: 480px){
  /* gouttière plus serrée pour gagner de la largeur utile */
  :root{ --gutter: 16px; }
  /* titres serif géants : empêcher tout dépassement, autoriser le retour ligne */
  .hero-mega,
  .page-hero h1,
  .section-head .left h2,
  .oval-spot h2,
  .pullquote p,
  .post > header h1,
  .page > h1{
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  .hero-mega{ font-size: clamp(46px, 15vw, 88px); }
  .page-hero h1{ font-size: clamp(46px, 13vw, 96px); }
  .oval-spot h2{ font-size: clamp(40px, 12vw, 72px); }
  .section-head .left h2{ font-size: clamp(38px, 11vw, 72px); }
  /* marquee : réduire pour ne pas peser (overflow déjà masqué) */
  .marquee-track{ font-size: 22px; gap: 32px; }
  .marquee-track span{ gap: 32px; }
  /* destinations circulaires : une colonne pour respirer */
  .circle-dests{ grid-template-columns: 1fr; }
  /* sécurité générale : médias et conteneurs jamais plus larges que l'écran */
  img, svg, video, iframe{ max-width: 100%; }
  .shell{ max-width: 100%; }
}
