/* ===== VARIABLES ===== */
:root {
  --bg:         #0c1123;
  --bg-section: #101628;
  --card-bg:    #151c2e;
  --card-alt:   #1a2240;
  --border:     rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text:       rgba(255,255,255,0.88);
  --text-light: rgba(255,255,255,0.48);
  --text-muted: rgba(255,255,255,0.32);
  --accent:     #e67e22;
  --accent2:    #e74c3c;
  --accent-blue:#3498db;
  --accent-green:#27ae60;
  --accent-teal: #1abc9c;
  --sand:       #f5e6c8;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 2px 12px rgba(0,0,0,0.3);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.5);
  --max-width:  820px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding-top: 58px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: #fff;
}

h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 0.5rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.55rem); margin: 2rem 0 0.75rem; }
h4 { font-size: 1.1rem; margin: 1.25rem 0 0.4rem; }

p { margin-bottom: 1rem; color: var(--text); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

strong { color: #fff; font-weight: 600; }
em { color: var(--text-light); font-style: italic; }

/* ===== TOP NAV ===== */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.topnav.scrolled {
  background: rgba(12, 17, 35, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}
.topnav-inner {
  display: flex;
  align-items: center;
  height: 58px;
  padding: 0 2rem;
  max-width: 1140px;
  margin: 0 auto;
  gap: 2rem;
}
.topnav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  white-space: nowrap;
}
.topnav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
}
.topnav-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 0.45rem 0.8rem;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  white-space: nowrap;
}
.topnav-links a::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0.8rem; right: 0.8rem;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  border-radius: 1px;
}
.topnav-links a:hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}
.topnav-links a.active-page {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}
.topnav-links a.active-page::after { transform: scaleX(1); }

.progress-bar {
  height: 2px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  width: 0%;
  transition: width 0.25s ease;
  border-radius: 1px;
}

.topnav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
  flex-shrink: 0;
}
.topnav-hamburger:hover { background: rgba(255,255,255,0.13); }
.topnav-hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 1px;
}

/* ===== OVERLAY MENU MOBILE ===== */
.nav-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: #0c1123;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.overlay-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1.15rem; cursor: pointer;
  transition: color 0.2s, background 0.2s; line-height: 1;
}
.overlay-close:hover { color: #fff; background: rgba(255,255,255,0.12); }
.overlay-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.1rem;
  text-align: center; padding: 2rem 1rem;
}
.overlay-nav a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 10vw, 3.75rem);
  font-weight: 700;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  line-height: 1.2; padding: 0.15rem 0;
  transition: color 0.2s; display: block;
}
.overlay-nav a:hover { color: rgba(255,255,255,0.85); }
.overlay-nav a.active-page { color: #fff; }

/* ===== PAGE WRAPPER & CONTENT ===== */
.page-wrapper {
  min-height: 100vh;
}
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
  background: linear-gradient(160deg, #0c1123 0%, #1a1a3e 40%, #0c2340 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(230,126,34,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(52,152,219,0.07) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230,126,34,0.12);
  border: 1px solid rgba(230,126,34,0.25);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero-poem {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-light);
}
.hero-meta-item .icon { font-size: 1rem; }
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  border: none;
  background: none;
}
.hero-scroll:hover { color: var(--text-light); text-decoration: none; }

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.section:last-of-type { border-bottom: none; }

.section-header {
  margin-bottom: 2.5rem;
}
.section-header .subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-style: italic;
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}
.tag-washington { background: rgba(52,152,219,0.15); color: #74b9ff; border-color: rgba(52,152,219,0.25); }
.tag-orlando    { background: rgba(230,126,34,0.15); color: #fab27b; border-color: rgba(230,126,34,0.25); }
.tag-everglades { background: rgba(39,174,96,0.15);  color: #6fcf97; border-color: rgba(39,174,96,0.25); }
.tag-miami      { background: rgba(231,76,60,0.15);  color: #ff7675; border-color: rgba(231,76,60,0.25); }
.tag-keys       { background: rgba(26,188,156,0.15); color: #55efc4; border-color: rgba(26,188,156,0.25); }
.tag-pratique   { background: rgba(155,89,182,0.15); color: #c39bd3; border-color: rgba(155,89,182,0.25); }

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 0.3rem;
}
.badge-yes     { background: rgba(39,174,96,0.2);  color: #6fcf97; border: 1px solid rgba(39,174,96,0.3); }
.badge-rec     { background: rgba(52,152,219,0.2); color: #74b9ff; border: 1px solid rgba(52,152,219,0.3); }
.badge-strong  { background: rgba(230,126,34,0.2); color: #fab27b; border: 1px solid rgba(230,126,34,0.3); }
.badge-extreme { background: rgba(231,76,60,0.2);  color: #ff7675; border: 1px solid rgba(231,76,60,0.3); }

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* ===== IMAGES ===== */
.img-full {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0 0.75rem;
  background: var(--card-bg);
}
.img-full img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}
.img-full img:hover { transform: scale(1.01); }
.img-full.chart img { object-fit: contain; max-height: 360px; width: 100%; }
.img-full.wide { max-width: 100%; }
.img-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
thead { background: var(--card-alt); }
thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-strong);
}
tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
tbody td {
  padding: 0.8rem 1rem;
  color: var(--text);
  vertical-align: top;
}
tbody td:first-child { color: rgba(255,255,255,0.6); font-weight: 500; }

/* ===== TIP CARDS ===== */
.tip-card {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 3px solid transparent;
  background: var(--card-bg);
}
.tip-card.orange { border-left-color: var(--accent);       background: rgba(230,126,34,0.07); }
.tip-card.red    { border-left-color: var(--accent2);      background: rgba(231,76,60,0.07); }
.tip-card.blue   { border-left-color: var(--accent-blue);  background: rgba(52,152,219,0.07); }
.tip-card.green  { border-left-color: var(--accent-green); background: rgba(39,174,96,0.07); }
.tip-card.teal   { border-left-color: var(--accent-teal);  background: rgba(26,188,156,0.07); }
.tip-card.purple { border-left-color: #9b59b6;             background: rgba(155,89,182,0.07); }
.tip-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: #fff;
}

/* ===== TIMELINE ===== */
.timeline {
  margin: 2.5rem 0;
}
.timeline-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.timeline-week {
  margin-bottom: 1.25rem;
}
.timeline-week-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.timeline-row {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.tl-block {
  flex: 1;
  min-width: 60px;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--card-alt);
  border: 1px solid var(--border);
}
.tl-annapolis  { border-top: 2px solid var(--accent-blue); }
.tl-travel     { border-top: 2px solid var(--text-muted); }
.tl-orlando,
.tl-orlando2   { border-top: 2px solid var(--accent); }
.tl-everglades { border-top: 2px solid var(--accent-green); }
.tl-miami      { border-top: 2px solid var(--accent2); }
.tl-keylargo,
.tl-islamorada,
.tl-looekey,
.tl-keywest    { border-top: 2px solid var(--accent-teal); }
.tl-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.tl-details {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.tl-days {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ===== OVERVIEW GRID ===== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.overview-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.overview-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.overview-card .emoji { font-size: 1.5rem; margin-bottom: 0.5rem; }
.overview-card h4 { font-size: 0.92rem; margin: 0 0 0.25rem; }
.overview-card .dates {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.overview-card .highlights {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== WEATHER BAR ===== */
.weather-bar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.weather-bar .icon { font-size: 1.4rem; flex-shrink: 0; }

/* ===== REVIEWS ===== */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.review {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.review-stars {
  color: #f39c12;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.review-text {
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.review-author {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== CHECKLIST ===== */
.checklist {
  margin: 1.5rem 0;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.cl-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin: 1.5rem 0 0.5rem;
}

/* ===== PARK GRID ===== */
.park-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.park-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.park-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.park-card.top-pick { border-color: #f39c12; border-width: 2px; }
.park-rank {
  display: inline-block;
  background: var(--card-alt);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}
.park-card.top-pick .park-rank { background: #f39c12; color: #fff; }
.park-card h4 { margin: 0.25rem 0; font-size: 1.05rem; color: #fff; }
.park-type  { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.25rem; }
.park-stars { color: #f39c12; font-size: 1rem; margin-bottom: 0.75rem; }
.park-detail { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.park-detail strong { color: rgba(255,255,255,0.85); }
.park-detail em { color: var(--text-muted); font-size: 0.84rem; }
.park-loved { display: inline-block; color: #6fcf97; font-weight: 700; font-size: 0.88rem; }
.park-warn  { display: inline-block; color: #fab27b; font-weight: 700; font-size: 0.88rem; }

/* ===== ITINERARY CARDS ===== */
.itin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.itin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  border-top: 3px solid var(--border-strong);
}
.itin-card.itin-a { border-top-color: var(--accent); }
.itin-card.itin-b { border-top-color: var(--accent-blue); }
.itin-card.itin-c { border-top-color: var(--accent-green); }
.itin-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.itin-budget {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(230,126,34,0.1);
  border-radius: 50px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.75rem;
}

/* ===== GENERIC CARD ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* ===== DECISION NOTE ===== */
.decision-note {
  background: var(--card-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== DESTINATION HERO ===== */
.dest-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #0c1123 0%, #101c3a 50%, #0c1123 100%);
}
/* Variante DC — bleu nuit */
.dest-hero--dc {
  background: linear-gradient(135deg, #0a0e1f 0%, #0d1f3c 45%, #0c1a2e 100%);
}
.dest-hero--dc::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(52,152,219,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(230,126,34,0.07) 0%, transparent 55%);
  pointer-events: none;
}

/* Variante Orlando — orange feu */
.dest-hero--orlando {
  background: linear-gradient(135deg, #150a00 0%, #2a1200 45%, #1a0c00 100%);
}
.dest-hero--orlando::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(230,126,34,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 70%, rgba(231,76,60,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.dest-hero--orlando .dest-hero__title-sub {
  background: linear-gradient(90deg, #fab27b 0%, #e67e22 50%, #e74c3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dest-hero--orlando .dest-hero__title-amp {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
}

/* Variante Keys — turquoise océan */
.dest-hero--keys {
  background: linear-gradient(135deg, #001a1a 0%, #002b2e 45%, #001820 100%);
}
.dest-hero--keys::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(26,188,156,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 75%, rgba(52,152,219,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.dest-hero--keys .dest-hero__title-sub {
  background: linear-gradient(90deg, #55efc4 0%, #1abc9c 50%, #00cec9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dest-hero--keys .dest-hero__title-main {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
}
.dest-hero--keys .dest-hero__title-sub {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9;
}

/* ===== THÈME CRÈME (page index) ===== */
.theme-cream {
  background: #ecdfc8;
  color: #1a1208;
  /* Redéfinition de toutes les variables pour le thème clair */
  --bg:         #ecdfc8;
  --bg-section: #e8d9be;
  --card-bg:    rgba(255,255,255,0.45);
  --card-alt:   rgba(255,255,255,0.55);
  --border:     rgba(0,0,0,0.09);
  --border-strong: rgba(0,0,0,0.16);
  --text:       rgba(26,18,8,0.85);
  --text-light: rgba(26,18,8,0.55);
  --text-muted: rgba(26,18,8,0.38);
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
}
.theme-cream .topnav.scrolled {
  background: rgba(236,223,200,0.94);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.theme-cream .topnav-logo { color: #1a1208; }
.theme-cream .topnav-links a { color: rgba(26,18,8,0.45); }
.theme-cream .topnav-links a:hover { color: rgba(26,18,8,0.8); background: rgba(0,0,0,0.05); }
.theme-cream .topnav-links a.active-page { color: #1a1208; }
.theme-cream .topnav-hamburger { background: rgba(0,0,0,0.07); border-color: rgba(0,0,0,0.1); }
.theme-cream .topnav-hamburger span { background: rgba(26,18,8,0.7); }
.theme-cream .progress-fill { background: linear-gradient(90deg, #c0500a, #e67e22); }

.theme-cream .dest-hero--index {
  background: #ecdfc8;
  min-height: auto;
  padding-bottom: 5rem;
}
.theme-cream .dest-hero--index::after {
  background:
    radial-gradient(ellipse 55% 45% at 80% 15%, rgba(190,100,20,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 85%, rgba(160,120,60,0.08) 0%, transparent 50%);
}
.theme-cream .dest-hero--index .dest-hero__bg-text {
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.05);
}
.theme-cream .dest-hero--index .tag {
  background: rgba(180,90,10,0.1);
  color: #8c4500;
  border-color: rgba(180,90,10,0.25);
}
.theme-cream .dest-hero__title-kicker {
  color: #0c1123;
  opacity: 0.75;
  font-weight: 600;
  letter-spacing: 2.5px;
}
.theme-cream .dest-hero__title-main {
  color: #0c1123;
  -webkit-text-fill-color: #0c1123;
}
.theme-cream .dest-hero__title-sub {
  background: linear-gradient(90deg, #b04800 0%, #d4621a 50%, #b04800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.theme-cream .dest-hero__desc { color: rgba(26,18,8,0.52); }
.theme-cream .dest-hero__pills span {
  color: rgba(26,18,8,0.5);
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.12);
}
.theme-cream .dest-hero__scroll { color: rgba(26,18,8,0.28); }
.theme-cream .dest-hero__scroll:hover { color: rgba(26,18,8,0.55); }

/* Sections & contenu en crème */
.theme-cream .section { border-bottom-color: rgba(0,0,0,0.08); }
.theme-cream h1, .theme-cream h2, .theme-cream h3, .theme-cream h4 { color: #1a1208; }
.theme-cream p { color: rgba(26,18,8,0.7); }
.theme-cream strong { color: #1a1208; }
.theme-cream em { color: rgba(26,18,8,0.5); }
.theme-cream .subtitle { color: rgba(26,18,8,0.5); }

.theme-cream .overview-card {
  background: rgba(255,255,255,0.45);
  border-color: rgba(0,0,0,0.1);
}
.theme-cream .overview-card:hover { border-color: rgba(0,0,0,0.2); }
.theme-cream .overview-card h4 { color: #1a1208; }
.theme-cream .overview-card .highlights { color: rgba(26,18,8,0.55); }

.theme-cream .tl-block {
  background: rgba(255,255,255,0.4);
  border-color: rgba(0,0,0,0.08);
}
.theme-cream .tl-name { color: #1a1208; }
.theme-cream .timeline-week-label,
.theme-cream .timeline-title { color: rgba(26,18,8,0.38); }

.theme-cream .weather-bar {
  background: rgba(255,255,255,0.4);
  border-color: rgba(0,0,0,0.1);
  color: rgba(26,18,8,0.6);
}

.theme-cream .img-caption { color: rgba(26,18,8,0.4); }

.theme-cream footer { border-top-color: rgba(0,0,0,0.1); }
.theme-cream .bon-voyage { color: #1a1208; }
.theme-cream footer p { color: rgba(26,18,8,0.4); }

/* ===== MOSAÏQUE HERO ===== */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr 1fr 1.3fr;
  grid-template-rows: 220px;
  gap: 6px;
  padding: 0 0 0 0;
  overflow: hidden;
}
.hero-mosaic__item--tall {
  grid-row: span 1;
  height: 260px;
}
.hero-mosaic {
  grid-template-rows: 240px;
  align-items: stretch;
}
.hero-mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.hero-mosaic__item:first-child { border-radius: 0; }
.hero-mosaic__item:last-child  { border-radius: 0; }
.hero-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: default;
}
.hero-mosaic__item:hover img { transform: scale(1.05); }
.hero-mosaic__label {
  position: absolute;
  bottom: 0.6rem;
  left: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}
.hero-mosaic__item--tall { height: auto; align-self: stretch; }

@media (max-width: 768px) {
  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px;
    height: 290px;
  }
  .hero-mosaic__item:nth-child(3) { display: none; }
  .hero-mosaic__item:nth-child(5) { display: none; }
}

/* Variante Index — crème chaleureux */
.dest-hero--index {
  background: #ecdfc8;
  padding-top: 0;
}
.dest-hero--index .dest-hero__inner {
  padding-top: 3rem;
}
.dest-hero__title--index .dest-hero__title-kicker {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2em;
}
.dest-hero__title--index .dest-hero__title-main {
  font-size: clamp(3rem, 9vw, 7rem);
}
.dest-hero__title--index .dest-hero__title-sub {
  font-size: clamp(3rem, 9vw, 7rem);
  background: linear-gradient(90deg, #e67e22 0%, #e74c3c 40%, #fab27b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
/* Variante Pratique — violet */
.dest-hero--pratique {
  background: linear-gradient(135deg, #0e0a1a 0%, #1a1030 45%, #0e0a1a 100%);
}
.dest-hero--pratique::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 40%, rgba(155,89,182,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 70%, rgba(52,152,219,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.dest-hero--pratique .dest-hero__title-sub {
  background: linear-gradient(90deg, #c39bd3 0%, #9b59b6 50%, #a29bfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dest-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.dest-hero__scroll:hover { color: var(--text-light); text-decoration: none; }

/* Grand texte décoratif en arrière-plan */
.dest-hero__bg-text {
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(12rem, 28vw, 22rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.025);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}

.dest-hero__inner {
  position: relative;
  z-index: 1;
}

.dest-hero__eyebrow {
  margin-bottom: 1.5rem;
}

.dest-hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.dest-hero__title-main {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: #fff;
  display: block;
}
.dest-hero__title-amp {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: rgba(255,255,255,0.25);
  display: block;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
.dest-hero__title-sub {
  font-size: clamp(2rem, 6vw, 4.2rem);
  display: block;
  background: linear-gradient(90deg, #74b9ff 0%, #a29bfe 60%, #74b9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dest-hero__title-sub em {
  font-style: italic;
  -webkit-text-fill-color: transparent;
}

.dest-hero__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 520px;
}

.dest-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.dest-hero__pills span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .dest-hero { padding: 3rem 0 2.5rem; }
  .dest-hero__bg-text { font-size: clamp(8rem, 40vw, 14rem); opacity: 0.05; }
  .dest-hero__title-main { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .dest-hero__title-sub  { font-size: clamp(1.6rem, 7vw, 2.8rem); }
}

/* ===== FOOTER ===== */
footer {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.bon-voyage {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: auto; cursor: zoom-out; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body { padding-top: 52px; }
  .topnav-links { display: none; }
  .topnav-hamburger { display: flex; }
  .topnav-inner { padding: 0 1.25rem; height: 52px; }
  .topnav-inner .topnav-logo { font-size: 0.9rem; }

  .hero { min-height: 80vh; padding-bottom: 3rem; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  .section { padding: 2.5rem 0; }

  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .park-grid { grid-template-columns: 1fr; }
  .itin-grid { grid-template-columns: 1fr; }

  .timeline-row { gap: 2px; }
  .tl-block { min-width: 50px; padding: 0.5rem; }
  .tl-name { font-size: 0.7rem; }
  .tl-details, .tl-days { display: none; }

  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .table-wrap { font-size: 0.8rem; }
  thead th, tbody td { padding: 0.6rem 0.75rem; }
}

@media (max-width: 480px) {
  .content { padding: 0 1rem; }
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: 0.5rem 1rem; }
}
