/* ================================================
   STORYTAILOR TRAVEL — Premium Design System
   ================================================ */

:root {
  --ivory:     #F7F3EC;  /* warm ivory — fond principal */
  --cream:     #EDE6DA;  /* crème naturelle — sections secondaires */
  --sand:      #D8C7AE;  /* lin / taupe naturel — transitions, détails */
  --taupe:     #7C6B5A;
  --stone:     #9B9089;
  --sienna:    #A65D45;  /* terracotta brûlé — accent signature */
  --champagne: #D8C7AE;  /* ambre chaud — accents sur fonds sombres */
  --bronze:    #A65D45;
  --noir:      #1E2A24;  /* forêt noire profonde */
  --dark:      #292722;  /* charcoal — texte principal */
  --mid:       #3D3B39;
  --muted:     #6B6460;
  --border:    #DDD5C8;  /* bordures taupe chaud */
  --white:     #FFFFFF;
  --forest:    #314238;  /* vert forêt profond — boutons, nav, sections clés */

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', 'Jost', system-ui, sans-serif;

  --text-xxs:  clamp(0.625rem, 0.6vw, 0.688rem);
  --text-xs:   clamp(0.688rem, 0.7vw, 0.75rem);
  --text-sm:   clamp(0.813rem, 0.9vw, 0.875rem);
  --text-base: clamp(0.938rem, 1vw, 1rem);
  --text-md:   clamp(1rem, 1.1vw, 1.063rem);
  --text-lg:   clamp(1.063rem, 1.2vw, 1.125rem);
  --text-xl:   clamp(1.25rem, 1.5vw, 1.5rem);
  --text-2xl:  clamp(1.5rem, 2vw, 2rem);
  --text-3xl:  clamp(2rem, 3vw, 2.8rem);
  --text-4xl:  clamp(2.5rem, 4vw, 3.8rem);
  --text-5xl:  clamp(3rem, 5.5vw, 5.5rem);
  --text-hero: clamp(3.8rem, 7.5vw, 8rem);

  --sp-1:  0.25rem;  --sp-2:  0.5rem;  --sp-3:  0.75rem;
  --sp-4:  1rem;     --sp-6:  1.5rem;  --sp-8:  2rem;
  --sp-12: 3rem;     --sp-16: 4rem;    --sp-24: 6rem;
  --section-y:  clamp(5rem, 10vw, 12rem);
  --container-x: clamp(1.5rem, 5vw, 6rem);

  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-med:   0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:  0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --content-w: 1160px;
  --text-w:    680px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; border: none; background: none; font: inherit; color: inherit; }

/* --- LOADER --- */
@keyframes loaderOut {
  0%, 85%  { opacity: 1; visibility: visible; pointer-events: auto; }
  100%     { opacity: 0; visibility: hidden;  pointer-events: none; }
}
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: #1E2A24;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  /* CSS fallback: disparaît automatiquement si JS ne répond pas */
  animation: loaderOut 3.4s ease forwards;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; animation: none; }
.loader-logo {
  font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300;
  color: var(--white); letter-spacing: 8px; text-transform: lowercase;
  opacity: 0; animation: lfade 0.9s 0.3s ease forwards;
  display: block; text-align: center;
}
.loader-tag {
  font-size: 0.42rem; letter-spacing: 7px; text-transform: uppercase;
  color: var(--sand); margin-top: 9px; display: block; text-align: center;
  opacity: 0; animation: lfade 0.9s 0.6s ease forwards;
}
.loader-line {
  width: 0; height: 1px; background: var(--sand);
  margin: 20px auto 0; animation: lline 1.2s 0.8s ease forwards;
}
@keyframes lfade { to { opacity: 1; } }
@keyframes lline { to { width: 56px; } }

/* --- CURSOR --- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px; background: var(--sienna); border-radius: 50%;
  pointer-events: none; transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px; border: 1.5px solid rgba(166,93,69,0.65);
  border-radius: 50%; pointer-events: none; transform: translate(-50%,-50%);
  transition: width 0.4s var(--ease-elegant), height 0.4s var(--ease-elegant), border-color 0.3s;
}
.cursor.hover { width: 5px; height: 5px; opacity: 0.6; }
.cursor-ring.hover { width: 52px; height: 52px; border-color: rgba(166,93,69,0.35); }
@media (max-width: 960px) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } a, button { cursor: pointer; } }

/* --- NAVIGATION --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--container-x); height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, transparent 100%);
  transition: background 0.65s ease, backdrop-filter 0.65s ease, box-shadow 0.65s ease, height 0.4s ease;
}
.nav.scrolled {
  background: rgba(247,243,236,0.93);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(221,213,200,0.7), 0 6px 28px rgba(0,0,0,0.04);
  height: 70px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 46px; width: auto; display: block; transition: filter 0.4s ease; }
.nav.scrolled .nav-logo-img { filter: brightness(0); }
.nav-center { display: flex; align-items: center; gap: clamp(18px,3vw,34px); }
.nav-link {
  font-size: 0.64rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.78); font-weight: 400;
  position: relative; padding-bottom: 2px; transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -1px; left: 0; width: 0;
  height: 1px; background: var(--forest); transition: width 0.35s var(--ease-elegant);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--white); }
.nav.scrolled .nav-link { color: var(--muted); }
.nav.scrolled .nav-link:hover { color: var(--dark); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-toggle { display: flex; border: 1px solid rgba(255,255,255,0.2); overflow: hidden; transition: border-color 0.4s ease; }
.nav.scrolled .lang-toggle { border-color: var(--border); }
.lang-btn {
  padding: 6px 11px; font-size: 0.58rem; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4); font-family: var(--font-sans); font-weight: 400;
  transition: all 0.2s ease;
}
.lang-btn.active { background: rgba(255,255,255,0.12); color: var(--white); }
.nav.scrolled .lang-btn { color: var(--muted); }
.nav.scrolled .lang-btn.active { background: var(--cream); color: var(--dark); }
.nav-cta {
  background: var(--forest); color: var(--white);
  padding: 10px 22px; font-size: 0.62rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 400;
  display: inline-block; white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--sienna); color: var(--white); }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; min-height: 44px; cursor: pointer; }
.nav-hamburger span { width: 100%; height: 1px; background: var(--white); display: block; transition: all 0.35s ease; }
.nav.scrolled .nav-hamburger span { background: var(--dark); }

/* Mobile Nav Drawer */
.nav-drawer {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(250,248,242,0.98); backdrop-filter: blur(16px);
  padding: 28px var(--container-x); flex-direction: column; gap: 22px;
  border-top: 1px solid var(--border); z-index: 499;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link { color: var(--muted); font-size: 0.72rem; }
.nav-drawer .nav-link:hover { color: var(--dark); }
.nav-drawer .nav-cta { align-self: flex-start; }
.nav-drawer .lang-toggle { border-color: var(--border); }
.nav-drawer .lang-btn { color: var(--muted); }
.nav-drawer .lang-btn.active { background: var(--cream); color: var(--dark); }

/* --- HERO --- */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(1.05) saturate(1.0) contrast(0.9) sepia(0.06);
}
.hero-vid { opacity: 0; transition: opacity 1.4s ease-in-out; will-change: opacity; }
.hero-vid.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-vid { transition: none; }
}
.hero-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1E2A24 0%, #28382F 50%, #1E2A24 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,8,2,0.80) 0%, rgba(12,8,2,0.10) 44%),
    linear-gradient(to right, rgba(12,8,2,0.62) 0%, rgba(12,8,2,0.28) 50%, rgba(12,8,2,0.08) 80%, transparent 100%),
    linear-gradient(to bottom, rgba(12,8,2,0.30) 0%, transparent 25%),
    radial-gradient(ellipse at 74% 25%, rgba(255,218,130,0.07) 0%, transparent 52%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.032; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px; animation: grain 0.5s steps(2) infinite;
}
@keyframes grain {
  0%,100% { transform:translate(0,0); } 25% { transform:translate(-2%,-1%); }
  50% { transform:translate(1%,2%); } 75% { transform:translate(2%,-2%); }
}
.hero-bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px; z-index: 3;
  background: linear-gradient(to right, transparent, var(--sand), transparent);
  animation: lineGlow 3s ease-in-out infinite;
}
@keyframes lineGlow { 0%,100% { opacity:0.35; } 50% { opacity:0.9; } }
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--container-x); max-width: calc(720px + var(--container-x)*2);
}
.hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 7px; text-transform: uppercase;
  font-weight: 400; color: var(--sand); display: block; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s 0.4s var(--ease-elegant) forwards;
  text-shadow: 0 1px 14px rgba(8,5,1,0.55);
}
.hero-title {
  font-family: var(--font-serif); font-size: var(--text-hero);
  font-weight: 300; color: var(--white); line-height: 1.02; margin-bottom: 30px;
  text-shadow: 0 2px 40px rgba(8,5,1,0.65), 0 1px 12px rgba(8,5,1,0.45);
}
.hero-title-line { display: block; overflow: hidden; padding-bottom: 0.14em; }
.hero-title-line span { display: inline-block; transform: translateY(120%); }
.hero-title-line:nth-child(1) span { animation: slideUp 1s 0.5s var(--ease-elegant) forwards; }
.hero-title-line:nth-child(2) span { animation: slideUp 1s 0.68s var(--ease-elegant) forwards; font-style: italic; color: var(--champagne); }
.hero-sub {
  font-size: var(--text-lg); color: rgba(255,245,228,0.88); line-height: 1.9;
  max-width: 400px; margin-bottom: 52px; font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0; animation: fadeUp 0.9s 0.92s var(--ease-elegant) forwards;
  text-shadow: 0 1px 16px rgba(8,5,1,0.42);
}
.hero-actions {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1.12s var(--ease-elegant) forwards;
}
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; pointer-events: none;
  filter: drop-shadow(0 2px 22px rgba(0,0,0,0.85)) drop-shadow(0 0 10px rgba(0,0,0,0.60));
  transition: opacity 0.8s ease;
}
.hero-scroll-indicator.active { opacity: 1; pointer-events: auto; }
.hero-scroll-indicator.scroll-hidden { opacity: 0; pointer-events: none; }
.hero-scroll-text {
  font-size: 0.46rem; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,242,210,1); font-family: var(--font-sans); font-weight: 300;
}
.hero-scroll-line {
  width: 1.5px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,242,210,0.96) 0%, rgba(255,242,210,0.08) 100%);
  animation: scrollDrop 2.4s cubic-bezier(0.45,0,0.55,1) 2s infinite;
  transform-origin: top center;
}
.hero-scroll-chevron {
  animation: chevronFloat 2.4s cubic-bezier(0.45,0,0.55,1) 2s infinite;
}
.hero-scroll-chevron svg { display: block; }
.hero-scroll-chevron svg path { stroke: rgba(255,242,210,1); stroke-width: 1.5; }
@keyframes scrollDrop {
  0%   { opacity: 0.68; transform: scaleY(0.75); }
  50%  { opacity: 1;    transform: scaleY(1); }
  100% { opacity: 0.68; transform: scaleY(0.75); }
}
@keyframes chevronFloat {
  0%,100% { opacity: 0.80; transform: translateY(-3px); }
  50%      { opacity: 1;    transform: translateY(5px); }
}

/* ---- PAGE TRANSITIONS ---- */
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageIn 0.40s ease 0.04s both; }
@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { to { opacity:1; } }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--forest); color: var(--white);
  padding: 15px 34px; font-size: var(--text-xxs); letter-spacing: 3px;
  text-transform: uppercase; font-weight: 400; font-family: var(--font-sans);
  position: relative; overflow: hidden; z-index: 0; transition: color 0.38s ease;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--sienna);
  transform: translateX(-101%); transition: transform 0.42s var(--ease-elegant); z-index: -1;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--white); }
.btn-ghost-light {
  font-size: var(--text-xxs); letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.82); border-bottom: 1px solid rgba(255,255,255,0.38);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
  font-family: var(--font-sans); font-weight: 400;
}
.btn-ghost-light:hover { color: var(--sand); border-color: var(--sand); }
.btn-ghost-dark {
  font-size: var(--text-xxs); letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border);
  padding-bottom: 2px; transition: color 0.3s, border-color 0.3s;
  font-family: var(--font-sans); font-weight: 400; display: inline-block;
}
.btn-ghost-dark:hover { color: var(--dark); border-color: var(--sienna); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.8);
  padding: 13px 26px; font-size: var(--text-xxs); letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 400; font-family: var(--font-sans);
  transition: border-color 0.35s, color 0.35s;
}
.btn-outline-light:hover { border-color: var(--sand); color: var(--sand); }

/* --- SECTION BASE --- */
.section { padding: var(--section-y) var(--container-x); }
.section-inner { max-width: var(--content-w); margin: 0 auto; }
.eyebrow {
  font-size: var(--text-xxs); letter-spacing: 5px; text-transform: uppercase;
  font-weight: 400; color: var(--sienna); display: block; margin-bottom: 18px;
}
.eyebrow--light { color: var(--sand); }
.section-title {
  font-family: var(--font-serif); font-size: var(--text-4xl);
  font-weight: 300; line-height: 1.08; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--sienna); }
.section-title--light { color: var(--white); }
.accent-rule { width: 36px; height: 1px; background: var(--sienna); display: block; margin: 28px 0; }
.section-link {
  font-size: var(--text-xxs); letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sienna); border-bottom: 1px solid var(--sienna); padding-bottom: 2px;
  font-weight: 400; white-space: nowrap; transition: color 0.25s, border-color 0.25s;
}
.section-link:hover { color: var(--dark); border-color: var(--dark); }

/* --- PARTNERS --- */
.partners {
  background: var(--cream); padding: 28px 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.partners-track {
  display: flex; align-items: center; gap: 72px;
  animation: ticker 30s linear infinite; width: max-content;
}
.partners-track img {
  height: 28px; width: auto; object-fit: contain;
  filter: brightness(0) saturate(100%); flex-shrink: 0;
  opacity: 0.55; transition: opacity 0.35s;
}
.partners-track img:hover { opacity: 0.9; }
.partner-belmond { height: 42px !important; }
.partner-wordmark {
  font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 4.5px;
  text-transform: uppercase; color: var(--dark); opacity: 0.55;
  white-space: nowrap; flex-shrink: 0; transition: opacity 0.35s;
  font-weight: 300;
}
.partner-wordmark:hover { opacity: 0.9; }
@keyframes ticker { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* --- MANIFESTO --- */
.manifesto-section { background: var(--ivory); }
.manifesto-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(60px,9vw,140px); align-items: start;
}
.manifesto-pull { position: sticky; top: 120px; }
.manifesto-quote {
  font-family: var(--font-serif); font-size: clamp(1.9rem,3vw,3.2rem);
  font-weight: 300; line-height: 1.18; color: var(--dark);
  letter-spacing: -0.02em; margin-top: 24px; border: none; padding: 0;
}
.manifesto-quote em { font-style: italic; color: var(--sienna); }
.manifesto-text {
  font-size: var(--text-md); color: var(--muted); line-height: 2.05;
  margin-bottom: clamp(36px,4vw,52px);
}
.manifesto-tenets { border-top: 1px solid var(--border); }
.manifesto-tenet {
  padding: clamp(22px,2.5vw,30px) 0;
  border-bottom: 1px solid var(--border);
}
.manifesto-tenet-title {
  font-family: var(--font-serif); font-size: clamp(1rem,1.25vw,1.2rem);
  font-weight: 400; font-style: italic; color: var(--dark);
  display: block; margin-bottom: 10px;
}
.manifesto-tenet-desc { font-size: var(--text-sm); color: var(--muted); line-height: 1.9; }

/* --- INTERSTITIAL --- */
.interstitial-dark {
  background: var(--forest);
  padding: clamp(40px,6vw,72px) var(--container-x);
  overflow: hidden;
}
.interstitial-inner {
  max-width: var(--content-w); margin: 0 auto;
  display: flex; align-items: center; gap: clamp(28px,4vw,56px);
}
.interstitial-rule { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.interstitial-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem,2.2vw,2.4rem);
  font-weight: 300; font-style: italic;
  color: var(--white); white-space: nowrap; letter-spacing: -0.01em;
}

/* --- EDITORIAL EXPERIENCES --- */
.exp-ed-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(36px,5vw,56px);
}
.exp-ed-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 360px 260px;
  gap: 8px;
}
.exp-ed-card {
  position: relative; overflow: hidden; display: block;
}
.exp-ed-card--large { grid-row: 1 / 3; }
.exp-ed-img {
  position: absolute; inset: 0;
}
.exp-ed-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-elegant);
}
.exp-ed-card:hover .exp-ed-img img { transform: scale(1.05); }
.exp-ed-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 50%, transparent 100%);
  transition: background 0.45s ease;
}
.exp-ed-card:hover .exp-ed-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.32) 60%, rgba(0,0,0,0.06) 100%);
}
.exp-ed-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(22px,3vw,40px);
}
.exp-ed-num {
  font-family: var(--font-sans); font-size: 0.42rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); display: block; margin-bottom: 8px;
}
.exp-ed-title {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 400; color: var(--white); line-height: 1.15;
  margin-bottom: 12px; letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.exp-ed-card--large .exp-ed-title { font-size: clamp(2.2rem, 3.8vw, 3.8rem); }
.exp-ed-desc {
  font-size: var(--text-sm); color: rgba(255,255,255,0.78);
  line-height: 1.8; margin-bottom: 18px;
  max-width: 340px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.exp-ed-card:hover .exp-ed-desc { opacity: 1; transform: translateY(0); }
.exp-ed-link {
  font-size: 0.54rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sand); display: inline-block;
  transition: transform 0.3s ease;
}
.exp-ed-card:hover .exp-ed-link { transform: translateX(7px); }

/* --- PROMISE / PHILOSOPHY --- */
.promise-section { background: var(--ivory); }
.promise-intro { margin-bottom: clamp(52px,8vw,96px); max-width: 800px; }
.promise-headline {
  font-family: var(--font-serif); font-size: clamp(2.2rem,3.5vw,3.8rem);
  font-weight: 300; line-height: 1.12; color: var(--dark);
  margin-top: 20px; letter-spacing: -0.022em;
}
.promise-headline em { font-style: italic; color: var(--sienna); }
.promise-tenets { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border); }
.promise-tenet {
  padding: clamp(36px,4vw,56px) clamp(28px,3vw,52px) clamp(36px,4vw,56px) 0;
  border-right: 1px solid var(--border); transition: background 0.4s ease;
}
.promise-tenet:first-child { padding-left: 0; }
.promise-tenet + .promise-tenet { padding-left: clamp(28px,3vw,52px); }
.promise-tenet:last-child { border-right: none; padding-right: 0; }
.promise-tenet:hover { background: transparent; }
.promise-tenet-title {
  font-family: var(--font-serif); font-size: clamp(1.15rem,1.5vw,1.5rem);
  font-weight: 300; font-style: italic; color: var(--dark);
  display: block; margin-bottom: 16px; line-height: 1.3;
}
.promise-tenet p { font-size: var(--text-sm); color: var(--muted); line-height: 2; }

/* --- DESTINATIONS --- */
.destinations-section { background: var(--cream); }
.dest-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.dest-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; grid-template-rows: 360px 240px; gap: 10px; }
.dest-card { position: relative; overflow: hidden; }
.dest-card:first-child { grid-row: 1/3; }
.dest-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-elegant); }
.dest-card:hover .dest-card-img { transform: scale(1.06); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%); }
.dest-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.dest-card:first-child .dest-card-info { padding: 40px; }
.dest-card-region { font-size: 0.56rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--champagne); display: block; margin-bottom: 7px; font-weight: 400; }
.dest-card-name { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--white); }
.dest-card:first-child .dest-card-name { font-size: var(--text-3xl); }
.dest-card-explore { display: block; font-size: 0.56rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sand); margin-top: 10px; opacity: 0; transform: translateY(8px); transition: opacity 0.35s, transform 0.35s; }
.dest-card:hover .dest-card-explore { opacity: 1; transform: translateY(0); }

/* --- PROCESS --- */
.process-section { background: var(--cream); }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: clamp(48px,6vw,72px); }
.process-intro { font-size: var(--text-md); color: var(--muted); line-height: 1.9; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.process-step { background: var(--cream); padding: clamp(28px,3vw,44px); transition: background 0.4s ease; }
.process-step:hover { background: var(--white); }
.process-num { font-family: var(--font-serif); font-size: var(--text-4xl); font-weight: 300; color: var(--border); line-height: 1; display: block; margin-bottom: 20px; transition: color 0.4s ease; }
.process-step:hover .process-num { color: var(--champagne); }
.process-step h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); margin-bottom: 12px; }
.process-step p { font-size: var(--text-sm); color: var(--muted); line-height: 1.9; }

/* --- EXPERIENCES --- */
.exp-section { background: var(--ivory); }
.exp-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: clamp(48px,6vw,72px); }
.exp-header p { font-size: var(--text-md); color: var(--muted); line-height: 1.9; }
.exp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.exp-card { cursor: pointer; }
.exp-card-img { height: 340px; overflow: hidden; margin-bottom: 22px; }
.exp-card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.8s var(--ease-elegant); }
.exp-card:hover .exp-card-img img { transform: scale(1.07); }
.exp-card h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); margin-bottom: 10px; }
.exp-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.exp-card-arrow { font-size: 0.58rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sienna); display: inline-block; transition: transform 0.3s ease; font-weight: 400; }
.exp-card:hover .exp-card-arrow { transform: translateX(8px); }

/* --- JOURNAL PREVIEW --- */
.journal-section { background: var(--cream); }
.journal-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.journal-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 10px; }
.journal-card { position: relative; overflow: hidden; background: var(--white); }
.journal-card:first-child { grid-row: 1/3; min-height: 560px; }
.journal-card-img { height: 260px; overflow: hidden; }
.journal-card:first-child .journal-card-img { position: absolute; inset: 0; height: 100%; }
.journal-card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.9s var(--ease-elegant); }
.journal-card:hover .journal-card-img img { transform: scale(1.05); }
.journal-card-body { padding: 28px; }
.journal-card:first-child .journal-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 36px;
  background: linear-gradient(to top, rgba(0,0,0,0.74) 0%, transparent 100%);
}
.journal-card-category { font-size: 0.56rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sienna); display: block; margin-bottom: 10px; font-weight: 400; }
.journal-card:first-child .journal-card-category { color: var(--sand); }
.journal-card h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.journal-card:first-child h3 { font-size: var(--text-2xl); color: var(--white); }
.journal-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.85; }
.journal-card:first-child p { color: rgba(255,255,255,0.7); }

/* --- TESTIMONIALS --- */
/* In-article figures (Journal) */
.article-fig { margin: 40px 0; }
.article-fig img { width: 100%; height: auto; display: block; border-radius: 3px; }
.article-fig figcaption { font-size: 0.5rem; letter-spacing: 2px; text-transform: uppercase; color: var(--stone); margin-top: 10px; text-align: center; }

/* Testimonial image cards (photo + quote) — shared layout */
.test-featured { background: var(--cream); }
.test-featured-inner { max-width: var(--content-w); margin: 0 auto; }
.test-featured-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.test-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.test-feature-card { background: var(--cream); overflow: hidden; display: flex; flex-direction: column; transition: background 0.35s ease; }
.test-feature-card:hover { background: var(--white); }
.test-feature-img { height: 230px; overflow: hidden; }
.test-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
.test-feature-card:hover .test-feature-img img { transform: scale(1.06); }
.test-feature-body { padding: clamp(28px,3vw,40px); flex: 1; display: flex; flex-direction: column; }
.test-feature-trip { font-size: var(--text-xxs); letter-spacing: 3px; text-transform: uppercase; color: var(--sienna); display: block; margin-bottom: 16px; }
.test-feature-quote { font-family: var(--font-serif); font-size: var(--text-md); font-weight: 300; color: var(--dark); line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 24px; }
.test-feature-client { display: flex; align-items: center; gap: 12px; }
.test-feature-initials { width: 36px; height: 36px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.55rem; letter-spacing: 1px; color: var(--muted); flex-shrink: 0; }
.test-feature-name { font-size: var(--text-sm); color: var(--dark); font-weight: 400; }
.test-feature-origin { font-size: var(--text-xxs); letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
@media (max-width: 960px) { .test-cards-grid { grid-template-columns: 1fr; } .test-featured-header { flex-direction: column; align-items: flex-start; gap: 16px; } }

.test-section { background: var(--cream); }
.test-header { margin-bottom: clamp(36px,5vw,56px); display: flex; justify-content: space-between; align-items: flex-end; }
.test-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
}
.test-card {
  padding: clamp(28px,3vw,44px);
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--cream);
  transition: background 0.35s ease;
  position: relative; overflow: hidden;
}
.test-card:last-child { border-right: none; }
.test-card:hover { background: var(--white); }
.test-mark {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(4.5rem,6vw,7.5rem);
  line-height: 0.75; color: var(--sienna); opacity: 0.18;
  display: block; margin-bottom: 12px; user-select: none;
}
.test-quote {
  font-family: var(--font-serif); font-size: clamp(1rem,1.25vw,1.3rem);
  font-style: italic; font-weight: 300; line-height: 1.72;
  color: var(--dark); flex: 1; margin-bottom: 28px;
}
.test-footer {
  border-top: 1px solid var(--border);
  padding-top: 18px; display: flex; flex-direction: column; gap: 6px;
}
.test-dest {
  font-family: var(--font-sans); font-size: 0.5rem;
  letter-spacing: 2.6px; text-transform: uppercase; color: var(--sienna);
}
.test-name {
  font-family: var(--font-sans); font-size: 0.48rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--stone);
}

/* --- FOUNDERS --- */
.founders-section { background: linear-gradient(135deg, #1E2A24 0%, #28382F 50%, #1E2A24 100%); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--content-w); margin: 0 auto; }
.founders-img { position: relative; min-height: 580px; overflow: hidden; }
.founders-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; filter: brightness(1.12); transition: transform 0.9s var(--ease-elegant); }
.founders-section:hover .founders-img img { transform: scale(1.03); }
.founders-caption { position: absolute; bottom: 28px; left: 28px; z-index: 2; font-size: 0.5rem; letter-spacing: 3px; text-transform: uppercase; color: var(--champagne); }
.founders-content { padding: clamp(48px,6vw,80px) clamp(36px,5vw,68px); display: flex; flex-direction: column; justify-content: center; }
.founders-title { font-family: var(--font-serif); font-size: var(--text-3xl); font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 28px; }
.founders-title em { font-style: italic; color: var(--sand); }
.founders-text { font-size: var(--text-sm); color: rgba(255,255,255,0.6); line-height: 1.95; margin-bottom: 16px; }
.founders-text strong { color: rgba(255,255,255,0.9); font-weight: 400; }
.founders-divider { width: 36px; height: 1px; background: var(--sienna); display: block; margin: 28px 0; }
.founders-signature { font-family: var(--font-serif); font-size: 1.5rem; font-style: italic; color: var(--sand); margin-bottom: 36px; display: block; }

/* --- PRESS --- */
.press-section { background: var(--cream); padding: clamp(56px,7vw,90px) var(--container-x); }
.press-inner { max-width: var(--content-w); margin: 0 auto; }
.press-header { display: flex; align-items: center; gap: 28px; margin-bottom: 36px; }
.press-rule { flex: 1; height: 1px; background: var(--border); }
.press-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; margin-bottom: 44px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.press-logo-serif { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 400; font-style: italic; color: var(--dark); letter-spacing: 5px; opacity: 0.65; transition: opacity 0.25s; }
.press-logo-serif:hover { opacity: 1; }
.press-logo-sans { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 400; letter-spacing: 4.5px; text-transform: uppercase; color: var(--dark); opacity: 0.6; transition: opacity 0.25s; line-height: 1.3; }
.press-logo-sans span { display: block; font-size: 0.5rem; letter-spacing: 3px; }
.press-logo-sans:hover { opacity: 1; }
.press-quotes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.press-quote-card { background: var(--white); padding: clamp(32px,4vw,52px); transition: background 0.35s ease; }
.press-quote-card:hover { background: var(--cream); }
.press-source { font-size: 0.6rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sienna); font-weight: 400; margin-bottom: 18px; display: block; }
.press-quote-text { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 300; font-style: italic; line-height: 1.75; color: var(--dark); }

/* --- CTA SECTION --- */
.cta-section { position: relative; padding: clamp(80px,15vw,160px) var(--container-x); text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: -15% 0; background-size: cover; background-position: center; will-change: transform; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.56); }
.cta-inner { position: relative; z-index: 2; max-width: var(--text-w); margin: 0 auto; }
.cta-title { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; margin-bottom: 24px; }
.cta-title em { font-style: italic; color: var(--sand); }
.cta-subtitle { font-size: var(--text-md); color: rgba(255,255,255,0.68); line-height: 1.9; margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-rule { width: 36px; height: 1px; background: var(--sand); margin: 24px auto; }

/* --- FOOTER --- */
.footer { background: var(--forest); padding: clamp(56px,7vw,80px) var(--container-x) 32px; }
.footer-inner { max-width: var(--content-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(32px,4vw,56px); margin-bottom: clamp(48px,6vw,64px); }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.375rem; color: var(--white); letter-spacing: 1.5px; display: block; }
.footer-brand-tag { font-size: 0.42rem; letter-spacing: 5px; text-transform: uppercase; color: var(--sand); margin-top: 3px; display: block; margin-bottom: 20px; }
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.44); line-height: 1.9; max-width: 240px; }
.footer-contacts { margin-top: 20px; display: flex; flex-direction: column; gap: 7px; }
.footer-contact-link { font-size: 0.875rem; color: rgba(255,255,255,0.44); transition: color 0.25s; }
.footer-contact-link:hover { color: var(--sand); }
.footer-col-title { font-size: 0.56rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sand); margin-bottom: 22px; font-weight: 400; display: block; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.44); margin-bottom: 11px; transition: color 0.25s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.6rem; color: rgba(255,255,255,0.27); letter-spacing: 1px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s; }
.social-link:hover { border-color: var(--sand); }
.social-link svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.38); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.social-link:hover svg { stroke: var(--sand); }

/* --- CONTACT PAGE --- */
.contact-hero { background: linear-gradient(160deg, #1E2A24 0%, #28382F 60%, #1E2A24 100%); padding: clamp(120px,18vw,180px) var(--container-x) clamp(80px,12vw,120px); }
.contact-hero-inner { max-width: var(--content-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.contact-hero h1 { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; }
.contact-hero h1 em { font-style: italic; color: var(--sand); }
.contact-hero p { font-size: var(--text-md); color: rgba(255,255,255,0.6); line-height: 1.9; }
.contact-form-section { background: var(--ivory); padding: clamp(60px,10vw,100px) var(--container-x); }
.contact-form-inner { max-width: 800px; margin: 0 auto; }
.form-group { margin-bottom: 36px; }
.form-label { display: block; font-size: var(--text-xxs); letter-spacing: 3px; text-transform: uppercase; color: var(--sienna); margin-bottom: 12px; font-weight: 400; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border);
  padding: 12px 0; font-family: var(--font-sans); font-size: var(--text-base); font-weight: 300;
  color: var(--dark); outline: none; transition: border-color 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--forest); }
.form-textarea { resize: none; height: 120px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23314238' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; padding-right: 20px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-submit { display: flex; align-items: center; justify-content: space-between; margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); }
.form-note { font-size: var(--text-sm); color: var(--stone); max-width: 320px; line-height: 1.7; }

/* --- ABOUT PAGE --- */
.about-hero { background: linear-gradient(160deg, #1E2A24 0%, #28382F 60%, #1E2A24 100%); padding: clamp(120px,18vw,180px) var(--container-x) clamp(80px,12vw,120px); text-align: center; }
.about-hero h1 { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; max-width: 700px; margin: 0 auto; }
.about-hero h1 em { font-style: italic; color: var(--sand); }
.about-story { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-img { position: relative; overflow: hidden; }
.about-story-img img { width: 100%; height: 640px; object-fit: cover; object-position: center 10%; }
.about-story-text h2 { font-family: var(--font-serif); font-size: var(--text-3xl); font-weight: 300; color: var(--dark); line-height: 1.2; margin-bottom: 28px; }
.about-story-text h2 em { font-style: italic; color: var(--sienna); }
.about-story-text p { font-size: var(--text-md); color: var(--muted); line-height: 1.95; margin-bottom: 18px; }
.about-values { background: var(--cream); }
.about-values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); }
.about-value { background: var(--cream); padding: clamp(36px,4vw,52px); transition: background 0.4s; }
.about-value:hover { background: var(--white); }
.about-value h3 { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 300; color: var(--dark); margin-bottom: 14px; }
.about-value h3 em { font-style: italic; color: var(--sienna); }
.about-value p { font-size: var(--text-sm); color: var(--muted); line-height: 1.9; }

/* --- DESTINATIONS PAGE --- */
.dest-page-hero { background: linear-gradient(160deg, #1E2A24 0%, #28382F 60%, #1E2A24 100%); padding: clamp(120px,18vw,180px) var(--container-x) clamp(80px,12vw,120px); }
.dest-page-hero-inner { max-width: var(--content-w); margin: 0 auto; }
.dest-page-hero h1 { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; max-width: 600px; }
.dest-page-hero h1 em { font-style: italic; color: var(--sand); }
.dest-page-hero p { font-size: var(--text-md); color: rgba(255,255,255,0.6); line-height: 1.9; max-width: 480px; margin-top: 24px; }
.dest-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.dest-full-card { position: relative; overflow: hidden; height: 440px; }
.dest-full-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-elegant); }
.dest-full-card:hover .dest-full-card-img { transform: scale(1.06); }
.dest-full-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%); }
.dest-full-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
.dest-full-card-region { font-size: 0.54rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--champagne); display: block; margin-bottom: 7px; }
.dest-full-card-name { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 400; color: var(--white); display: block; margin-bottom: 8px; }
.dest-full-card-explore { font-size: 0.54rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sand); opacity: 0; transform: translateY(8px); transition: opacity 0.35s, transform 0.35s; display: block; }
.dest-full-card:hover .dest-full-card-explore { opacity: 1; transform: translateY(0); }

/* --- JOURNAL PAGE --- */
.journal-page-hero { background: var(--noir); padding: clamp(120px,18vw,180px) var(--container-x) clamp(80px,12vw,120px); text-align: center; }
.journal-page-hero h1 { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.08; }
.journal-page-hero h1 em { font-style: italic; color: var(--sand); }
.journal-page-hero p { font-size: var(--text-md); color: rgba(255,255,255,0.6); line-height: 1.9; max-width: 480px; margin: 24px auto 0; }
.journal-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.journal-full-card { background: var(--white); overflow: hidden; }
.journal-full-card-img { height: 280px; overflow: hidden; }
.journal-full-card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.8s var(--ease-elegant); }
.journal-full-card:hover .journal-full-card-img img { transform: scale(1.06); }
.journal-full-card-body { padding: 28px; }
.journal-full-card-category { font-size: 0.54rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sienna); display: block; margin-bottom: 10px; }
.journal-full-card h2 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); line-height: 1.3; margin-bottom: 12px; }
.journal-full-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.85; margin-bottom: 16px; }

/* --- GSAP INIT STATES --- */
.fade-up { opacity: 0; transform: translateY(38px); }
.fade-left { opacity: 0; transform: translateX(-38px); }
.fade-right { opacity: 0; transform: translateX(38px); }
.fade-in { opacity: 0; }
.scale-in { opacity: 0; transform: scale(0.95); }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .dest-full-grid { grid-template-columns: repeat(2,1fr); }
  .journal-full-grid { grid-template-columns: repeat(2,1fr); }
  .manifesto-inner { gap: clamp(40px,6vw,80px); }
  .exp-ed-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 240px; }
}
@media (max-width: 960px) {
  .nav-center { display: none; }
  .nav-hamburger { display: flex; }
  .promise-tenets { grid-template-columns: 1fr; }
  .promise-tenet { border-right: none; border-bottom: 1px solid var(--border); padding-left: 0 !important; padding-right: 0 !important; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card { height: 240px; }
  .dest-card:first-child { grid-column: 1/3; grid-row: auto; height: 320px; }
  .process-header { grid-template-columns: 1fr; gap: 24px; }
  .exp-header { grid-template-columns: 1fr; gap: 24px; }
  .exp-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .exp-card-img { height: 240px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card:first-child { grid-row: auto; min-height: 0; }
  .journal-card:first-child .journal-card-img { position: relative; height: 320px; inset: auto; }
  .journal-card:first-child .journal-card-body { position: relative; background: none; }
  .journal-card:first-child h3 { color: var(--dark); font-size: var(--text-xl); }
  .journal-card:first-child p { color: var(--muted); }
  .journal-card:first-child .journal-card-category { color: var(--sienna); }
  .test-grid { grid-template-columns: 1fr; }
  .test-card { border-right: none; border-bottom: 1px solid var(--border); }
  .test-card:last-child { border-bottom: none; }
  .founders-grid { grid-template-columns: 1fr; }
  .founders-img { min-height: 420px; }
  .press-quotes-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
  .about-story-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .dest-full-grid { grid-template-columns: 1fr 1fr; }
  /* Manifesto */
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-pull { position: static; }
  /* Interstitial */
  .interstitial-text { white-space: normal; font-size: clamp(1.2rem,4.5vw,1.8rem); }
  /* Editorial experiences */
  .exp-ed-header { flex-wrap: wrap; gap: 16px; }
  .exp-ed-grid { grid-template-columns: 1fr; grid-template-rows: 380px 260px 260px; }
  .exp-ed-card--large { grid-row: auto; }
  .exp-ed-desc { opacity: 1; transform: none; }
}
/* --- DESTINATION DETAIL PAGES --- */
.dd-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.dd-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.dd-hero:hover .dd-hero-img { transform: scale(1.03); }
.dd-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,8,4,0.88) 0%, rgba(10,8,4,0.42) 45%, rgba(10,8,4,0.12) 100%),
    linear-gradient(to right, rgba(10,8,4,0.55) 0%, rgba(10,8,4,0.2) 50%, transparent 80%);
}
.dd-hero-content {
  position: relative; z-index: 2;
  padding: clamp(48px,7vw,80px) var(--container-x);
  max-width: var(--content-w); margin: 0 auto; width: 100%;
}
.dd-hero-region { font-size: 0.52rem; letter-spacing: 5px; text-transform: uppercase; color: var(--sand); display: block; margin-bottom: 16px; font-weight: 300; }
.dd-hero h1 { font-family: var(--font-serif); font-size: clamp(3rem,7vw,7.2rem); font-weight: 300; color: var(--white); line-height: 1.02; margin-bottom: 22px; letter-spacing: -0.02em; text-shadow: 0 2px 40px rgba(8,5,1,0.60), 0 1px 12px rgba(8,5,1,0.40); }
.dd-hero h1 em { font-style: italic; color: var(--sand); }
.dd-hero-tagline { font-size: var(--text-lg); color: rgba(255,255,255,0.7); line-height: 1.75; max-width: 480px; margin-bottom: 36px; font-weight: 300; }
.dd-hero-cta { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.9); padding: 14px 28px; font-size: 0.6rem; letter-spacing: 2.5px; text-transform: uppercase; transition: background 0.35s, border-color 0.35s; }
.dd-hero-cta:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }

.dd-intro { background: var(--ivory); padding: clamp(64px,10vw,120px) var(--container-x); }
.dd-intro-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.dd-intro-text { font-family: var(--font-serif); font-size: clamp(1.3rem,2vw,1.9rem); font-weight: 300; line-height: 1.75; color: var(--dark); letter-spacing: -0.01em; }
.dd-intro-text em { font-style: italic; color: var(--sienna); }
.dd-intro-rule { width: 36px; height: 1px; background: var(--sienna); margin: 36px auto 0; display: block; }

.dd-exp { background: var(--cream); padding: var(--section-y) var(--container-x); }
.dd-exp-inner { max-width: var(--content-w); margin: 0 auto; }
.dd-exp-header { margin-bottom: clamp(40px,5vw,60px); }
.dd-exp-header h2 { font-family: var(--font-serif); font-size: var(--text-4xl); font-weight: 300; color: var(--dark); line-height: 1.1; margin-top: 12px; }
.dd-exp-header h2 em { font-style: italic; color: var(--sienna); }
.dd-exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dd-exp-card { background: var(--white); overflow: hidden; }
.dd-exp-card-img { height: 280px; overflow: hidden; }
.dd-exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-elegant); }
.dd-exp-card:hover .dd-exp-card-img img { transform: scale(1.06); }
.dd-exp-card-body { padding: 28px; }
.dd-exp-card-label { font-size: 0.52rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--sienna); display: block; margin-bottom: 10px; }
.dd-exp-card h3 { font-family: var(--font-serif); font-size: var(--text-xl); font-weight: 400; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
.dd-exp-card p { font-size: var(--text-sm); color: var(--muted); line-height: 1.85; }

.dd-gallery { background: var(--ivory); padding: var(--section-y) var(--container-x); }
.dd-gallery-inner { max-width: var(--content-w); margin: 0 auto; }
.dd-gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 320px 260px; gap: 10px; }
.dd-gallery-grid-item { overflow: hidden; }
.dd-gallery-grid-item:first-child { grid-row: 1/3; }
.dd-gallery-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-elegant); }
.dd-gallery-grid-item:hover img { transform: scale(1.05); }

.dd-itin { background: var(--cream); padding: var(--section-y) var(--container-x); }
.dd-itin-inner { max-width: var(--content-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,8vw,100px); align-items: start; }
.dd-itin-header h2 { font-family: var(--font-serif); font-size: var(--text-4xl); font-weight: 300; color: var(--dark); line-height: 1.1; margin: 12px 0 20px; }
.dd-itin-header h2 em { font-style: italic; color: var(--sienna); }
.dd-itin-header p { font-size: var(--text-md); color: var(--muted); line-height: 1.95; }
.dd-itin-days { display: flex; flex-direction: column; gap: 0; }
.dd-itin-day { display: flex; gap: 20px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.dd-itin-day:first-child { border-top: 1px solid var(--border); }
.dd-itin-day-num { font-family: var(--font-serif); font-size: 0.72rem; color: var(--sienna); letter-spacing: 1px; flex-shrink: 0; width: 40px; padding-top: 3px; }
.dd-itin-day-text h4 { font-family: var(--font-serif); font-size: var(--text-lg); font-weight: 400; color: var(--dark); margin-bottom: 4px; }
.dd-itin-day-text p { font-size: var(--text-sm); color: var(--muted); line-height: 1.7; }

/* ─── BREADCRUMB (overlays hero, below fixed nav) ────────────────────────── */
.breadcrumb-nav {
  position: absolute; top: 100px; left: 0; right: 0; z-index: 3;
  padding: 0 var(--container-x); max-width: var(--content-w); margin: 0 auto;
}
.breadcrumb-nav a, .breadcrumb-nav span.bc-current {
  font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.55); transition: color 0.25s; }
.breadcrumb-nav a:hover { color: var(--sand); }
.breadcrumb-nav .bc-sep { margin: 0 8px; color: rgba(255,255,255,0.3); font-size: 0.6rem; }
.breadcrumb-nav .bc-current { color: rgba(255,255,255,0.85); }

/* ─── RELATED DESTINATIONS / EXPERIENCES ─────────────────────────────────── */
.dd-related { background: var(--ivory); padding: var(--section-y) var(--container-x); }
.dd-related-inner { max-width: var(--content-w); margin: 0 auto; }
.dd-related-header { margin-bottom: clamp(32px,4vw,48px); }
.dd-related-header h2 { font-family: var(--font-serif); font-size: var(--text-3xl); font-weight: 300; color: var(--dark); line-height: 1.1; margin-top: 10px; }
.dd-related-header h2 em { font-style: italic; color: var(--sienna); }
.dd-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dd-related-card { position: relative; display: block; height: 260px; overflow: hidden; }
.dd-related-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.dd-related-card:hover img { transform: scale(1.06); }
.dd-related-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,4,0.78) 0%, rgba(10,8,4,0.1) 60%); }
.dd-related-card-label { position: absolute; left: 20px; bottom: 18px; z-index: 2; color: var(--white); font-family: var(--font-serif); font-size: var(--text-lg); font-weight: 400; }
@media (max-width: 860px) {
  .dd-related-grid { grid-template-columns: 1fr; }
  .breadcrumb-nav { top: 88px; }
}

/* ─── DESTINATION FAQ ─────────────────────────────────────────────────────── */
.dd-faq { background: var(--white); padding: var(--section-y) var(--container-x); }
.dd-faq-inner { max-width: 760px; margin: 0 auto; }
.dd-faq-header { text-align: center; max-width: 560px; margin: 0 auto clamp(40px,5vw,56px); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; cursor: pointer; gap: 20px; }
.faq-question h3 { font-family: var(--font-serif); font-size: var(--text-lg); font-weight: 400; color: var(--dark); }
.faq-toggle { width: 28px; height: 28px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.3s, background 0.3s; }
.faq-toggle svg { width: 12px; height: 12px; stroke: var(--sienna); fill: none; stroke-width: 1.5; transition: transform 0.4s var(--ease-elegant); }
.faq-item.open .faq-toggle { background: var(--sienna); border-color: var(--sienna); }
.faq-item.open .faq-toggle svg { stroke: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-elegant); }
.faq-answer-inner { padding-bottom: 24px; font-size: var(--text-sm); color: var(--muted); line-height: 1.9; }
.faq-item.open .faq-answer { max-height: 300px; }

.dd-cta { position: relative; padding: clamp(80px,14vw,150px) var(--container-x); text-align: center; overflow: hidden; }
.dd-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dd-cta-overlay { position: absolute; inset: 0; background: rgba(12,9,5,0.64); }
.dd-cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.dd-cta h2 { font-family: var(--font-serif); font-size: var(--text-5xl); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em; }
.dd-cta h2 em { font-style: italic; color: var(--sand); }
.dd-cta p { font-size: var(--text-md); color: rgba(255,255,255,0.62); line-height: 1.9; margin-bottom: 44px; }

@media (max-width: 960px) {
  .dd-exp-grid { grid-template-columns: 1fr 1fr; }
  .dd-itin-inner { grid-template-columns: 1fr; gap: 40px; }
  .dd-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dd-gallery-grid-item:first-child { grid-row: auto; }
  .dd-gallery-grid-item { height: 260px; }
}
@media (max-width: 640px) {
  .dd-exp-grid { grid-template-columns: 1fr; }
  .dd-hero h1 { font-size: clamp(2.8rem,9vw,4rem); }
}

/* --- SCROLL REVEAL --- */
[id] { scroll-margin-top: 90px; }
/* JS adds .sr-init to each element before observing it — no JS = always visible */
.sr-init {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease-elegant),
    transform 0.85s var(--ease-elegant);
}
.sr-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 640px) {
  .hero-content { padding: 0 24px; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: auto; }
  .exp-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .dest-header, .test-header, .journal-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dest-full-grid, .journal-full-grid { grid-template-columns: 1fr; }
  .dest-full-card { height: 320px; }
  .promise-tenets { grid-template-columns: 1fr; }
  .promise-tenet { border-right: none; padding-left: 0 !important; padding-right: 0 !important; }
}

/* ================================================
   EXPERIENCES HUB PAGE  (exphub-*)
   ================================================ */

.exphub-hero {
  position: relative; height: 72vh; min-height: 520px;
  display: flex; align-items: center; overflow: hidden;
  background: #17211B;
}
.exphub-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.38) saturate(0.85);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.exphub-hero:hover .exphub-hero-img { transform: scale(1.0); }
.exphub-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,5,2,0.90) 0%, rgba(8,5,2,0.10) 50%),
    linear-gradient(to right, rgba(8,5,2,0.30) 0%, transparent 65%);
}
.exphub-hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--container-x);
  max-width: var(--content-w); margin: 0 auto; width: 100%;
}
.exphub-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-weight: 300; color: var(--white);
  line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 26px; margin-top: 20px;
}
.exphub-hero h1 em { font-style: italic; color: var(--sand); }
.exphub-hero-sub {
  font-size: var(--text-lg); color: rgba(255,245,228,0.70);
  line-height: 1.85; max-width: 460px; font-weight: 300;
}

/* Hub intro + grid */
.exphub-grid-section {
  background: var(--ivory); padding: var(--section-y) var(--container-x);
}
.exphub-grid-inner { max-width: var(--content-w); margin: 0 auto; }
.exphub-intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 1.75vw, 1.65rem);
  font-weight: 300; line-height: 1.82; color: var(--mid);
  max-width: 660px; margin-bottom: clamp(44px, 7vw, 88px);
}
.exphub-intro-text em { font-style: italic; color: var(--sienna); }

/* Primary 2-column editorial grid (3 cards: 1 tall + 2 stacked) */
.exphub-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px; margin-bottom: 10px;
}
/* Secondary 3-column row (3 equal cards) */
.exphub-grid-b {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px;
  gap: 10px;
}

.exphub-card {
  position: relative; overflow: hidden;
  display: block; cursor: pointer;
}
.exphub-card--tall { grid-row: 1 / 3; }
.exphub-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.95s var(--ease-elegant);
}
.exphub-card:hover .exphub-card-img { transform: scale(1.07); }
.exphub-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,5,2,0.94) 0%, rgba(8,5,2,0.55) 34%, rgba(8,5,2,0.12) 66%, rgba(8,5,2,0) 90%);
  transition: background 0.5s ease;
}
.exphub-card:hover .exphub-card-overlay {
  background: linear-gradient(to top, rgba(8,5,2,0.96) 0%, rgba(8,5,2,0.62) 34%, rgba(8,5,2,0.20) 66%, rgba(8,5,2,0) 90%);
}
.exphub-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(22px, 3vw, 40px);
}
.exphub-card-num {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: #D8C7AE; letter-spacing: 0.4px;
  display: block; margin-bottom: 7px; font-weight: 300; line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 0 10px rgba(0,0,0,0.7), 0 1px 16px rgba(0,0,0,0.6);
}
.exphub-card--tall .exphub-card-num { font-size: 1.6rem; }
.exphub-card h3 {
  font-family: var(--font-serif);
  font-size: 0.56rem;
  font-weight: 300; color: #D8C7AE; line-height: 1.4; margin-bottom: 0; letter-spacing: 0.4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 0 10px rgba(0,0,0,0.7), 0 1px 16px rgba(0,0,0,0.6);
}
.exphub-card h3 em { font-style: italic; color: #D8C7AE; }
.exphub-card--tall h3 { font-size: 0.6rem; }
.exphub-card-tag {
  font-size: 0.5rem; letter-spacing: 2.8px; text-transform: uppercase;
  color: rgba(255,242,210,0.62); display: block;
  font-weight: 300; line-height: 1.6; max-width: 260px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.exphub-card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.52rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sand); margin-top: 14px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.exphub-card:hover .exphub-card-arrow { opacity: 1; transform: translateY(0); }

/* Hub bottom CTA strip */
.exphub-cta-strip {
  background: var(--cream);
  padding: clamp(52px, 8vw, 88px) var(--container-x);
  text-align: center;
}
.exphub-cta-strip-inner { max-width: 560px; margin: 0 auto; }
.exphub-cta-strip h2 {
  font-family: var(--font-serif); font-size: var(--text-4xl);
  font-weight: 300; color: var(--dark); line-height: 1.1; margin: 16px 0 20px;
}
.exphub-cta-strip h2 em { font-style: italic; color: var(--sienna); }
.exphub-cta-strip p {
  font-size: var(--text-md); color: var(--muted);
  line-height: 1.9; margin-bottom: 36px;
}

/* ================================================
   EXPERIENCE DETAIL PAGES  (expd-*)
   ================================================ */

.expd-hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.expd-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.expd-hero:hover .expd-hero-img { transform: scale(1.03); }
.expd-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,5,2,0.90) 0%, rgba(8,5,2,0.26) 44%, rgba(8,5,2,0.05) 100%),
    linear-gradient(to right, rgba(8,5,2,0.28) 0%, transparent 60%);
}
.expd-hero-content {
  position: relative; z-index: 2;
  padding: clamp(52px, 7vw, 90px) var(--container-x);
  max-width: var(--content-w); margin: 0 auto; width: 100%;
}
.expd-hero-category {
  font-size: 0.5rem; letter-spacing: 5.5px; text-transform: uppercase;
  color: var(--sand); display: block; margin-bottom: 18px; font-weight: 300;
}
.expd-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 7rem);
  font-weight: 300; color: var(--white);
  line-height: 1.02; letter-spacing: -0.022em; margin-bottom: 22px;
}
.expd-hero h1 em { font-style: italic; color: var(--sand); }
.expd-hero-tagline {
  font-size: var(--text-lg); color: rgba(255,245,228,0.70);
  line-height: 1.75; max-width: 520px; margin-bottom: 38px; font-weight: 300;
}
.expd-hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.10); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.90);
  padding: 14px 28px; font-size: 0.6rem; letter-spacing: 2.5px;
  text-transform: uppercase; transition: background 0.35s, border-color 0.35s, color 0.35s;
}
.expd-hero-cta:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }

/* Narrative intro */
.expd-intro {
  background: var(--ivory); padding: clamp(72px, 12vw, 140px) var(--container-x);
}
.expd-intro-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.expd-intro-label {
  font-size: 0.5rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--sienna); display: block; margin-bottom: 28px;
}
.expd-intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1.32rem, 2.1vw, 2rem);
  font-weight: 300; line-height: 1.80; color: var(--dark); letter-spacing: -0.01em;
}
.expd-intro-text em { font-style: italic; color: var(--sienna); }
.expd-intro-rule { width: 36px; height: 1px; background: var(--sienna); margin: 42px auto 0; display: block; }

/* What makes it special */
.expd-special {
  background: var(--cream); padding: var(--section-y) var(--container-x);
}
.expd-special-inner { max-width: var(--content-w); margin: 0 auto; }
.expd-special-header { margin-bottom: clamp(40px, 5.5vw, 70px); }
.expd-special-header h2 {
  font-family: var(--font-serif); font-size: var(--text-4xl);
  font-weight: 300; color: var(--dark); line-height: 1.1; margin-top: 14px;
}
.expd-special-header h2 em { font-style: italic; color: var(--sienna); }
.expd-special-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}
.expd-special-point {
  background: var(--cream); padding: clamp(28px, 3.5vw, 48px) clamp(22px, 3vw, 38px);
  transition: background 0.4s ease;
}
.expd-special-point:hover { background: var(--white); }
.expd-special-num {
  font-family: var(--font-serif); font-size: var(--text-4xl);
  font-weight: 300; color: var(--border); line-height: 1;
  display: block; margin-bottom: 18px; transition: color 0.4s ease;
}
.expd-special-point:hover .expd-special-num { color: var(--champagne); }
.expd-special-point h4 {
  font-family: var(--font-serif); font-size: var(--text-lg);
  font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.expd-special-point p { font-size: var(--text-sm); color: var(--muted); line-height: 1.85; }

/* Experience flow / timeline */
.expd-flow {
  background: var(--ivory); padding: var(--section-y) var(--container-x);
}
.expd-flow-inner {
  max-width: var(--content-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px); align-items: start;
}
.expd-flow-header h2 {
  font-family: var(--font-serif); font-size: var(--text-4xl);
  font-weight: 300; color: var(--dark); line-height: 1.1; margin: 14px 0 24px;
}
.expd-flow-header h2 em { font-style: italic; color: var(--sienna); }
.expd-flow-header p { font-size: var(--text-md); color: var(--muted); line-height: 1.95; }
.expd-flow-steps { display: flex; flex-direction: column; }
.expd-flow-step {
  display: flex; gap: 24px; padding: 22px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.expd-flow-step:first-child { border-top: 1px solid var(--border); }
.expd-flow-step-num {
  font-family: var(--font-serif); font-size: 0.66rem;
  color: var(--sienna); letter-spacing: 1px;
  flex-shrink: 0; width: 36px; padding-top: 3px;
}
.expd-flow-step-text h4 {
  font-family: var(--font-serif); font-size: var(--text-lg);
  font-weight: 400; color: var(--dark); margin-bottom: 5px;
}
.expd-flow-step-text p { font-size: var(--text-sm); color: var(--muted); line-height: 1.75; }

/* Visual gallery */
.expd-gallery {
  background: var(--cream); padding: var(--section-y) var(--container-x);
}
.expd-gallery-inner { max-width: var(--content-w); margin: 0 auto; }
.expd-gallery-header { margin-bottom: 32px; }
.expd-gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 340px 240px;
  gap: 10px;
}
.expd-gallery-item { overflow: hidden; }
.expd-gallery-item:first-child { grid-row: 1 / 3; }
.expd-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-elegant);
}
.expd-gallery-item:hover img { transform: scale(1.05); }

/* Related experiences */
.expd-related {
  background: var(--ivory); padding: var(--section-y) var(--container-x);
}
.expd-related-inner { max-width: var(--content-w); margin: 0 auto; }
.expd-related-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px;
}
.expd-related-header h3 {
  font-family: var(--font-serif); font-size: var(--text-2xl);
  font-weight: 300; color: var(--dark);
}
.expd-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.expd-related-card {
  position: relative; height: 340px; overflow: hidden; display: block;
}
.expd-related-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.9s var(--ease-elegant);
}
.expd-related-card:hover img { transform: scale(1.06); }
.expd-related-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,5,2,0.80) 0%, transparent 56%);
}
.expd-related-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.expd-related-card-cat {
  font-size: 0.5rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--champagne); display: block; margin-bottom: 7px;
}
.expd-related-card h4 {
  font-family: var(--font-serif); font-size: var(--text-xl);
  font-weight: 400; color: var(--white); margin-bottom: 9px;
}
.expd-related-card-link {
  font-size: 0.52rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sand); opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s; display: block;
}
.expd-related-card:hover .expd-related-card-link { opacity: 1; transform: translateY(0); }

/* Experience detail CTA */
.expd-cta {
  position: relative; padding: clamp(88px, 14vw, 160px) var(--container-x);
  text-align: center; overflow: hidden;
}
.expd-cta-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.expd-cta-overlay { position: absolute; inset: 0; background: rgba(8,5,2,0.68); }
.expd-cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.expd-cta h2 {
  font-family: var(--font-serif); font-size: var(--text-5xl);
  font-weight: 300; color: var(--white); line-height: 1.1;
  margin-bottom: 24px; letter-spacing: -0.022em;
}
.expd-cta h2 em { font-style: italic; color: var(--sand); }
.expd-cta p {
  font-size: var(--text-md); color: rgba(255,255,255,0.62);
  line-height: 1.9; margin-bottom: 44px;
}

/* Responsive — Experiences */
@media (max-width: 1100px) {
  .expd-special-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .exphub-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 320px; }
  .exphub-card--tall { grid-row: auto; }
  .exphub-grid-b { grid-template-columns: 1fr 1fr; grid-template-rows: 280px; }
  .expd-flow-inner { grid-template-columns: 1fr; gap: 40px; }
  .expd-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .expd-gallery-item:first-child { grid-row: auto; }
  .expd-gallery-item { height: 260px; }
  .expd-related-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .expd-related-card { height: 280px; }
}
@media (max-width: 640px) {
  .exphub-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .exphub-grid .exphub-card { height: 320px; }
  .exphub-grid-b { grid-template-columns: 1fr; grid-template-rows: auto; }
  .exphub-grid-b .exphub-card { height: 280px; }
  .expd-special-grid { grid-template-columns: 1fr; }
  .expd-related-grid { grid-template-columns: 1fr; }
}

/* ================================================
   13-CATEGORY GRID LAYOUTS  (hub page)
   ================================================ */

/* Top section: 3 columns, 2 rows — first card tall (spans rows 1+2) */
.exphub-grid-a {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 10px; margin-bottom: 10px;
}
/* 4-column equal row */
.exphub-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px;
  gap: 10px; margin-bottom: 10px;
}
.exphub-grid-4:last-child { margin-bottom: 0; }

@media (max-width: 1100px) {
  .exphub-grid-a { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 260px; }
  .exphub-grid-a .exphub-card--tall { grid-row: auto; height: 260px; }
  .exphub-grid-4 { grid-template-columns: repeat(2, 1fr); grid-template-rows: 260px 260px; }
}
@media (max-width: 960px) {
  .exphub-grid-a { grid-template-columns: 1fr 1fr; }
  .exphub-grid-4 { grid-template-columns: repeat(2, 1fr); grid-template-rows: 240px 240px; }
}
@media (max-width: 640px) {
  .exphub-grid-a { grid-template-columns: 1fr; }
  .exphub-grid-a .exphub-card { height: 300px; }
  .exphub-grid-4 { grid-template-columns: 1fr; grid-template-rows: auto; }
  .exphub-grid-4 .exphub-card { height: 270px; }
}

/* ================================================================
   READABILITY LAYER — confort de lecture (typographie uniquement)
   ----------------------------------------------------------------
   Ajouté en fin de feuille : l'ordre source + la spécificité rendent
   ces règles prioritaires, y compris sur les <style> inline des articles.
   Ne modifie ni la structure, ni la mise en page, ni l'identité :
   uniquement taille, contraste (charcoal), interligne et mesure.
   Le terracotta (--sienna) reste réservé aux accents (em, filets,
   petits titres, liens) — le corps passe en charcoal --mid.
   ================================================================ */
:root {
  /* Corps de lecture : ~17px mobile → ~18px desktop */
  --text-read:    clamp(1.0625rem, 0.95rem + 0.45vw, 1.125rem);
  /* Microcopie de carte : plancher confortable ~15.5px → 16px */
  --text-read-sm: clamp(0.95rem, 0.9rem + 0.25vw, 1rem);
  /* Mesure de colonne ≈ 65–72 caractères */
  --measure:      66ch;
}

/* — Corps de lecture principal (récits, itinéraires, FAQ, articles) — */
.manifesto-text,
.process-intro,
.exp-header p,
.about-story-text p,
.dd-itin-header p,
.dd-itin-day-text p,
.faq-answer-inner,
.expd-flow-header p,
.expd-flow-step-text p,
body .article-col p {
  font-size: var(--text-read);
  color: var(--mid);
  line-height: 1.72;
}

/* Paragraphe d'accroche d'article : garde le charcoal foncé, légèrement agrandi */
body .article-col p.lead {
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.3rem);
  color: var(--dark);
  line-height: 1.65;
}

/* Colonne d'article : mesure resserrée (~70 caractères max) */
body .article-col { max-width: 660px; }

/* — Microcopie de carte / colonnes serrées : plancher lisible, même charcoal — */
.manifesto-tenet-desc,
.promise-tenet p,
.process-step p,
.exp-card p,
.journal-card p,
.journal-full-card p,
.about-value p,
.dd-exp-card p,
.expd-special-point p {
  font-size: var(--text-read-sm);
  color: var(--mid);
  line-height: 1.7;
}

/* — Intro de destination scindée en plusieurs paragraphes : respiration — */
.dd-intro-text + .dd-intro-text { margin-top: 1.05em; }

/* — Mesure : évite les lignes trop longues sur les intros pleine largeur — */
.dd-itin-header p,
.exp-header p,
.process-intro,
.manifesto-text { max-width: var(--measure); }
.exp-header p, .process-intro { margin-left: auto; margin-right: auto; }

/* — Contraste des textes clairs sur fonds sombres (photos / footer) — */
.dd-hero-tagline { color: rgba(255,255,255,0.86); }
.dd-cta p        { color: rgba(255,255,255,0.78); }
.cta-subtitle    { color: rgba(255,255,255,0.82); }
.footer-brand-desc { color: rgba(255,255,255,0.62); }

/* Confort tactile : sur mobile, interligne légèrement plus généreux */
@media (max-width: 640px) {
  .manifesto-text,
  .process-intro,
  .exp-header p,
  .about-story-text p,
  .dd-itin-header p,
  .dd-itin-day-text p,
  .faq-answer-inner,
  body .article-col p { line-height: 1.75; }
}

/* ── COOKIE CONSENT BANNER ───────────────────────────────────────────────── */
#st-cookie {
  position: fixed; bottom: -120px; left: 0; right: 0; z-index: 9999;
  background: #1E2A24; border-top: 1px solid rgba(216,199,174,0.18);
  padding: 18px clamp(24px,5vw,60px);
  transition: bottom 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
}
#st-cookie.st-cookie-visible { bottom: 0; }
.st-cookie-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.st-cookie-text { font-size: 0.82rem; color: rgba(255,255,255,0.58); line-height: 1.65; }
.st-cookie-text a { color: var(--champagne); text-decoration: underline; }
.st-cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.st-cookie-btn { font-size: 0.52rem; letter-spacing: 2.5px; text-transform: uppercase; padding: 10px 22px; border: 1px solid; cursor: pointer; transition: all 0.25s; font-family: var(--font-sans); background: none; }
.st-cookie-decline { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.42); }
.st-cookie-decline:hover { border-color: rgba(255,255,255,0.38); color: rgba(255,255,255,0.72); }
.st-cookie-accept { background: var(--forest); border-color: var(--forest); color: var(--white); }
.st-cookie-accept:hover { background: #314238; border-color: #314238; }
@media (max-width: 640px) {
  .st-cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .st-cookie-btns { width: 100%; }
  .st-cookie-btn { flex: 1; text-align: center; }
}

/* ── MOBILE TYPOGRAPHY — hero h1 secondaires ────────────────────────────── */
@media (max-width: 640px) {
  .about-hero h1,
  .contact-hero h1,
  .journal-page-hero h1,
  .dest-page-hero h1,
  .exphub-hero h1,
  .expd-hero h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
  }
  .dest-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .dest-hero p {
    font-size: 0.9rem;
    margin-top: 14px;
  }
}

/* ================================================================
   ÉDITORIAL / DIRECTION ARTISTIQUE
   Objectif : une identité de magazine de voyage, intemporelle —
   l'emphase se lit par la FORME (italique), pas par la couleur ;
   la numérotation devient un vrai geste éditorial (« N° » + chiffres
   bas-de-casse "oldstyle", tonalité bronze sourde). Ajouté en fin de
   feuille : prioritaire par ordre source + spécificité (y compris sur
   les <style> inline des articles via `body …`).
   ================================================================ */

/* — 3 · EMPHASE en CORPS de texte : terracotta CONSERVÉ, mais DROIT (romain).
   L'italique en pleine phrase faisait "accent IA" : on l'enlève, l'accent vient
   désormais de la couleur seule. Les titres/sous-titres gardent leur italique
   serif terracotta (geste d'affiche volontaire, ci-dessous rien n'est modifié). */
.dd-intro-text em,
.exphub-intro-text em,
.expd-intro-text em,
.manifesto-text em,
body .article-col p em,
body .article-col p.lead em {
  color: var(--sienna);
  font-style: normal;
}

/* Titres de SECTION / contenu : terracotta conservé, passage en DROIT (romain)
   pour un rendu épuré et cohérent. Seuls les GRANDS titres de héros gardent
   l'italique (un seul geste italique par page = signature, pas template). */
.section-title em,
.dd-exp-header h2 em,
.dd-itin-header h2 em,
.dd-related-header h2 em,
.expd-special-header h2 em,
.expd-flow-header h2 em,
.exphub-cta-strip h2 em,
.about-story-text h2 em,
.about-value h3 em,
.manifesto-quote em,
.promise-headline em,
body .story-text h2 em,
body .value-card h3 em,
body .pillar-card h3 em,
body .article-col h2 em,
body .dest-note h2 em,
body .dest-region-title em,
body .legal-col h2 em {
  font-style: normal;
}

/* — 2 · NUMÉROTATION ÉDITORIALE —
   Sections d'article : « N° 1 » en serif, chiffres oldstyle, bronze sourd. */
body .article-col h3 .art-num {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  color: var(--sienna);
  letter-spacing: 0.4px;
  margin-right: 14px;
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-feature-settings: "onum" 1, "pnum" 1;
}
body .article-col h3 .art-num::before {
  content: 'N°\00A0';
  font-size: 0.6em;
  letter-spacing: 1.5px;
  vertical-align: 0.12em;
  color: var(--sienna);
}
/* .art-loc (lieu, sous le titre) : bronze sourd plutôt que terracotta vif */
body .article-col h3 .art-loc { color: var(--sienna); }

/* Grands chiffres & repères (process, expériences, jours d'itinéraire) :
   chiffres oldstyle + tonalité sourde, cohérents avec le « N° ». */
.process-num,
.expd-special-num,
.dd-itin-day-num {
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-feature-settings: "onum" 1, "pnum" 1;
}
.dd-itin-day-num { color: var(--sienna); }

/* — Couverture des <style> INLINE spécifiques aux pages (À propos, expériences,
   destinations, légal, articles) : mêmes principes, spécificité renforcée (body …)
   pour surclasser les règles inline chargées après la feuille partagée. — */

/* (Les titres/sous-titres gardent leur italique serif terracotta d'origine.) */

/* Valeurs (À propos) : grand chiffre → « N° 01 » terracotta, chiffres oldstyle */
body .value-num {
  color: var(--sienna);
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-feature-settings: "onum" 1, "pnum" 1;
}
body .value-num::before {
  content: 'N°\00A0';
  font-size: 0.42em; letter-spacing: 2px; vertical-align: 0.28em;
}

/* Étapes d'approche (À propos) : label bronze, chiffres oldstyle */
body .approach-item-num {
  color: var(--sienna);
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-feature-settings: "onum" 1, "pnum" 1;
}

/* Statistiques (À propos) : chiffres oldstyle, survol bronze (au lieu de terracotta) */
body .stat-num {
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-feature-settings: "onum" 1, "pnum" 1;
}
body .stat-item:hover .stat-num { color: var(--sienna); }

/* ── Footer en vert forêt signature : textes faibles remontés pour l'AA ── */
.footer-col a,
.footer-contact-link { color: rgba(255,255,255,0.70); }
.footer-copy { color: rgba(255,255,255,0.52); }
.footer-brand-desc { color: rgba(255,255,255,0.68); }
.social-link svg { stroke: rgba(255,255,255,0.5); }

/* ── Héros des pages principales (accueil, destinations, expériences, à propos,
   journal) : accent dans la couleur précédente (« champagne » = sand, sur palette)
   et DROIT (sans italique). ── */
.hero-title-line:nth-child(2) span,
.exphub-hero h1 em,
body .dest-hero h1 em,
body .about-hero h1 em,
body .journal-hero h1 em {
  color: var(--sand);
  font-style: normal;
}

/* ── Aucun accent de héros / CTA / titre d'affiche en italique : tout en DROIT.
   (couleurs inchangées ; seule l'italique est retirée) ── */
.founders-title em,
.cta-title em,
.contact-hero h1 em,
.dest-page-hero h1 em,
.journal-page-hero h1 em,
.dd-hero h1 em,
.dd-cta h2 em,
.expd-hero h1 em,
.expd-cta h2 em,
.exphub-card h3 em,
body .article-hero h1 em,
body .journal-hero-article h2 em,
body .journal-newsletter h2 em,
body .dna-headline em {
  font-style: normal;
}
