/* ============================================================
   Talaria Voyages — Design System
   ============================================================ */

:root {
  /* Palette — drawn from the Talaria Voyages crest (navy + gold) */
  --navy-950: #060f1f;
  --navy-900: #0a1830;
  --navy-800: #10203f;
  --navy-700: #17304f;
  --navy-600: #223f66;

  --gold-300: #ecd9a8;
  --gold-400: #d9bc7c;
  --gold-500: #c6a15a;
  --gold-600: #a9843f;
  --gold-700: #8a6a2f;

  --cream: #f8f4ea;
  --cream-dim: #f0e9d8;
  --white: #ffffff;
  --ink: #16223b;
  --ink-soft: #4a5468;
  --stone: #6b6459;

  --gold-gradient: linear-gradient(135deg, #f1dfa8 0%, #c6a15a 45%, #8a6a2f 100%);
  --navy-gradient: linear-gradient(180deg, rgba(6, 15, 31, 0) 0%, rgba(6, 15, 31, 0.6) 60%, rgba(6, 15, 31, 0.82) 100%);

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --radius: 8px;
  --radius-soft: 20px;
  --shadow-soft: 0 20px 60px rgba(6, 15, 31, 0.12);
  --shadow-strong: 0 30px 80px rgba(6, 15, 31, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- Page loader ---------- */
.page-loader {
  position: fixed; inset: 0;
  z-index: 3000;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.page-loader-mark {
  width: clamp(70px, 10vw, 110px);
  height: auto;
  animation: loaderFloat 1.6s ease-in-out infinite;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loaderFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); opacity: 0.85; }
  50% { transform: translateY(-10px) rotate(3deg); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader-mark { animation: none; }
}
button { font-family: inherit; cursor: pointer; touch-action: manipulation; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; color: var(--navy-900); }
p { margin: 0; line-height: 1.7; color: var(--ink-soft); }

/* ---------- Accessibility: focus states ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-950);
  color: var(--white);
  padding: 14px 22px;
  z-index: 2000;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 1100;
  pointer-events: none;
}

/* ---------- GSAP-driven animation hooks ---------- */
.gsap-ready .hero-title, .gsap-ready .hero-sub, .gsap-ready .hero-actions,
.gsap-ready .hero-content .eyebrow { visibility: hidden; }
.gsap-ready .service-card, .gsap-ready .dest-card, .gsap-ready .value-card,
.gsap-ready .team-card, .gsap-ready .why-card { visibility: hidden; }
.gsap-ready .intro-strip blockquote, .gsap-ready .intro-strip .mark-bg, .gsap-ready .intro-strip .intro-emblem-wrap { visibility: hidden; }

.btn-magnetic { transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); will-change: transform; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

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

section { position: relative; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-500);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.on-dark { color: var(--gold-300); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.18; }
.section-head p { margin-top: 18px; font-size: 17px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 16px 34px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  touch-action: manipulation;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(198, 161, 90, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(198, 161, 90, 0.48); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-900);
}
.btn-outline-dark:hover { background: var(--navy-900); color: var(--white); }
.btn-arrow { font-size: 15px; transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248, 244, 234, 0.97);
  border-bottom: 1px solid rgba(16, 32, 63, 0.08);
  transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 6px 0;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(6, 15, 31, 0.08); padding: 0; }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 92px;
  transition: height 0.3s var(--ease);
}
.site-header.scrolled .nav-wrap { height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 78px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .brand img { height: 62px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-600);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--gold-700); }

.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-phone { display: flex; flex-direction: column; text-align: right; flex-shrink: 0; }
.nav-phone span { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); white-space: nowrap; }
.nav-phone a { font-family: var(--font-display); font-size: 16px; color: var(--navy-900); white-space: nowrap; }
.nav-links { flex-shrink: 0; }
.nav-links a { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--navy-900); transition: all 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-950);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; transform: scale(1.12); will-change: transform; }

/* ---------- Hero parallax slideshow ---------- */
.hero-slides { position: absolute; inset: 0; }
.hero-media .hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2.2s ease-in-out, transform 9s ease-out;
}
.hero-media .hero-slide.is-active { opacity: 0.62; transform: scale(1.22); }

@media (prefers-reduced-motion: reduce) {
  .hero-media .hero-slide { transition: none; }
}

/* ---------- Drifting cloud layers ---------- */
.cloud {
  position: absolute;
  pointer-events: none;
  filter: blur(1.5px);
  animation: cloudDrift linear infinite;
  will-change: transform;
}
.cloud svg { width: 100%; height: auto; display: block; }
.cloud-1 { top: 8%; left: -34%; width: 48%; opacity: 0.24; animation-duration: 100s; }
.cloud-2 { top: 30%; left: -44%; width: 34%; opacity: 0.17; animation-duration: 140s; animation-delay: -40s; }
.cloud-3 { top: 56%; left: -26%; width: 24%; opacity: 0.19; animation-duration: 82s; animation-delay: -20s; }
.cta-band .cloud { opacity: 0.12; }

@keyframes cloudDrift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(42vw, -1.4%); }
  50% { transform: translate(85vw, 0.9%); }
  75% { transform: translate(128vw, -0.7%); }
  100% { transform: translate(172vw, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .cloud { animation: none; }
}
.hero-media::after { content: ""; position: absolute; inset: 0; background: var(--navy-gradient); }
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,15,31,0.55) 0%, rgba(6,15,31,0.15) 55%, rgba(6,15,31,0.38) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  max-width: 760px;
}
.hero-content .eyebrow { color: var(--gold-300); }
.hero-content .eyebrow::before { background: var(--gold-400); }
.hero-title {
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold-300); }
.hero-sub {
  margin-top: 26px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}
.hero-actions { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 44px; background: linear-gradient(180deg, var(--gold-400), transparent); animation: scrollpulse 2.2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Small inner-page hero */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy-950);
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 80px;
  box-sizing: border-box;
}
.page-hero .hero-content { padding-top: 0; max-width: 700px; }
.page-hero .hero-title { font-size: clamp(38px, 5vw, 60px); }

/* ============================================================
   Intro strip
   ============================================================ */
.intro-strip {
  background: var(--cream);
  padding: 150px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}
.intro-strip .mark-bg {
  position: absolute;
  top: 10%; left: 7%;
  font-family: var(--font-display);
  font-size: clamp(140px, 20vw, 320px);
  line-height: 1;
  color: var(--gold-500);
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: markFloat 11s ease-in-out infinite;
}
.intro-strip .mark-bg-2 {
  top: auto; left: auto;
  bottom: 8%; right: 7%;
  font-size: clamp(100px, 13vw, 200px);
  opacity: 0.08;
  color: var(--navy-900);
  transform: rotate(9deg);
  animation: markFloat2 14s ease-in-out infinite;
}
@keyframes markFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-3deg); }
}
@keyframes markFloat2 {
  0%, 100% { transform: rotate(9deg) translateY(0); }
  50% { transform: rotate(12deg) translateY(12px); }
}
.intro-strip .intro-emblem-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: clamp(280px, 34vw, 520px);
  aspect-ratio: 1184 / 805;
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: emblemDrift 13s ease-in-out infinite;
}
.intro-strip .intro-emblem-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.intro-strip .intro-emblem-wing {
  clip-path: inset(0% 46% 28% 0%);
  transform-origin: 40% 64%;
  animation: wingFlutter 3.4s ease-in-out infinite;
}
@keyframes emblemDrift {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg); }
  50% { transform: translate(-50%, -53%) rotate(-2deg); }
}
@keyframes wingFlutter {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(-6deg) scale(1.02); }
}
.intro-strip blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy-900);
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.4;
  transform-style: preserve-3d;
}
@media (prefers-reduced-motion: reduce) {
  .intro-strip .mark-bg, .intro-strip .mark-bg-2, .intro-strip .intro-emblem-wrap, .intro-strip .intro-emblem-wing { animation: none; }
}

/* ============================================================
   What We Do — service cards
   ============================================================ */
.services { padding: 130px 0; background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cream-dim);
  border: 1px solid var(--cream-dim);
}
.service-card {
  background: var(--white);
  padding: 48px 34px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
  border-radius: var(--radius-soft);
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: var(--navy-950); transform: translateY(-4px); }
.service-card .tag { display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-700); font-weight: 500; transition: color 0.4s var(--ease); }
.service-card:hover .tag { color: var(--gold-300); }
.service-card .icon { margin: 22px 0 26px; width: 46px; height: 46px; color: var(--gold-600); }
.service-card h3 { font-size: 22px; margin-bottom: 14px; transition: color 0.4s var(--ease); }
.service-card p { font-size: 14.5px; transition: color 0.4s var(--ease); }
.service-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-900); transition: color 0.4s var(--ease); align-self: flex-start; }
.service-card:hover h3, .service-card:hover a { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.68); }
.service-card:hover .icon { color: var(--gold-400); }

/* ============================================================
   Feature rows (Personal Planning / Group Bookings)
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.feature-row + .feature-row { margin-top: 0; }
.feature-media { position: relative; aspect-ratio: 4/3.4; overflow: hidden; border-radius: var(--radius-soft); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.feature-row:hover .feature-media img { transform: scale(1.06); }
.feature-text { padding: 60px 90px; }
.feature-row:nth-child(even) .feature-media { order: 2; }
.feature-text h3 { font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 20px; line-height: 1.25; }
.feature-text p { font-size: 16px; margin-bottom: 26px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.feature-list li { display: flex; align-items: baseline; gap: 12px; font-size: 14.5px; color: var(--ink-soft); }
.feature-list li::before { content: "—"; color: var(--gold-600); }

.planning-band { background: var(--cream); }

/* ============================================================
   Destinations
   ============================================================ */
.destinations { padding: 130px 0; background: var(--navy-950); }
.destinations .section-head h2 { color: var(--white); }
.destinations .section-head p { color: rgba(255,255,255,0.62); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 22px; row-gap: 12px; }
.dest-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-soft);
  transition: transform 0.5s var(--ease);
}
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dest-card:hover { transform: translateY(-4px); }
.dest-card:hover img { transform: scale(1.09); }
.dest-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,31,0) 30%, rgba(6,15,31,0.92) 100%);
}
.dest-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 24px; z-index: 2; }
.dest-info .tag { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-300); }
.dest-info h3 { color: var(--white); font-size: 24px; margin-top: 8px; }

/* Bento asymmetry: Europe = large square hero, USA = wide banner, Africa/Asia = small squares */
.dest-card.wide { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.dest-card.wide .dest-info h3 { font-size: 32px; }
.dest-card.landscape { grid-column: span 2; aspect-ratio: 2/1; }
.dest-card.full { grid-column: span 4; aspect-ratio: 4/1; margin-top: 22px; }
.dest-card.full .dest-info h3 { font-size: 24px; }

/* ============================================================
   Why Us / Stats
   ============================================================ */
.why-us { padding: 130px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 40%); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.why-cards { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.why-card {
  display: flex;
  gap: 22px;
  padding: 26px 24px;
  border-radius: var(--radius-soft);
  background: var(--white);
  border-left: 4px solid var(--gold-500);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.why-card-gold { border-left-color: var(--navy-700); }
.why-card .icon-badge {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
}
.why-card-gold .icon-badge { background: var(--gold-gradient); color: var(--navy-950); }
.why-card .icon { width: 24px; height: 24px; }
.why-card h4 { font-size: 19px; margin-bottom: 8px; font-weight: 700; }
.why-card p { font-size: 14.5px; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.stat { text-align: left; }
.stat .num { font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 48px); color: var(--navy-900); }
.stat .num .suffix { color: var(--gold-600); }
.stat .label { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-top: 6px; }

.why-media { position: relative; }
.why-media::before {
  content: "";
  position: absolute;
  top: -24px; right: -24px;
  width: 160px; height: 160px;
  background: var(--gold-gradient);
  border-radius: var(--radius-soft);
  opacity: 0.85;
  z-index: 0;
}
.why-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-soft); filter: contrast(1.18) saturate(1.1); }
.why-media-badge {
  position: absolute; bottom: -30px; left: -30px;
  z-index: 2;
  background: var(--navy-950);
  color: var(--white);
  padding: 30px 34px;
  max-width: 260px;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-strong);
}
.why-media-badge .num { font-family: var(--font-display); font-size: 40px; color: var(--gold-400); }
.why-media-badge p { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-top: 6px; }
.why-media-badge-stamp { padding: 20px; width: 210px; max-width: 210px; background: var(--navy-950); box-sizing: border-box; }
.why-media-badge-stamp img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain; display: block; }

/* ============================================================
   Testimonials
   ============================================================ */
.testi-track-wrap { position: relative; max-width: 860px; margin: 0 auto; }
.testi-track { position: relative; min-height: 260px; }
.testi-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0.6s;
  text-align: center;
}
.testi-slide.active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
.testi-slide .stars { color: var(--gold-500); font-size: 16px; letter-spacing: 4px; margin-bottom: 24px; }
.testi-slide blockquote { font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 28px); font-style: italic; color: var(--navy-900); line-height: 1.5; }
.testi-author { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px;
}
.testi-author-name { font-size: 14px; font-weight: 500; color: var(--navy-900); }
.testi-author-loc { font-size: 12.5px; color: var(--stone); }

.testi-dots { display: flex; justify-content: center; gap: 2px; margin-top: 44px; }
.testi-dots button { width: 44px; height: 44px; border: none; background: transparent; padding: 0; position: relative; }
.testi-dots button::before {
  content: "";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-300); opacity: 0.5;
  transition: all 0.3s var(--ease);
}
.testi-dots button.active::before { opacity: 1; width: 24px; border-radius: 4px; background: var(--gold-600); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 130px 0; background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cream-dim); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 26px 0;
  background: none; border: none;
  font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy-900);
}
.faq-q .plus { flex-shrink: 0; width: 26px; height: 26px; border: 1px solid var(--gold-500); border-radius: 50%; position: relative; transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--gold-600); transition: all 0.3s var(--ease); }
.faq-q .plus::before { top: 50%; left: 6px; right: 6px; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 6px; bottom: 6px; width: 1px; transform: translateX(-50%); }
.faq-item.open .plus { transform: rotate(90deg); }
.faq-item.open .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding-bottom: 26px; padding-right: 40px; font-size: 15px; font-weight: 600; color: var(--ink); }
.faq-item.open .faq-a { max-height: 300px; }

/* ============================================================
   CTA Band
   ============================================================ */
.cta-band {
  position: relative;
  padding: 140px 0;
  background: var(--navy-950);
  overflow: hidden;
  text-align: center;
}
.cta-band .hero-media img { opacity: 0.28; }
.cta-band-content { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); font-size: clamp(34px, 4.6vw, 60px); }
.cta-band p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 20px auto 0; }
.cta-band .hero-actions { justify-content: center; margin-top: 40px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding-top: 90px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-badge { display: inline-block; margin-bottom: 22px; }
.footer-brand-badge img { height: 76px; }
.footer-top p { color: rgba(255,255,255,0.68); font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 14px; margin-top: 24px; }
.footer-social a { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); color: rgba(255,255,255,0.75); touch-action: manipulation; }
.footer-social a:hover, .footer-social a:focus-visible { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }
.footer-col h5 { color: var(--white); font-family: var(--font-body); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 24px; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: rgba(255,255,255,0.6); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; font-size: 12.5px; color: rgba(255,255,255,0.62); flex-wrap: wrap; gap: 14px; }
.footer-bottom .legal-links { display: flex; gap: 24px; }
.footer-bottom .legal-links a:hover { color: var(--gold-400); }

.back-to-top {
  position: fixed; right: 28px; bottom: 28px;
  width: 50px; height: 50px;
  background: var(--navy-950);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.35s var(--ease);
  z-index: 900;
  border: none; font-size: 18px;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-500); color: var(--navy-950); }

/* ============================================================
   Legal pages (Terms, Privacy)
   ============================================================ */
.legal-hero {
  background: var(--navy-950);
  padding: 170px 0 60px;
}
.legal-hero .eyebrow { color: var(--gold-300); }
.legal-hero .eyebrow::before { background: var(--gold-400); }
.legal-hero h1 { color: var(--white); font-size: clamp(34px, 4.4vw, 52px); }
.legal-hero p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 14px; }

.legal-content { padding: 80px 0 130px; }
.legal-content .container { max-width: 840px; }
.legal-content h2 {
  font-size: 24px;
  margin-top: 52px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-dim);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 17px; margin-top: 28px; margin-bottom: 10px; color: var(--navy-800); }
.legal-content p { margin-bottom: 14px; font-size: 15px; }
.legal-content ul { margin: 0 0 14px; padding-left: 0; }
.legal-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-content ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold-600); }
.legal-content strong { color: var(--navy-900); }

/* ============================================================
   Services page
   ============================================================ */
.services-list { padding: 60px 0 130px; }
.service-row {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 60px;
  padding: 44px 36px;
  margin-bottom: 22px;
  border-radius: var(--radius-soft);
  background: var(--cream);
  border-left: 4px solid var(--gold-500);
  align-items: start;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.service-row:nth-child(even) { background: var(--navy-950); border-left-color: var(--gold-400); }
.service-row:nth-child(even) .row-index { color: var(--gold-400); }
.service-row:nth-child(even) h3 { color: var(--white); }
.service-row:nth-child(even) p { color: rgba(255,255,255,0.72); }
.service-row:nth-child(even) .row-icon { background: var(--gold-gradient); color: var(--navy-950); }
.service-row:nth-child(even) .service-tags span { background: rgba(198,161,90,0.16); color: var(--gold-300); border-color: rgba(198,161,90,0.35); }
.row-head { display: flex; flex-direction: column; align-items: flex-start; }
.row-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.row-icon svg { width: 27px; height: 27px; }
.row-index {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 10px;
}
.service-row h3 { font-size: clamp(24px, 2.4vw, 30px); line-height: 1.25; font-weight: 700; }
.service-row p { font-size: 15.5px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.service-tags span {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
  color: var(--gold-300);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.quote-cta {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.quote-cta::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  background: var(--gold-gradient);
  opacity: 0.35;
  transform: rotate(45deg);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.quote-cta-text { position: relative; z-index: 1; max-width: 560px; }
.quote-cta-text h2 { font-size: clamp(28px, 3vw, 40px); margin-top: 8px; }
.quote-cta-text p { margin-top: 16px; font-size: 15.5px; }
.quote-cta .btn { position: relative; z-index: 1; flex-shrink: 0; }

.how-it-works { background: var(--navy-950); padding: 130px 0; }
.hiw-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 60px; align-items: start; }
.hiw-head { position: sticky; top: 120px; }
.hiw-head h2 { color: var(--white); font-size: clamp(30px, 3.6vw, 46px); line-height: 1.2; margin-top: 16px; }
.hiw-steps { display: flex; flex-direction: column; }
.hiw-step { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 36px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.hiw-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.hiw-num { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: var(--gold-400); line-height: 1; }
.hiw-step h4 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.hiw-step p { color: rgba(255,255,255,0.62); font-size: 15px; }

@media (max-width: 1080px) {
  .service-row { grid-template-columns: 1fr; gap: 20px; }
  .hiw-grid { grid-template-columns: 1fr; gap: 30px; }
  .hiw-head { position: static; }
}
@media (max-width: 720px) {
  .quote-cta { padding: 44px 28px; }
  .hiw-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .hiw-num { font-size: 34px; }
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  left: 28px; bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px 0 16px;
  background: var(--gold-gradient);
  color: var(--navy-950);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  z-index: 900;
  touch-action: manipulation;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-float .icon-circle {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(6, 15, 31, 0.12);
  flex-shrink: 0;
}
.whatsapp-float svg { width: 17px; height: 17px; }
.whatsapp-float .label {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.whatsapp-float:hover, .whatsapp-float:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow-strong); }

@media (max-width: 720px) {
  .whatsapp-float { left: 18px; bottom: 18px; height: 48px; padding: 0 18px 0 14px; gap: 8px; }
  .whatsapp-float .icon-circle { width: 26px; height: 26px; }
  .whatsapp-float svg { width: 15px; height: 15px; }
  .whatsapp-float .label { font-size: 13px; }
}

/* ============================================================
   About page
   ============================================================ */
.story { padding: 130px 0; }
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.story-media { position: relative; }
.story-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-soft); }
.story-media-2 { position: absolute; width: 55%; bottom: -50px; right: -50px; border: 8px solid var(--white); box-shadow: var(--shadow-strong); border-radius: var(--radius-soft); overflow: hidden; }
.story-media-2 img { aspect-ratio: 1/1; border-radius: calc(var(--radius-soft) - 6px); filter: contrast(1.16) saturate(0.88) brightness(0.97); }
.story-media-2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 63, 102, 0.32), rgba(10, 24, 48, 0.12));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.story-text p + p { margin-top: 18px; }
.story-text h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 24px; }
.signature { margin-top: 34px; font-family: var(--font-display); font-style: italic; font-size: 26px; color: var(--gold-600); }

.values { background: var(--cream); padding: 130px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-card { text-align: center; }
.value-card .icon { width: 56px; height: 56px; margin: 0 auto 24px; color: var(--gold-600); }
.value-card h3 { font-size: 20px; margin-bottom: 14px; }
.value-card p { font-size: 14.5px; }

.team { padding: 130px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 3/3.6; overflow: hidden; margin-bottom: 22px; position: relative; border-radius: var(--radius-soft); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card h4 { font-size: 18px; }
.team-card .role { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-600); margin-top: 6px; }

.certs { background: var(--navy-950); padding: 90px 0; }
.certs-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.certs-row p { color: rgba(255,255,255,0.68); max-width: 380px; }
.certs-highlight { color: var(--white); }
.cert-badges { display: flex; gap: 40px; }
.cert-badge { text-align: center; }
.cert-badge .letters { font-family: var(--font-display); font-size: 30px; color: var(--gold-400); letter-spacing: 0.05em; }
.cert-badge .cert-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: 6px; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-section { padding: 130px 0; }
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
.contact-info-card { background: var(--navy-950); color: var(--white); padding: 56px 46px; height: fit-content; border-radius: var(--radius-soft); }
.contact-info-card h3 { color: var(--white); font-size: 26px; margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.contact-detail { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-detail .icon { width: 22px; height: 22px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.contact-detail h5 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 6px; }
.contact-detail a, .contact-detail span { font-size: 15.5px; color: var(--white); }
.contact-detail a { display: block; }
.contact-detail a + a { margin-top: 6px; }
.phone-ext { color: var(--gold-400); font-weight: 500; }
.contact-detail a.phone-sub { font-size: 13px; color: rgba(255,255,255,0.65); }
.contact-social { display: flex; gap: 14px; margin-top: 36px; }
.contact-social a { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); color: rgba(255,255,255,0.8); touch-action: manipulation; }
.contact-social a:hover, .contact-social a:focus-visible { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }

.quote-form { background: var(--cream); padding: 56px; border-radius: var(--radius-soft); }
.quote-form h3 { font-size: 26px; margin-bottom: 10px; }
.quote-form > p { margin-bottom: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.required-mark { color: var(--gold-700); }
.form-field input, .form-field select, .form-field textarea {
  border: none; border-bottom: 1px solid rgba(22,34,59,0.25);
  background: transparent;
  min-height: 44px;
  padding: 12px 2px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--navy-900);
  transition: border-color 0.3s var(--ease);
}
.form-field textarea { min-height: 100px; }
.form-field input[type="date"] { color-scheme: light; accent-color: var(--gold-600); }
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(48%) sepia(32%) saturate(638%) hue-rotate(357deg) brightness(94%) contrast(88%);
  cursor: pointer;
  opacity: 0.8;
}
.form-field input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold-600); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12.5px; color: var(--stone); margin-top: -6px; margin-bottom: 24px; }
.form-status { font-size: 14px; margin-top: 16px; display: none; }
.form-status.show { display: block; }
.form-status.success { color: #3d7a4f; }
.form-status.error { color: #a4392f; }

.map-strip { height: 420px; background: var(--navy-900); position: relative; overflow: hidden; }
.map-strip img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.map-pin .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 8px rgba(198,161,90,0.25); }
.map-pin span { background: var(--white); padding: 8px 16px; font-size: 13px; color: var(--navy-900); box-shadow: var(--shadow-soft); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card.wide, .dest-card.landscape { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .dest-card.wide .dest-info h3 { font-size: 24px; }
  .dest-card.full { grid-column: span 2; aspect-ratio: 16/9; }
  .why-grid, .story-layout, .contact-layout, .faq-layout { grid-template-columns: 1fr; gap: 60px; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-media { order: 0; }
  .feature-text { padding: 60px 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; gap: 60px; }
  .certs-row { justify-content: center; text-align: center; }
  .story-media-2 { display: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .nav-links { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 80vw); background: var(--navy-950); flex-direction: column; align-items: flex-start; justify-content: center; padding: 40px; gap: 26px; transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 999; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--white); font-size: 15px; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn-outline-dark { display: none; }
  .brand img { height: 48px; }
  .site-header.scrolled .brand img { height: 42px; }
  .hero-actions, .cta-band .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-band .hero-actions { align-items: center; }
  .service-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.wide, .dest-card.landscape { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
  .dest-card.full { grid-column: span 1; aspect-ratio: 4/3; margin-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 32px 24px; }
  .contact-info-card { padding: 40px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr; gap: 28px; }
  .cert-badges { gap: 24px; flex-wrap: wrap; justify-content: center; }
}
