/* =========================================================
   ID 2 RÊVES — design system
   ========================================================= */

:root {
  --color-primary: #045d73;
  --color-primary-dark: #023442;
  --color-secondary: #48d1cc;
  --color-secondary-light: #b7ece9;
  --color-accent: #f2a13c;
  --color-accent-dark: #d9871a;
  --color-ink: #123039;
  --color-ink-soft: #3d5a61;
  --color-cream: #fbf7ef;
  --color-cream-deep: #f3ead9;
  --color-white: #ffffff;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(18, 48, 57, 0.08);
  --shadow-md: 0 16px 40px rgba(18, 48, 57, 0.12);
  --shadow-lg: 0 30px 70px rgba(18, 48, 57, 0.18);

  --container: 1180px;
  --section-pad: clamp(64px, 9vw, 120px);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--color-primary-dark); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; position: relative; }
.section--tint { background: var(--color-cream-deep); }
.section--dark {
  background: linear-gradient(160deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
}
.section--dark h2, .section--dark h3, .section--dark p { color: var(--color-white); }
.section--blue {
  background: linear-gradient(155deg, #0d6d84, var(--color-secondary) 160%);
  color: var(--color-white);
}
.section--blue h2, .section--blue h3, .section--blue p { color: var(--color-white); }
.section--blue .press-caption { color: rgba(255,255,255,.82); }

.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--color-secondary-light); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h2 + p.section-lead { font-size: 1.08rem; color: var(--color-ink-soft); }
.section--dark p.section-lead { color: rgba(255,255,255,.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  box-shadow: 0 10px 28px rgba(242, 161, 60, 0.4);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(242, 161, 60, 0.5); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--color-white);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-ghost {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.topbar {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 0.82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 12px; flex-wrap: wrap; }
.topbar a { color: inherit; }
.topbar a:hover { color: var(--color-secondary-light); }
.topbar-links { display: flex; gap: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(18,48,57,0.06);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--color-primary-dark); line-height: 1.1; }
.brand-tagline { font-size: 0.72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--color-accent-dark); font-weight: 700; }

.nav-main { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { font-weight: 600; font-size: 0.94rem; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--color-accent); transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none; border: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}

.nav-drawer { display: none; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--color-primary-dark);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span { margin: 6px 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}
/* Decorative background videos are never meant to be tapped/clicked — this
   also suppresses Safari/WebKit's big native play button, which it shows
   by default on any <video> that isn't currently playing (e.g. if iOS
   Low Power Mode or the visitor's own Safari setting blocks autoplay). */
video[autoplay] {
  pointer-events: none;
}
video[autoplay]::-webkit-media-controls,
video[autoplay]::-webkit-media-controls-start-playback-button,
video[autoplay]::-webkit-media-controls-play-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none;
}

.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--color-primary-dark); }
.hero-media video, .hero-media img { position: absolute; top: -12%; left: 0; width: 100%; height: 124%; object-fit: cover; will-change: transform; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,42,52,.55) 0%, rgba(4,42,52,.35) 45%, rgba(4,42,52,.8) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 120px 0 160px; }
.hero .eyebrow { color: var(--color-secondary-light); }
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: .2em;
}
.hero h1 span { display: block; }
.hero-subtitle { font-size: 1.15rem; max-width: 520px; color: rgba(255,255,255,.9); margin-bottom: 2em; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; }
.wave-divider svg { width: 100%; height: auto; display: block; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-media::before {
  content: "";
  position: absolute; inset: -18px -18px auto auto; width: 60%; height: 60%;
  border: 3px solid var(--color-secondary); border-radius: var(--radius-lg);
  z-index: -1;
}
.about-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
  margin-top: 1.5em;
  font-style: italic;
}

/* ---------- Cards grid (roles, benefits) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-secondary-light), var(--color-cream));
  margin-bottom: 20px;
}
.card h3 { font-size: 1.2rem; margin-bottom: .4em; }
.card p, .card li { color: var(--color-ink-soft); }
.card ul { display: flex; flex-direction: column; gap: 8px; }
.card ul li { display: flex; gap: 10px; }
.card ul li::before { content: "✓"; color: var(--color-accent-dark); font-weight: 700; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute; top: 27px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-secondary) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-secondary);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1rem; margin-bottom: .3em; }
.step p { font-size: 0.88rem; color: var(--color-ink-soft); }

/* ---------- Journal ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.journal-book {
  position: relative;
  aspect-ratio: 4/5;
}
.journal-page {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.4s ease, transform 1.8s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.journal-page.is-active { opacity: 1; transform: scale(1); z-index: 1; pointer-events: auto; }
.journal-page img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) {
  .journal-page { transition: none; }
}
.journal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.journal-feature {
  display: flex; align-items: center; gap: 12px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.92rem;
}
.journal-feature .emoji { font-size: 1.3rem; }
.note-block { font-size: 0.92rem; color: var(--color-ink-soft); margin-top: 10px; }

/* ---------- Pricing ---------- */
.pricing-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: stretch; }
.price-card {
  background: linear-gradient(160deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; justify-content: center;
}
.price-card h3 { color: var(--color-white); font-size: 1.5rem; }
.price-card .price-meta { text-transform: uppercase; letter-spacing: .06em; font-size: 0.75rem; color: var(--color-secondary-light); font-weight: 700; margin-bottom: 18px; }
.price-tag { font-family: var(--font-display); font-size: 3.2rem; color: var(--color-accent); margin: 0.1em 0; }
.price-list { background: var(--color-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.price-list h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; color: var(--color-ink-soft); margin-bottom: 20px; }
.tier-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--color-cream-deep);
}
.tier-row:last-of-type { border-bottom: none; }
.tier-row .tier-label { font-weight: 700; }
.tier-row .tier-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--color-primary); }
.tier-row .tier-price span { font-size: 0.8rem; color: var(--color-ink-soft); font-family: var(--font-body); }
.price-custom { margin-top: 26px; padding-top: 22px; border-top: 2px dashed var(--color-secondary-light); }

/* ---------- Testimonials ---------- */
.testi-track {
  display: grid;
  grid-auto-flow: column;
  align-items: start;
  grid-auto-columns: minmax(300px, 360px);
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 26px;
  scroll-snap-type: x mandatory;
}
.testi-track::-webkit-scrollbar { height: 8px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--color-secondary); border-radius: 8px; }
.testi-card {
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testi-head { margin-bottom: 12px; }
.testi-stars { color: var(--color-accent); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 8px; }
.testi-author { font-weight: 700; color: var(--color-primary-dark); font-size: 0.92rem; }
.testi-meta { font-weight: 400; color: var(--color-ink-soft); }
.testi-trip { font-size: 0.78rem; color: var(--color-accent-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.testi-quote {
  font-size: 0.92rem; line-height: 1.5; color: var(--color-ink-soft);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5; overflow: hidden;
}
.testi-quote::before { content: "“"; }
.testi-quote::after { content: "”"; }
.testi-card.is-expanded .testi-quote { -webkit-line-clamp: unset; }
.testi-toggle {
  display: none;
  align-self: flex-start;
  margin-top: 10px;
  background: none; border: none; padding: 0;
  font-size: 0.82rem; font-weight: 700;
  color: var(--color-accent-dark);
  cursor: pointer;
}
.testi-toggle:hover { text-decoration: underline; }
.testi-toggle.is-visible { display: inline-block; }

/* Testimonials sit on a video/photo backdrop: glass cards, light text */
.section--photo .testi-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); box-shadow: none; }
.section--photo .testi-author, .section--photo .testi-quote { color: var(--color-white); }
.section--photo .testi-meta { color: rgba(255,255,255,.75); }
.section--photo .testi-toggle { color: var(--color-accent); }

/* ---------- Press ---------- */
.press-block { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.press-figure { position: relative; display: inline-block; cursor: zoom-in; }
.press-block img { max-width: min(780px, 92vw); width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-md); transition: transform .35s ease, box-shadow .35s ease; }
.press-figure:hover img { transform: scale(1.015); box-shadow: var(--shadow-lg); }
.press-zoom-hint {
  position: absolute; right: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(4,42,52,.82); color: var(--color-white);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.press-figure:hover .press-zoom-hint { opacity: 1; transform: translateY(0); }
.press-caption { font-size: 0.85rem; color: var(--color-ink-soft); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4, 22, 28, 0.93);
  display: flex; align-items: center; justify-content: center;
  padding: 50px 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .3s ease; }
.lightbox-img {
  max-width: min(920px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(.94);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: var(--color-white); border: 1px solid rgba(255,255,255,.3);
  font-size: 1.6rem; line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }

/* ---------- Destination "more" link ---------- */
.dest-more { text-align: center; margin-top: 40px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 28px; font-weight: 700; font-size: 1rem; color: var(--color-primary-dark);
}
.faq-question .plus { font-size: 1.4rem; color: var(--color-accent-dark); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  padding: 0 28px;
}
.faq-item.is-open .faq-answer { padding-bottom: 24px; }
.faq-answer p, .faq-answer ul { color: var(--color-ink-soft); font-size: 0.95rem; }
.faq-answer ul { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.faq-answer ul li::before { content: "— "; color: var(--color-accent-dark); font-weight: 700; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0; }
.icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--color-white);
  border: 1px solid rgba(255,255,255,.25);
  transition: background .25s ease, transform .25s ease;
  font-size: 1.1rem;
}
.icon-link:hover { background: var(--color-accent); transform: translateY(-3px); }
.icon-link svg { width: 19px; height: 19px; }
.contact-form { background: var(--color-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); color: var(--color-ink); }
.contact-form h3 { font-size: 1.2rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; color: var(--color-ink-soft); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-cream-deep); background: var(--color-cream);
  font-family: inherit; font-size: 0.95rem; color: var(--color-ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--color-secondary);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--color-ink-soft); margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-primary-dark); color: rgba(255,255,255,.75); padding: 60px 0 26px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand-name, .footer-brand .brand-tagline { color: var(--color-white); }
.footer-brand .brand-tagline { color: var(--color-secondary-light); }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { color: var(--color-white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; font-family: var(--font-body); }
.footer-col a { display: block; padding: 5px 0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-secondary-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 0.82rem; }
.back-to-top {
  background: rgba(255,255,255,.1); border: none; color: var(--color-white);
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* ---------- Destination detail page ---------- */
.dest-hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: flex-end;
  color: var(--color-white);
  overflow: hidden;
}
.dest-hero-media { position: absolute; inset: 0; overflow: hidden; }
.dest-hero-media img { position: absolute; top: -12%; left: 0; width: 100%; height: 124%; object-fit: cover; will-change: transform; }
.dest-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,42,52,.3), rgba(4,42,52,.92)); }
.dest-hero-content { position: relative; z-index: 2; padding: 140px 0 70px; max-width: 760px; }
.dest-hero h1 { color: var(--color-white); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.breadcrumb { font-size: 0.85rem; color: var(--color-secondary-light); margin-bottom: 16px; }
.breadcrumb a:hover { text-decoration: underline; }

.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.why-list li { display: flex; gap: 10px; background: var(--color-white); border-radius: var(--radius-sm); padding: 14px 18px; box-shadow: var(--shadow-sm); font-weight: 600; font-size: 0.92rem; }
.why-list li::before { content: "✓"; color: var(--color-accent-dark); font-weight: 700; }

.itinerary-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.itinerary-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.itinerary-head h3 { font-size: 1.25rem; margin-bottom: 0; }
.itinerary-duration { font-weight: 700; color: var(--color-accent-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .04em; }
.itinerary-note { color: var(--color-ink-soft); font-size: 0.92rem; margin-bottom: 20px; }
.legs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.leg { border-left: 3px solid var(--color-secondary); padding-left: 16px; }
.leg-place { font-weight: 700; color: var(--color-primary-dark); }
.leg-nights { font-size: 0.78rem; color: var(--color-accent-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.leg ul { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.leg ul li { font-size: 0.87rem; color: var(--color-ink-soft); }
.leg ul li::before { content: "• "; color: var(--color-secondary); }
.itinerary-footnote { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--color-cream-deep); font-size: 0.88rem; color: var(--color-ink-soft); font-style: italic; }

.expertise-block p { color: var(--color-ink-soft); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 50px; }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) and (min-width: 721px) {
  .nav-main { gap: 18px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.86rem; white-space: nowrap; }
}

@media (max-width: 980px) {
  .about-grid, .journal-grid, .pricing-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin: 0 auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .why-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 720px) {
  .nav-links, .nav-main .btn-ghost { display: none; }
  .site-header .container { position: relative; }
  .nav-toggle { display: flex; flex-direction: column; }
  .nav-drawer {
    display: block;
    position: fixed; inset: 0 0 0 30%; top: 0;
    background: var(--color-white);
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }
  .nav-drawer.is-open { transform: translateX(0); }
  .nav-drawer a { display: block; padding: 14px 0; font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid var(--color-cream-deep); }
  .nav-drawer .btn { margin-top: 20px; width: 100%; justify-content: center; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(4,42,52,.4); z-index: 98; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .topbar .container { justify-content: center; text-align: center; }
  .journal-features { grid-template-columns: 1fr; }
  .footer-links { gap: 30px; }
  .footer-top { flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .gallery-item.span-2-2, .gallery-item.span-2-1 { grid-column: span 2; }
  .gallery-item.span-1-2 { grid-row: span 1; }
  .carousel-nav { display: none; }
  .carousel-card { height: 400px; }
}

/* ---------- Ken Burns (continuous slow zoom for cinematic backgrounds) ---------- */
@keyframes kenburns {
  0% { transform: scale(1) translate3d(0,0,0); }
  100% { transform: scale(1.14) translate3d(-1.5%,-1.5%,0); }
}
.ken-burns {
  position: absolute; inset: 0;
  animation: kenburns 24s ease-in-out infinite alternate;
}
.ken-burns img, .ken-burns video { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: reduce) {
  .ken-burns { animation: none; }
}

/* ---------- Full-bleed photo/video sections ---------- */
.section-media { position: absolute; inset: 0; overflow: hidden; }
.section-media video, .section-media img { width: 100%; height: 100%; object-fit: cover; }

.section--photo { position: relative; overflow: hidden; color: var(--color-white); }
.section--photo .section-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(4,42,52,.92), rgba(4,42,52,.7));
}
.section--photo .container { position: relative; z-index: 2; }
.section--photo h2, .section--photo h3, .section--photo p { color: var(--color-white); }
.section--photo .section-lead { color: rgba(255,255,255,.82); }

.section--blue { overflow: hidden; }
.section--blue .section-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(6,60,82,.88), rgba(15,115,140,.72));
}
.section--blue .container { position: relative; z-index: 2; }

.section--photo .card, .section--dark .card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: none;
}
.section--photo .card:hover, .section--dark .card:hover { background: rgba(255,255,255,.13); }
.section--photo .card-icon, .section--dark .card-icon { background: rgba(255,255,255,.14); }
.section--photo .card h3, .section--dark .card h3 { color: var(--color-white); }
.section--photo .card p, .section--photo .card li, .section--dark .card p, .section--dark .card li { color: rgba(255,255,255,.82); }

.section--photo .step-num, .section--dark .step-num {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: var(--color-white);
}
.section--photo .step h3, .section--dark .step h3 { color: var(--color-white); }
.section--photo .step p, .section--dark .step p { color: rgba(255,255,255,.78); }
.section--photo .steps::before, .section--dark .steps::before {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 10px, transparent 10px 18px);
}

.section--dark .faq-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); box-shadow: none; }
.section--dark .faq-question { color: var(--color-white); }
.section--dark .faq-answer p, .section--dark .faq-answer ul { color: rgba(255,255,255,.78); }
.section--dark .faq-answer ul li::before { color: var(--color-accent); }

/* ---------- Destination carousel (Club Med-style) ---------- */
.carousel-wrap { position: relative; }
.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 26px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
  position: relative;
  flex: 0 0 auto;
  width: min(340px, 78vw);
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.carousel-card:nth-child(3n+2) { width: min(300px, 70vw); }
.carousel-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; z-index: 0; }
.carousel-card:hover img { transform: scale(1.06); }
.carousel-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(4,42,52,0) 40%, rgba(4,42,52,.92) 100%);
}
.carousel-card-body { position: relative; z-index: 2; padding: 26px; }
.carousel-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.94); color: var(--color-primary-dark);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 7px 14px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.carousel-card h3 { color: var(--color-white); font-size: 1.35rem; margin-bottom: .15em; }
.carousel-card .carousel-country { font-size: 0.85rem; color: rgba(255,255,255,.85); font-weight: 600; }

.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-white);
  border: none; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; z-index: 5;
  transition: background .2s ease, transform .2s ease;
}
.carousel-nav:hover { background: var(--color-accent-dark); transform: translateY(-50%) scale(1.06); }
.carousel-nav[disabled] { opacity: 0; pointer-events: none; }
.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

.carousel-progress { height: 3px; background: var(--color-cream-deep); border-radius: var(--radius-pill); overflow: hidden; margin-top: 4px; }
.section--dark .carousel-progress { background: rgba(255,255,255,.15); }
.carousel-progress-bar { height: 100%; width: 20%; background: var(--color-accent); border-radius: var(--radius-pill); transition: transform .25s ease, width .25s ease; transform-origin: left; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery-item.span-2-2 { grid-column: span 2; grid-row: span 2; }
.gallery-item.span-2-1 { grid-column: span 2; }
.gallery-item.span-1-2 { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,42,52,0) 55%, rgba(4,42,52,.5) 100%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom-hint {
  position: absolute; right: 14px; bottom: 14px; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(4,42,52,.55); color: var(--color-white);
  font-size: 0.9rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.gallery-item:hover .gallery-zoom-hint { opacity: 1; transform: translateY(0); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-fade { opacity: 0; transition: opacity .7s ease; }
.reveal-fade.is-visible { opacity: 1; }

.reveal-scale {
  opacity: 0;
  transform: scale(1.07);
  transition: opacity .8s ease, transform 1s cubic-bezier(.16,1,.3,1);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
}
