/* ============================================================
   Ton Itinéraire — design system moderne, 3 thèmes voyage
   ============================================================ */
:root {
  /* Plage (default) — sable chaud, océan turquoise, corail */
  --bg: #FDF6E9;
  --bg-deep: #F5E7C9;
  --card: #FFFFFF;
  --ink: #1F3A3D;
  --ink-soft: #4A6467;
  --accent: #FF7A5C;        /* corail coucher de soleil */
  --accent-ink: #12141C;
  --accent-2: #14B8A6;      /* turquoise océan */
  --gold: #FFB238;          /* soleil */
  --line: rgba(31,58,61,0.13);
  --shadow: rgba(31,58,61,0.16);

  /* fixed tokens, stay dark regardless of theme (footer, hero overlay) */
  --ink-fixed: #12141C;
  --cream-fixed: #FAFAF8;
  --ink-fixed-rgb: 18,20,28;

  color-scheme: light;
}

[data-theme="plage"] {
  --bg: #FDF6E9; --bg-deep: #F5E7C9; --card: #FFFFFF;
  --ink: #1F3A3D; --ink-soft: #4A6467;
  --accent: #FF7A5C; --accent-ink: #12141C; --accent-2: #14B8A6; --gold: #FFB238;
  --line: rgba(31,58,61,0.13); --shadow: rgba(31,58,61,0.16);
  color-scheme: light;
}

[data-theme="jungle"] {
  /* forêt tropicale dense, vert profond, fleur corail en accent */
  --bg: #1B2E1F;
  --bg-deep: #24391F;
  --card: #24391F;
  --ink: #F0F5E8;
  --ink-soft: #A8C4A0;
  --accent: #FF6B4A;        /* fleur tropicale */
  --accent-ink: #12141C;
  --accent-2: #4ADE80;      /* feuillage vif */
  --gold: #FFD166;
  --line: rgba(240,245,232,0.14);
  --shadow: rgba(0,0,0,0.45);
  color-scheme: dark;
}

[data-theme="hiver"] {
  /* glace et neige, bleu polaire, touche violette aurore boréale */
  --bg: #F0F8FB;
  --bg-deep: #DCEEF5;
  --card: #FFFFFF;
  --ink: #10293B;
  --ink-soft: #4A6B7D;
  --accent: #2FA8D8;        /* glace */
  --accent-ink: #12141C;
  --accent-2: #7C6CE0;      /* aurore boréale */
  --gold: #E8B84B;
  --line: rgba(16,41,59,0.12);
  --shadow: rgba(16,41,59,0.14);
  color-scheme: light;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
}
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; position: relative; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.01em;
}
.coord {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- HEADER / NAV ---------- */
header.site {
  position: sticky; top: 14px; z-index: 60;
  background: transparent; border-bottom: none;
  padding: 0 16px;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; max-width: 1100px; margin: 0 auto; gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: 0 10px 28px var(--shadow);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 18px; display: flex; align-items: center; gap: 9px; transition: transform 0.2s ease; }
.logo:hover { transform: translateY(-1px); }
.logo .logo-icon { color: #FF7A5C; display: inline-block; flex-shrink: 0; transition: transform 0.3s ease; }
.logo:hover .logo-icon { transform: scale(1.08); }
.logo .logo-accent { color: #FF7A5C; }
.navlinks { display: flex; gap: 16px; align-items: center; }
.navlinks a {
  font-size: 13px; font-weight: 600; color: var(--ink-soft); white-space: nowrap;
  position: relative; padding-bottom: 3px;
  transition: color 0.15s;
}
.navlinks a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -4px; height: 2px;
  background: var(--accent); transition: left 0.25s ease, right 0.25s ease;
}
.navlinks a:hover, .navlinks a.active { color: var(--ink); }
.navlinks a:hover::after, .navlinks a.active::after { left: 0; right: 0; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.navlinks .btn { padding: 9px 18px; font-size: 12.5px; }
.navlinks a.btn-rust { color: var(--accent-ink); }
.navlinks a.btn-outline { color: var(--ink); }

/* theme switcher — plage / jungle / hiver */
.theme-switcher {
  display: flex; align-items: center; gap: 4px;
  background: var(--bg-deep); border: 1px solid var(--line); border-radius: 100px;
  padding: 3px; flex-shrink: 0;
}
.theme-btn {
  width: 32px; height: 32px; border-radius: 50%; border: none; background: transparent;
  color: var(--ink-soft); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.theme-btn:hover { transform: translateY(-1px); color: var(--ink); }
.theme-btn.active { background: var(--card); color: var(--accent); box-shadow: 0 3px 8px var(--shadow); }
.theme-btn svg { width: 16px; height: 16px; }

/* pill buttons with lift + shadow */
.btn {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13.5px;
  padding: 13px 24px; border-radius: 100px; display: inline-block; text-align: center;
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1), box-shadow 0.2s ease, background 0.15s ease, color 0.15s ease;
  box-shadow: 0 4px 14px var(--shadow);
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 24px var(--shadow); }
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn-rust { background: var(--accent); color: var(--accent-ink); }
.btn-ink { background: var(--ink-fixed); color: var(--cream-fixed); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); box-shadow: none; }
.mobile-toggle { display: none; }

/* ---------- PHOTO HERO ---------- */
.photo-hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  color: var(--cream-fixed);
  overflow: hidden;
}
.photo-hero.small { min-height: 50vh; align-items: center; text-align: center; }
.photo-hero.small .photo-hero-inner { display: flex; flex-direction: column; align-items: center; }
.photo-hero.small .hero-coord { justify-content: center; }
.photo-hero.small h1, .photo-hero.small p.sub { margin-left: auto; margin-right: auto; }
.photo-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(var(--ink-fixed-rgb),0.15) 0%, rgba(var(--ink-fixed-rgb),0.5) 55%, rgba(var(--ink-fixed-rgb),0.92) 100%);
}
.photo-hero-inner { position: relative; z-index: 2; padding: 60px 0 56px; width: 100%; }
.hero-coord { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; opacity: 0.92; }
.hero-coord .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(255,184,0,0.28); }
.photo-hero h1 { font-size: clamp(36px, 6vw, 68px); max-width: 780px; margin-bottom: 16px; color: var(--cream-fixed); }
.photo-hero p.sub { font-size: 17px; max-width: 480px; opacity: 0.95; margin-bottom: 30px; }

/* floating chips over hero photos */
.float-chip {
  position: absolute; z-index: 4;
  background: var(--card); color: var(--ink);
  border-radius: 100px; padding: 11px 18px 11px 14px;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 14px 30px var(--shadow);
  animation: floaty 4.5s ease-in-out infinite;
}
.float-chip .ic {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  background: rgba(255,68,51,0.14);
}
.float-chip.c1 { top: 16%; right: 8%; animation-delay: 0s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   Odyssey — sticky sidebar photo (standard, well-supported pattern,
   like a sticky table-of-contents) that swaps image via the same
   proven IntersectionObserver mechanism used elsewhere on the site.
   Secondary element: narrow left column (~1/3 width), not full-screen.
   ============================================================ */
.odyssey-layout {
  display: grid; grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 50px; align-items: stretch;
}
.odyssey-photo-col { position: relative; }
.odyssey-sticky-photo {
  position: sticky; top: 100px;
  border-radius: 18px; overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 20px 40px var(--shadow);
  background: var(--ink-fixed);
}
.odyssey-photo-layer {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; transition: opacity 0.7s ease;
  animation: odysseyKenburns 16s ease-in-out infinite alternate;
}
.odyssey-photo-layer.active { opacity: 1; z-index: 1; }
@keyframes odysseyKenburns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.odyssey-photo-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}

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

.odyssey-steps { display: flex; flex-direction: column; gap: 54px; }
.ostep { position: relative; padding-left: 20px; border-left: 2px solid var(--line); }
.orail-num {
  font-size: 11px; font-weight: 800; color: var(--accent); letter-spacing: 0.05em;
  text-transform: uppercase; display: block; margin-bottom: 6px;
}
.ostep h3 { font-size: 19px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 8px; }
.ostep p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; max-width: 440px; }

.odyssey-side { display: flex; flex-direction: column; gap: 26px; padding-top: 6px; }
.odyssey-side .quote-block { margin: 0; }
.odyssey-side .btn { align-self: flex-start; }
.ostep-inline-photo { display: none; }

@media (max-width: 980px) {
  .odyssey-layout { grid-template-columns: 1fr; gap: 30px; }
  .odyssey-photo-col { display: none; } /* sticky-photo trick doesn't translate to single-column mobile */
  .ostep-inline-photo {
    display: block; width: 100%; height: 200px; object-fit: cover;
    border-radius: 14px; margin-bottom: 16px; box-shadow: 0 10px 24px var(--shadow);
  }
}

.odystep-value {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px; padding: 8px 14px; border-radius: 100px;
  background: rgba(11,95,255,0.08); color: var(--accent-2);
  font-size: 12.5px; font-weight: 700;
}
.odystep-value::before { content: "✓"; font-weight: 800; }

/* ---------- SECTIONS ---------- */
section { padding: 88px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head .kicker { justify-content: center; }
.section-head .lead { margin: 14px auto 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.kicker::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); }
section h2 { font-size: clamp(28px, 4vw, 42px); }
.lead { font-size: 17px; color: var(--ink-soft); max-width: 560px; margin-top: 14px; }
hr.divider { border: none; border-top: 1px solid var(--line); }

.band-center { text-align: center; }
.band-center .kicker { justify-content: center; }
.band-center h1 { margin: 0 auto 14px; }
.band-center .lead { margin: 0 auto; }

/* background-attachment:fixed removed — known to cause rendering glitches
   on some desktop browser/GPU combos, especially alongside sticky elements */
@media (prefers-reduced-motion: reduce) { .photo-hero { background-attachment: scroll; } }

/* striking full-bleed homepage hero */
.photo-hero.mega { min-height: 100vh; min-height: 100dvh; align-items: center; justify-content: center; padding-top: 90px; }
.mega-inner { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 0; }
.mega-title {
  font-size: clamp(44px, 9vw, 108px); line-height: 0.98; color: var(--cream-fixed);
  margin-bottom: 38px; text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.mega-title em { font-style: normal; color: var(--accent); }
.mega-btn { font-size: 16px; padding: 18px 34px; }
@media (max-width: 560px) { .mega-title { font-size: clamp(36px, 11vw, 60px); } }

/* ---------- CARDS / GRID ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.card {
  background: var(--card); border-radius: 14px; padding: 30px 26px;
  border: 1.5px solid var(--line);
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 36px var(--shadow); border-color: var(--ink); }
.card .num {
  width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 14px;
  background: var(--ink); color: var(--bg);
  margin-bottom: 16px;
}
.card:nth-child(1) .num { background: #FF4433; color: #fff; }
.card:nth-child(2) .num { background: #8B5CF6; color: #fff; }
.card:nth-child(3) .num { background: #14B8A6; color: #fff; }
.card:nth-child(4) .num { background: #F59E0B; color: var(--ink-fixed); }
.card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 17.5px; letter-spacing: 0; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- PRICING ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px;
  padding: 34px 28px; display: flex; flex-direction: column;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease;
}
.plan:hover { transform: translateY(-8px); box-shadow: 0 20px 40px var(--shadow); }
.plan.featured { background: var(--ink-fixed); color: var(--cream-fixed); border-color: var(--ink-fixed); transform: scale(1.03); }
.plan.featured:hover { transform: scale(1.03) translateY(-8px); }
.plan-tag { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-2); margin-bottom: 8px; }
.plan.featured .plan-tag { color: var(--gold); }
.plan h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 21px; letter-spacing: 0; margin-bottom: 14px; }
.plan .price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 36px; margin-bottom: 14px; }
.plan .price span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; opacity: 0.65; }
.price-tiers { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-bottom: 22px; background: var(--bg); }
.plan.featured .price-tiers { background: rgba(250,250,248,0.05); border-color: rgba(250,250,248,0.18); }
.price-tier { display: flex; justify-content: space-between; align-items: center; padding: 9px 14px; font-size: 13px; }
.price-tier:not(:last-child) { border-bottom: 1px solid var(--line); }
.plan.featured .price-tier:not(:last-child) { border-bottom-color: rgba(250,250,248,0.18); }
.price-tier .tier-days { color: var(--ink-soft); }
.plan.featured .price-tier .tier-days { color: rgba(250,250,248,0.65); }
.price-tier .tier-price { font-weight: 800; font-family: 'Bricolage Grotesque', sans-serif; }
.plan ul { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.plan li { font-size: 14px; padding: 8px 0; border-top: 1px dashed var(--line); display: flex; gap: 9px; }
.plan.featured li { border-top-color: rgba(250,250,248,0.18); }
.plan li:first-child { border-top: none; }
.plan li::before { content: "✓"; color: var(--accent); flex-shrink: 0; font-weight: 800; }
.plan.featured li::before { color: var(--gold); }

/* ---------- PROOF / EXAMPLE VISUAL ---------- */
.proof-visual { position: relative; height: 440px; }
.proof-img {
  position: absolute; border-radius: 14px; box-shadow: 0 24px 50px var(--shadow); border: 6px solid var(--bg);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
}
.proof-img.cover.solo {
  position: static; width: 100%; height: 100%; object-fit: cover;
  transform: none; border-radius: 20px; border-width: 0;
}
.proof-visual:hover .proof-img.cover.solo { transform: scale(1.03); }
.proof-img.cover { width: 210px; left: 10px; top: 10px; transform: rotate(-5deg); z-index: 2; }
.proof-visual:hover .proof-img.cover { transform: rotate(-8deg) translateY(-6px); }

/* ---------- STATS BAND ---------- */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: 22px;
  padding: 36px 30px;
}
.stats-band .stat { text-align: center; }
.stats-band .stat b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 34px; display: block; color: var(--accent); }
.stats-band .stat span { font-size: 12.5px; color: var(--ink-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 26px; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 18px 32px var(--shadow); }
.testi-stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.testi-card p.quote { font-size: 14.5px; color: var(--ink); margin-bottom: 18px; line-height: 1.6; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 14px;
  background: rgba(255,68,51,0.14); color: var(--accent);
}
.testi-author b { font-size: 13.5px; display: block; }
.testi-author span { font-size: 12px; color: var(--ink-soft); }

/* ---------- VALUES (a-propos) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { text-align: center; padding: 10px; }
.value-card .ic {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  background: rgba(255,68,51,0.12);
}
.value-card:nth-child(2) .ic { background: rgba(11,95,255,0.14); }
.value-card:nth-child(3) .ic { background: rgba(255,184,0,0.18); }
.value-card:nth-child(4) .ic { background: rgba(255,68,51,0.12); }
.value-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- FAQ ACCORDION ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 4px; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15.5px; color: var(--ink);
}
.faq-q .plus { font-size: 20px; color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14.5px; color: var(--ink-soft); padding: 0 4px;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 4px 22px; }

/* ---------- FOOTER (stays dark regardless of theme) ---------- */
footer.site { background: var(--ink-fixed); color: var(--cream-fixed); padding: 70px 0 34px; }
footer.site .foot-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.9fr 0.8fr 1.1fr; gap: 32px; margin-bottom: 50px; }
.foot-news-text { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.5; }
.foot-newsletter { display: flex; gap: 6px; }
.foot-newsletter input {
  flex: 1; min-width: 0; padding: 10px 12px; border-radius: 100px; border: 1px solid var(--line);
  background: var(--bg-deep); color: var(--ink); font-size: 13px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.foot-newsletter input::placeholder { color: var(--ink-soft); }
.foot-newsletter button {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; border: none; cursor: pointer;
  background: var(--accent); color: var(--accent-ink); font-size: 16px; font-weight: 800;
  transition: transform 0.2s ease;
}
.foot-newsletter button:hover { transform: scale(1.08); }
.foot-news-confirm { font-size: 12.5px; color: #0E9F6E; font-weight: 700; }
footer.site h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; margin-bottom: 14px; }
footer.site .foot-logo { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 14px; color: var(--cream-fixed); display: flex; align-items: center; gap: 9px; }
footer.site .foot-logo .logo-icon { color: #FF7A5C; flex-shrink: 0; }
footer.site .foot-logo .logo-accent { color: #FF7A5C; }
footer.site p { color: rgba(250,250,248,0.7); font-size: 14.5px; max-width: 320px; }
footer.site .col-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 16px; }
footer.site .col a { display: block; font-size: 14.5px; color: rgba(250,250,248,0.75); margin-bottom: 4px; padding: 6px 0; transition: color 0.15s, transform 0.15s; }
footer.site .col a:hover { color: var(--cream-fixed); transform: translateX(4px); display: block; }
.foot-bottom {
  border-top: 1px solid rgba(250,250,248,0.15); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(250,250,248,0.55);
}

/* ---------- MISC ---------- */
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.tag {
  font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 100px;
  background: rgba(11,95,255,0.12); color: var(--accent-2);
  transition: transform 0.2s ease;
}
.tag:hover { transform: translateY(-2px); }
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 40px; }
.stat b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; display: block; color: var(--accent); }
.stat span { font-size: 12.5px; color: var(--ink-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.page-band { background: var(--bg-deep); padding: 60px 0; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; transition: background 0.35s ease; }

.card.photo-card {
  background-size: cover; background-position: center; position: relative;
  color: var(--cream-fixed); min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
  border: none;
}
.card.photo-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 18px;
  background: linear-gradient(180deg, rgba(var(--ink-fixed-rgb),0.15) 0%, rgba(var(--ink-fixed-rgb),0.88) 100%);
}
.card.photo-card > * { position: relative; z-index: 1; }
.card.photo-card .num { color: var(--cream-fixed); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.card.photo-card .num.num-1 { background: #FF4433; }
.card.photo-card .num.num-2 { background: #8B5CF6; }
.card.photo-card .num.num-3 { background: #14B8A6; }
.card.photo-card .num.num-4 { background: #F59E0B; color: var(--ink-fixed); }
.card.photo-card p { color: rgba(250,250,248,0.85); }

/* horizontal photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; height: 130px; }
.strip-tile {
  border-radius: 12px; background-size: cover; background-position: center;
  box-shadow: 0 6px 16px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strip-tile:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 14px 26px var(--shadow); }
@media (max-width: 980px) { .photo-strip { grid-template-columns: repeat(3, 1fr); height: auto; } .strip-tile { height: 100px; } }
@media (max-width: 560px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* photo mosaic — many countries at a glance */
.mosaic { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); grid-auto-rows: 130px; gap: 14px; grid-auto-flow: dense; }
.mosaic-tile {
  position: relative; border-radius: 14px; overflow: hidden;
  box-shadow: 0 6px 18px var(--shadow);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
}
.mosaic-tile.big { grid-column: span 2; grid-row: span 2; }
.mosaic-tile:hover { transform: translateY(-5px); box-shadow: 0 18px 32px var(--shadow); }
.mosaic-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s cubic-bezier(.2,.8,.2,1); }
.mosaic-tile:hover .mosaic-bg { transform: scale(1.12); }
.mosaic-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--ink-fixed-rgb),0) 55%, rgba(var(--ink-fixed-rgb),0.85) 100%); }
.mosaic-label { position: absolute; left: 12px; bottom: 10px; z-index: 2; color: var(--cream-fixed); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px; }
@media (max-width: 560px) {
  .mosaic { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .mosaic-tile.big { grid-column: span 1; grid-row: span 2; }
}
/* ---------- COUNTRY SIMULATOR MODAL ---------- */
.dest-card.clickable { cursor: pointer; }
.mosaic-tile.clickable { cursor: pointer; }
.sim-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(var(--ink-fixed-rgb), 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sim-overlay.open { opacity: 1; visibility: visible; }
.sim-modal {
  background: var(--card); border-radius: 20px; overflow: hidden;
  max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: scale(0.92) translateY(20px); transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.sim-overlay.open .sim-modal { transform: scale(1) translateY(0); }
.sim-photo { background-size: cover; background-position: center 35%; min-height: 280px; }
.sim-body { padding: 34px 30px; }
.sim-body h2 { font-size: 28px; margin-bottom: 20px; }
.sim-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(var(--ink-fixed-rgb),0.5); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sim-close:hover { background: var(--accent); transform: rotate(90deg); }
.sim-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.sim-stat {
  background: var(--bg-deep); border-radius: 12px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.sim-stat.highlight { background: var(--ink-fixed); }
.sim-stat.highlight .sim-stat-label { color: rgba(250,250,248,0.65); }
.sim-stat.highlight .sim-stat-value { color: var(--cream-fixed); }
.sim-stat-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }
.sim-stat-value { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 22px; color: var(--accent); }
.sim-note { font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; }
.sim-flight {
  font-size: 13.5px; font-weight: 700; color: var(--accent-2);
  background: rgba(11,95,255,0.08); border-radius: 10px; padding: 10px 14px;
  margin-bottom: 14px;
}
@media (max-width: 700px) {
  .sim-modal { grid-template-columns: 1fr; }
  .sim-photo { min-height: 180px; }
}

.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.dest-card {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  box-shadow: 0 6px 18px var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 20px 36px var(--shadow); }
.dest-card .dest-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s cubic-bezier(.2,.8,.2,1); }
.dest-card:hover .dest-bg { transform: scale(1.12); }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(var(--ink-fixed-rgb),0) 40%, rgba(var(--ink-fixed-rgb),0.92) 100%); }
.dest-card .dest-label { position: relative; z-index: 2; padding: 16px 14px; color: var(--cream-fixed); }
.dest-card .dest-label b { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; display: block; }
.dest-card .dest-label span { font-size: 11.5px; opacity: 0.85; }

.quote-block { border-left: 3px solid var(--accent); padding-left: 24px; font-size: 19px; font-style: italic; color: var(--ink-soft); max-width: 620px; margin: 30px 0; }

/* decorative ambient blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; }
.blob-gold { background: var(--gold); opacity: 0.16; width: 360px; height: 360px; }
.blob-moss { background: var(--accent-2); opacity: 0.13; width: 300px; height: 300px; }
.page-band .blob-gold { top: -120px; right: -80px; }
.page-band .blob-moss { bottom: -100px; left: -60px; }

/* ---------- scroll progress + stagger ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--accent), var(--gold)); z-index: 100; transition: width 0.08s linear; }

.stagger { opacity: 1; }
.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(.2,.8,.2,1), transform 0.6s cubic-bezier(.2,.8,.2,1); }
.stagger.in > *:nth-child(1) { transition-delay: .04s; }
.stagger.in > *:nth-child(2) { transition-delay: .11s; }
.stagger.in > *:nth-child(3) { transition-delay: .18s; }
.stagger.in > *:nth-child(4) { transition-delay: .25s; }
.stagger.in > *:nth-child(5) { transition-delay: .32s; }
.stagger.in > *:nth-child(n+6) { transition-delay: .38s; }
.stagger.in > * { opacity: 1; transform: translateY(0); }

/* mobile hamburger */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 14px 10px; z-index: 70; }

@media (max-width: 340px) {
  .theme-switcher { gap: 2px; padding: 2px; }
  .theme-btn { width: 28px; height: 28px; }
  .mobile-toggle { padding: 14px 6px; }
}
.mobile-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s cubic-bezier(.2,.8,.2,1), opacity 0.25s ease, background 0.3s ease; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .mobile-toggle { display: flex; }
  .navlinks {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: 80px; left: 0; right: 0;
    height: calc(100vh - 80px); height: calc(100dvh - 80px);
    background: var(--bg); padding: 10px 28px 40px;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1), opacity 0.25s ease, visibility 0.25s;
    z-index: 55; overflow-y: auto;
  }
  .navlinks.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .navlinks a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .navlinks a::after { display: none; }
  .navlinks .btn { margin-top: 18px; text-align: center; padding: 14px 18px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .plans { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-8px); }
  footer.site .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .proof-visual { height: 340px; }
  .dest-grid { grid-template-columns: 1fr; }
  .float-chip { display: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
.dest-grid-more { display: none; margin: 24px auto 0; }
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .mosaic-tile:nth-child(n+6) { display: none; }
  .dest-grid:not(.expanded) .dest-card:nth-child(n+6) { display: none; }
  .dest-grid-more { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > *, .float-chip, .card, .plan, .dest-card, .btn, .logo, .logo .logo-icon, .theme-btn { transition: none !important; animation: none !important; }
}

/* ---------- QCM CONTACT FORM ---------- */
.qcm-form {
  max-width: 760px; margin: 0 auto; background: var(--card);
  border: 1px solid var(--line); border-radius: 22px; padding: 40px;
}
.qcm-q { margin-bottom: 34px; }
.qcm-q-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.qcm-q-num {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-deep); color: var(--ink-soft);
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.qcm-q.answered .qcm-q-num { background: var(--accent); color: var(--accent-ink); }
.qcm-q-head h3 { font-size: 16px; font-weight: 700; }
.qcm-optional { font-weight: 400; font-size: 12.5px; color: var(--ink-soft); }
.qcm-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.qcm-opt {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; font-weight: 600;
  padding: 10px 18px; border-radius: 100px; border: 1.5px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.qcm-opt:hover { transform: translateY(-2px); border-color: var(--ink-soft); }
.qcm-opt.selected { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.qcm-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin: 10px 0 28px; padding-top: 24px; border-top: 1px solid var(--line);
}
.qcm-field-full { grid-column: 1 / -1; }
.qcm-field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 7px; }
.qcm-field input {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--bg); color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px;
  transition: border-color 0.2s ease;
}
.qcm-field input:focus { outline: none; border-color: var(--accent); }

.qcm-submit { width: 100%; text-align: center; opacity: 1; }
.qcm-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }
.qcm-hint { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; }

@media (max-width: 700px) {
  .qcm-form { padding: 26px 20px; }
  .qcm-fields { grid-template-columns: 1fr; }
}

/* ---------- QCM progressive reveal (one question at a time) ---------- */
.qcm-q, .qcm-final {
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
  opacity: 1; transform: translateY(0);
}
.qcm-locked {
  display: none;
}
.qcm-q.qcm-unlocking, .qcm-final.qcm-unlocking {
  display: block; opacity: 0; transform: translateY(12px);
}

/* ---------- CARD COLLAPSIBLE: title only, description on hover/click ---------- */
.card-collapsible { cursor: pointer; }
.card-collapsible h3 {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.card-collapsible h3::after {
  content: "";
  width: 8px; height: 8px; flex-shrink: 0;
  border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg); transition: transform 0.25s ease;
}
.card-collapsible:hover h3::after,
.card-collapsible.expanded h3::after { transform: rotate(-135deg); }
.card-collapsible.photo-card h3::after { border-color: var(--cream-fixed); }

.card-collapsible p {
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0 !important;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.35s ease;
}
.card-collapsible:hover p,
.card-collapsible.expanded p {
  max-height: 260px; opacity: 1; margin-top: 8px !important;
}

@media (hover: none) {
  /* touch devices: hover doesn't apply reliably — rely on tap-to-toggle (.expanded) only */
  .card-collapsible:hover p { max-height: 0; opacity: 0; }
  .card-collapsible.expanded p { max-height: 260px; opacity: 1; margin-top: 8px !important; }
}

/* ---------- REVIEWS MODAL (opened from photo-strip) ---------- */
.reviews-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(var(--ink-fixed-rgb), 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.reviews-overlay.open { opacity: 1; visibility: visible; }
.reviews-modal {
  background: var(--card); border-radius: 20px; padding: 40px;
  max-width: 780px; width: 100%; max-height: 85vh; overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(20px); transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.reviews-overlay.open .reviews-modal { transform: scale(1) translateY(0); }
.reviews-modal .testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) {
  .reviews-modal { padding: 28px 20px; }
  .reviews-modal .testi-grid { grid-template-columns: 1fr; }
}

/* ---------- DOCUMENT CARD + FULL SUMMARY MODAL ---------- */
.doc-card {
  position: absolute; right: -24px; bottom: -28px; z-index: 3;
  width: 240px; background: var(--card); border-radius: 14px; padding: 20px;
  box-shadow: 0 20px 40px var(--shadow); cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease;
}
.doc-card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px var(--shadow); }
.doc-card-top { display: flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 800; font-size: 13px; margin-bottom: 10px; }
.doc-card p { font-size: 12px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 12px; }
.doc-card-cta { font-size: 12px; font-weight: 700; color: var(--accent-2); }
@media (max-width: 700px) {
  .doc-card { position: static; width: 100%; margin-top: 16px; }
  .proof-visual { height: auto !important; }
  .proof-img.cover.solo { height: 260px !important; }
}

.doc-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(var(--ink-fixed-rgb), 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.doc-overlay.open { opacity: 1; visibility: visible; }
.doc-modal {
  background: var(--card); border-radius: 22px; padding: 44px;
  max-width: 700px; width: 100%; max-height: 88vh; overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(20px); transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.doc-overlay.open .doc-modal { transform: scale(1) translateY(0); }
.doc-modal-head { margin-bottom: 30px; }
.doc-modal-head h2 { margin-bottom: 10px; }
.doc-stop { display: flex; gap: 16px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.doc-stop:last-of-type { border-bottom: none; margin-bottom: 20px; }
.doc-stop-num {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: var(--bg-deep); color: var(--accent);
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 12.5px;
  display: flex; align-items: center; justify-content: center;
}
.doc-stop h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 6px; }
.doc-stop p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.doc-disclaimer {
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--bg-deep); border-radius: 10px; padding: 12px 16px;
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .doc-modal { padding: 28px 22px; }
}

/* ---------- FULL DETAILED ITINERARY ACCORDION ---------- */
.itin-list { display: flex; flex-direction: column; gap: 16px; }
.itin-day { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--card); }
.itin-day-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left;
}
.itin-day-head-left { display: flex; align-items: center; gap: 14px; }
.itin-day-num {
  width: 38px; height: 38px; border-radius: 11px; background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.itin-day-head h3 { font-size: 17px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.itin-day-dates { font-size: 12px; color: var(--ink-soft); font-weight: 600; display: block; margin-top: 2px; }
.itin-day-head .plus { font-size: 22px; color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; }
.itin-day.open .itin-day-head .plus { transform: rotate(45deg); }
.itin-day-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.itin-day.open .itin-day-body { max-height: 5000px; }
.itin-day-body-inner { padding: 4px 24px 28px; border-top: 1px solid var(--line); }
.itin-block { margin-top: 22px; }
.itin-block-title {
  display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 12px;
}
.itin-lodging-card {
  background: var(--bg-deep); border-radius: 12px; padding: 16px 18px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
}
.itin-lodging-card .name { font-weight: 700; font-size: 14.5px; margin-bottom: 3px; }
.itin-lodging-card .addr { font-size: 12px; color: var(--ink-soft); }
.itin-lodging-times { display: flex; gap: 22px; }
.itin-lodging-times div { text-align: center; }
.itin-lodging-times .lbl { display: block; font-size: 9.5px; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; letter-spacing: 0.04em; }
.itin-lodging-times .val { display: block; font-size: 14px; font-weight: 700; font-family: 'Bricolage Grotesque', sans-serif; margin-top: 2px; }
.itin-ref {
  font-family: 'Plus Jakarta Sans', monospace; font-size: 10.5px; font-weight: 700; color: var(--accent-2);
  background: rgba(11,95,255,0.08); padding: 3px 9px; border-radius: 6px; display: inline-block; margin-top: 8px;
}
.itin-row {
  display: grid; grid-template-columns: 56px 84px 1fr; gap: 12px;
  padding: 11px 0; border-top: 1px dashed var(--line); align-items: start;
}
.itin-row:first-child { border-top: none; }
.itin-time { font-weight: 700; font-size: 12.5px; color: var(--ink); padding-top: 3px; }
.itin-cat {
  font-size: 9px; font-weight: 800; text-transform: uppercase; padding: 4px 6px;
  border-radius: 6px; color: #fff; text-align: center; height: fit-content; letter-spacing: 0.02em;
}
.itin-cat.transport { background: #1D4ED8; }
.itin-cat.activite { background: var(--ink-fixed); }
.itin-cat.restaurant { background: #D9A441; color: #12141C; }
.itin-cat.logement { background: #0E9F6E; }
.itin-row .title { font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }
.itin-row .note { font-size: 12px; color: var(--ink-soft); }
.itin-row .ref-inline { font-family: monospace; font-size: 10.5px; color: var(--accent-2); }
.itin-route-box {
  background: var(--bg-deep); border-radius: 12px; padding: 14px 18px; font-size: 13px; line-height: 1.6;
}
.itin-route-box b { color: var(--accent); }
.itin-tips { background: rgba(255,184,0,0.08); border-radius: 12px; padding: 16px 18px; }
.itin-tips ul { padding-left: 18px; }
.itin-tips li { font-size: 13px; color: var(--ink); margin-bottom: 7px; line-height: 1.55; }
.itin-tips li:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .itin-row { grid-template-columns: 50px 70px 1fr; }
  .itin-lodging-card { flex-direction: column; align-items: flex-start; }
}

/* ---------- EXAMPLE DISCLAIMER + TABLE OF CONTENTS ---------- */
.example-disclaimer {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,184,0,0.1); border: 1px solid rgba(255,184,0,0.3);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 24px;
  color: var(--ink-soft); font-size: 13.5px; line-height: 1.55;
}
.example-disclaimer svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.example-disclaimer b { color: var(--ink); }

.itin-toc {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.itin-toc a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  background: var(--bg-deep); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 16px 9px 10px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.itin-toc a:hover { transform: translateY(-2px); border-color: var(--accent); }
.itin-toc-num {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 640px) {
  .itin-toc { gap: 8px; }
  .itin-toc a { font-size: 12px; padding: 7px 12px 7px 8px; }
}

.itin-day-budget {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  background: rgba(14,159,110,0.08); border-radius: 10px; padding: 10px 14px;
  font-size: 13px; font-weight: 700; color: #0E9F6E;
}
.itin-day-budget span.lbl { font-weight: 500; color: var(--ink-soft); }

/* ---------- CHECKLIST + PRACTICAL FACTS ---------- */
.itin-checklist { margin-top: 22px; display: flex; flex-direction: column; gap: 4px; }
.itin-checklist label {
  display: flex; align-items: center; gap: 12px; padding: 11px 4px;
  border-bottom: 1px dashed var(--line); cursor: pointer;
}
.itin-checklist label:last-child { border-bottom: none; }
.itin-checklist input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--accent); cursor: pointer;
}
.itin-checklist span { font-size: 14px; color: var(--ink); line-height: 1.4; }
.itin-checklist input:checked ~ span { color: var(--ink-soft); text-decoration: line-through; }

.itin-facts { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.itin-fact {
  background: var(--bg-deep); border-radius: 10px; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.itin-fact b { font-size: 12.5px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.03em; }
.itin-fact span { font-size: 13.5px; color: var(--ink); line-height: 1.45; }

.itin-day-highlight {
  font-style: italic; font-size: 13.5px; color: var(--ink-soft);
  background: var(--bg-deep); border-radius: 10px; padding: 12px 16px;
  margin-bottom: 20px; line-height: 1.55;
}

/* ---------- FLIGHT PATH — dashed route with a plane following it ---------- */
.flightpath-wrap {
  position: relative; max-width: 900px; margin: 0 auto;
}
.fp-svg { display: block; width: 100%; height: auto; }
.fp-path {
  fill: none; stroke: var(--ink-soft); stroke-width: 2.5;
  stroke-dasharray: 2 10; stroke-linecap: round; opacity: 0.55;
}
.fp-dot {
  fill: var(--accent); stroke: var(--card); stroke-width: 3;
}
.fp-label {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 21px;
  fill: var(--ink);
}
.fp-plane {
  color: var(--accent);
}
@media (max-width: 700px) {
  .fp-label { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .fp-plane animateMotion { display: none; }
}

.price-note {
  text-align: center; max-width: 640px; margin: 0 auto 34px;
  font-size: 13.5px; color: var(--ink-soft); line-height: 1.55;
  background: var(--bg-deep); border-radius: 12px; padding: 14px 20px;
}

/* ---------- LEGAL PAGES ---------- */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 20px; margin-top: 40px; margin-bottom: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 12px; }
.legal-content ul { margin: 10px 0 16px 20px; }
.legal-content li { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--accent-2); font-weight: 600; }
.legal-notice {
  background: rgba(255,184,0,0.1); border: 1px solid rgba(255,184,0,0.3);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 36px;
  font-size: 13.5px; color: var(--ink-soft); line-height: 1.55;
}
.legal-notice b { color: var(--ink); }

.foot-links-404 { display: flex; gap: 24px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.foot-links-404 a { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.foot-links-404 a:hover { color: var(--accent); }

.qcm-confirm {
  display: none; text-align: center; padding: 40px 24px;
  background: rgba(14,159,110,0.08); border-radius: 16px;
}
.qcm-confirm.visible { display: block; animation: qcmConfirmIn 0.4s ease; }
.qcm-confirm svg { color: #0E9F6E; margin-bottom: 16px; }
.qcm-confirm h3 { font-size: 20px; margin-bottom: 10px; }
.qcm-confirm p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; max-width: 440px; margin: 0 auto; }
.qcm-confirm a { color: var(--accent-2); font-weight: 700; }
@keyframes qcmConfirmIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.payment-badges {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line);
}
.payment-badges-label { font-size: 12px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.payment-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: #4A6467;
  background: var(--cream-fixed); border: 1px solid rgba(31,58,61,0.13); border-radius: 100px; padding: 8px 14px;
}
.payment-badge .brand-mark { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: -0.02em; }
.payment-badge .paypal-pay { color: #003087; }
.payment-badge .paypal-pal { color: #0070ba; }
.payment-badge .stripe-mark { color: #4f48cc; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ---------- BLOG ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  display: block; border-radius: 18px; overflow: hidden; background: var(--card);
  border: 1px solid var(--line); box-shadow: 0 10px 24px var(--shadow);
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px var(--shadow); }
.blog-card-img { height: 180px; background-size: cover; background-position: center; }
.blog-card-body { padding: 22px; }
.blog-card-tag {
  display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--accent); margin-bottom: 10px;
}
.blog-card-body h2 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
.blog-card-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- ACCESSIBILITY: visible keyboard focus everywhere ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
.qcm-opt:focus-visible, .theme-btn:focus-visible, .card-collapsible:focus-visible,
.faq-q:focus-visible, .dest-card:focus-visible {
  outline: 3px solid var(--accent-2); outline-offset: 3px; border-radius: 4px;
}
.qcm-field input:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 2px; border-color: var(--accent); }

.blog-inline-img {
  width: 100%; height: 320px; object-fit: cover; border-radius: 16px;
  margin: 28px 0; box-shadow: 0 16px 32px var(--shadow);
}
@media (max-width: 640px) {
  .blog-inline-img { height: 200px; }
}

.faq-cat-title {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent); margin: 40px 0 16px;
}
.faq-cat-title:first-child { margin-top: 0; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }

.foot-social { display: flex; gap: 14px; margin-top: 18px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--bg-deep); color: var(--ink-soft); transition: color 0.2s ease, background 0.2s ease;
}
.foot-social a:hover { color: var(--accent); background: var(--card); }
