/* ===== Tokens ===== */
:root {
  --ink:    #0c1e27;
  --navy:   #062a40;
  --ocean:  #0a3d5c;
  --dusk:   #145c7a;
  --coral:  #ff5438;
  --gold:   #f4a93b;
  --sand:   #fdf8f0;
  --white:  #ffffff;
  --muted:  #4a5a66;

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body:    "Inter", -apple-system, sans-serif;
  --ff-mono:    "Space Mono", monospace;

  --r-card: 20px;
  --r-btn:  999px;
  --wave-h: 32px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--ink); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.1; }

/* scroll-margin for fixed nav */
section, header { scroll-margin-top: 72px; }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: .73rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: .9rem;
}
.section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: .6rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ===== Wave divider ===== */
.wave-divider {
  height: var(--wave-h);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 32' preserveAspectRatio='none'%3E%3Cpath d='M0 16 C 15 0, 15 32, 30 16 S 45 0, 60 16 S 75 32, 90 16 S 105 0, 120 16' fill='none' stroke='%230a3d5c' stroke-width='2.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 120px 32px;
  background-color: var(--white);
}
.wave-divider.on-dark {
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 32' preserveAspectRatio='none'%3E%3Cpath d='M0 16 C 15 0, 15 32, 30 16 S 45 0, 60 16 S 75 32, 90 16 S 105 0, 120 16' fill='none' stroke='%23f4a93b' stroke-width='2.5'/%3E%3C/svg%3E");
}

/* ===== Grain ===== */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: .05; mix-blend-mode: overlay;
}
.grain > * { position: relative; z-index: 2; }

/* ===== Reveal ===== */
.reveal { transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.pending { opacity: 0; transform: translateY(32px); }
.reveal:nth-child(3n+2) { transition-delay: .1s; }
.reveal:nth-child(3n+3) { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) { .reveal.pending { opacity: 1; transform: none; } }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, transparent 100%);
  transition: background .4s ease, box-shadow .4s ease;
}
.navbar.scrolled {
  background: rgba(15,15,15,.8);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .6rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 42px; width: auto; display: block; transition: opacity .2s; }
.logo:hover .logo-img { opacity: .8; }
.footer-logo-img { filter: brightness(0) invert(1); opacity: .85; }

/* Nav links */
.nav-links {
  display: flex; gap: 2.8rem; list-style: none; padding: 0; margin: 0; align-items: center;
}
.nav-link {
  font-family: "Plus Jakarta Sans", var(--ff-body);
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  transition: color .25s;
  white-space: nowrap;
  position: relative;
  padding: .3rem 0;
}
.nav-link::after {
  content: "";
  position: absolute; bottom: -.1rem; left: 50%;
  width: 0; height: 1.5px;
  background: var(--coral);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width .3s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.has-dropdown::after {
  content: "";
  position: absolute; bottom: -.1rem; left: 50%;
  width: 0; height: 1.5px;
  background: var(--coral);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width .3s cubic-bezier(.4,0,.2,1);
}
.nav-dropdown:hover .has-dropdown::after { width: 100%; }
.dropdown-menu {
  position: absolute; top: calc(100% + .9rem); left: -1rem;
  min-width: 220px;
  background: rgba(20,20,20,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, visibility .25s, transform .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: .65rem 1.25rem;
  font-family: "Plus Jakarta Sans", var(--ff-body);
  font-size: .8rem; font-weight: 400;
  color: rgba(255,255,255,.7);
  transition: color .2s, background .2s, padding-left .2s;
}
.dropdown-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
  padding-left: 1.5rem;
}

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 1.1rem; }

/* Language switcher */
.lang-switch {
  display: flex; gap: .1rem; align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .3rem .6rem;
}
.lang-switch button {
  font-family: "Plus Jakarta Sans", var(--ff-body);
  font-size: .7rem; font-weight: 400;
  background: none; border: none;
  color: rgba(255,255,255,.4);
  padding: .15rem .3rem;
  cursor: pointer;
  transition: color .2s;
  letter-spacing: .02em;
}
.lang-switch button:hover { color: rgba(255,255,255,.8); }
.lang-switch button[aria-pressed="true"],
.lang-switch button.lang-active {
  color: #fff; font-weight: 600;
}
.lang-sep {
  color: rgba(255,255,255,.15);
  font-size: .65rem;
  user-select: none;
  padding: 0 .1rem;
}

/* CTA */
.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: "Plus Jakarta Sans", var(--ff-body);
  font-weight: 600; font-size: .82rem;
  background: var(--coral); color: #fff;
  padding: .8rem 1.7rem;
  border-radius: 12px;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, background .2s;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255,84,56,.2);
}
.nav-cta-arrow {
  display: inline-block;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  font-size: .9em;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,84,56,.35);
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(4px); }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none; background: none; border: none;
  color: #fff; cursor: pointer; padding: .5rem;
  width: 40px; height: 40px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block; width: 20px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  position: absolute; left: 10px;
}
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ""; top: -6px; }
.hamburger::after { content: ""; top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 199;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  padding: 2rem;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-links { list-style: none; padding: 0; text-align: center; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav-links a {
  font-family: "Plus Jakarta Sans", var(--ff-body);
  font-size: 1.4rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  letter-spacing: .01em;
}
.mobile-nav-links a:hover { color: #fff; }
.mobile-nav-footer { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin-top: 1rem; }
.lang-switch-mobile {
  display: flex; gap: .1rem; align-items: center;
}
.lang-switch-mobile button {
  font-family: "Plus Jakarta Sans", var(--ff-body);
  font-size: .8rem; font-weight: 400;
  background: none; border: none;
  color: rgba(255,255,255,.4);
  padding: .3rem .5rem;
  cursor: pointer;
  transition: color .2s;
}
.lang-switch-mobile button:hover { color: rgba(255,255,255,.8); }
.lang-switch-mobile button[aria-pressed="true"] {
  color: #fff; font-weight: 600;
}
.mobile-cta {
  font-size: .95rem;
  padding: .9rem 2rem;
  border-radius: 12px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background:
    url("body.png") center 30%/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 9rem 2.5rem 5rem;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(0,0,0,.55),
      transparent 55%
    ),
    linear-gradient(
      90deg,
      rgba(0,0,0,.25),
      rgba(0,0,0,.05)
    ),
    linear-gradient(
      to left,
      rgba(18,36,70,.12),
      transparent
    );
  pointer-events: none; z-index: 1;
}
.hero::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(3,16,26,.6), transparent);
  pointer-events: none; z-index: 1;
}

/* Hero — no distracting animations, luxury = calm */

.hero-content {
  max-width: 1200px; width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 110px;
  align-items: center;
  padding-top: 20px;
}
.hero-text { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold); font-size: .78rem; letter-spacing: .22em; margin-bottom: 1.8rem; }
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -.035em;
  margin: 0 0 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,.3);
  font-weight: 700;
  line-height: 1.05;
}
.hero h1 br { display: block; }
.hero p.tagline {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin: 0 0 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-trust {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  font-family: var(--ff-mono);
  letter-spacing: .01em;
}

/* Stat card hover only — no floating animation */

.hero-stats {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.hero-stat-card {
  background: rgba(20,20,20,.32);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: .25rem;
  text-align: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.hero-stat-primary {
  grid-column: 1 / -1;
  background: rgba(20,20,20,.42);
  border-color: rgba(255,255,255,.16);
  padding: 2rem 1.5rem;
  align-items: center;
}
.hero-stat-primary .hero-stat-number {
  font-size: 3.2rem;
}
.hero-stat-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .12em;
  margin-bottom: .2rem;
}
.hero-stat-card:hover {
  background: rgba(20,20,20,.55);
  border-color: rgba(244,169,59,.35);
  transform: translateY(-3px);
  animation-play-state: paused;
}
.hero-stat-number {
  font-family: var(--ff-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-family: var(--ff-mono);
  letter-spacing: .04em;
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 2.5rem;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  animation: cue-bounce 2.4s ease-in-out infinite;
  z-index: 6;
  transition: border-color .2s, color .2s;
}
.scroll-cue:hover { border-color: var(--gold); color: var(--gold); }
@keyframes cue-bounce {
  0%, 100% { transform: translate(-50%,0); }
  50% { transform: translate(-50%,8px); }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-body); font-weight: 600; font-size: 1rem;
  padding: 1.1rem 2.6rem;
  border-radius: 14px; border: none;
  cursor: pointer; text-decoration: none;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s ease, background .25s ease, border-color .25s ease;
  letter-spacing: .01em;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 4px 20px rgba(255,84,56,.28); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,84,56,.4); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }

/* ===== Trust Strip ===== */
.trust-strip {
  background: #F6F2EB;
  border-bottom: 1px solid rgba(0,0,0,.04);
  padding: 1.4rem 2rem;
}
.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .6;
}
.trust-logo {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  opacity: .55;
  letter-spacing: .01em;
}

/* ===== Why Us ===== */
.why-section {
  background: #F6F2EB;
  padding: 0 0 6rem;
  overflow: visible;
}

/* Visual hook — image with overlapping text card */
.why-visual {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.why-img-wrap {
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.12);
}
.why-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.why-overlap-card {
  position: absolute;
  bottom: -60px; right: 4rem;
  background: #fff;
  border-radius: 24px;
  padding: 2.8rem 3rem;
  max-width: 520px;
  box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.04);
  z-index: 5;
}
.why-overlap-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: .8rem;
}
.why-overlap-card p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* Stats row */
.why-stats {
  max-width: 1400px;
  margin: 6rem auto 4.5rem;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.why-stat {
  text-align: center;
  flex: 1;
  position: relative;
}
.why-stat:not(:last-child)::after {
  content: "";
  position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(0,0,0,.08);
}
.why-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
  margin-bottom: .4rem;
}
.why-stat-text {
  font-size: .8rem;
  color: var(--muted);
  font-family: var(--ff-mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Asymmetric feature cards */
.why-features {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Big feature card — dominant */
.why-feature-big {
  background: #fff;
  border-radius: 28px;
  padding: 3.5rem 3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.03), 0 20px 60px rgba(0,0,0,.06);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-feature-big::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--coral);
  border-radius: 0 4px 4px 0;
}
.why-feature-big:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1), 0 40px 80px rgba(0,0,0,.08);
}
.why-feature-big h3 {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}
.why-feature-big p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 400px;
}
.why-feat-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ocean);
  background: rgba(10,61,92,.07);
  padding: .4rem .9rem;
  border-radius: 999px;
}
.why-feat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: rgba(10,61,92,.07);
  border-radius: 14px;
  color: var(--ocean);
  margin-bottom: 1.25rem;
  transition: background .25s, color .25s;
}
.why-feature-big:hover .why-feat-icon,
.why-feature-sm:hover .why-feat-icon {
  background: var(--ocean);
  color: #fff;
}

/* Small feature grid */
.why-feature-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.why-feature-sm {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.03), 0 16px 48px rgba(0,0,0,.05);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
}
.why-feature-sm:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08), 0 32px 64px rgba(0,0,0,.08);
}
.why-feature-sm .why-feat-icon {
  width: 44px; height: 44px;
  margin-bottom: 1rem;
}
.why-feature-sm h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .35rem;
}
.why-feature-sm p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Featured quote block */
.why-quote-block {
  max-width: 1400px;
  margin: 5rem auto 0;
  padding: 0 2rem;
}
.why-quote-inner {
  background: var(--navy);
  border-radius: 28px;
  padding: 4rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.why-quote-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,.15);
}
.why-quote-inner blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.45;
  max-width: 600px;
  margin: 0;
}
.why-quote-author {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.why-quote-author strong {
  color: #fff;
  font-size: .95rem;
  font-family: var(--ff-display);
}
.why-quote-author span {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  font-family: var(--ff-mono);
  letter-spacing: .03em;
}

/* ===== Tour Cards ===== */
/* Filters */
.tour-filters {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--ff-body); font-size: .82rem; font-weight: 500;
  background: none; border: 1.5px solid rgba(10,61,92,.12);
  color: var(--muted); padding: .5rem 1.2rem;
  border-radius: 999px; cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--ocean); color: var(--ocean); }
.filter-btn.active { background: var(--ocean); border-color: var(--ocean); color: #fff; }

/* Featured card */
.tour-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10,61,92,.06), 0 20px 60px rgba(10,61,92,.1);
  margin-bottom: 3rem;
  background: var(--white);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.tour-featured:hover { transform: translateY(-8px); box-shadow: 0 12px 36px rgba(10,61,92,.12), 0 40px 80px rgba(10,61,92,.12); }
.tour-featured .tour-media { aspect-ratio: auto; height: 100%; min-height: 380px; }
.tour-featured .tour-body { padding: 2.5rem; }
.tour-featured .tour-title-row h3 { font-size: 1.5rem; }

/* Grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.tour-card {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10,61,92,.05), 0 15px 40px rgba(10,61,92,.08);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(10,61,92,.12), 0 40px 72px rgba(10,61,92,.12); }
.tour-media { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.tour-card:hover .tour-media img { transform: scale(1.08); }
.tour-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,42,64,.45) 0%, transparent 55%);
  pointer-events: none;
}
.tour-badge-tag {
  position: absolute; top: 1rem; left: 1rem;
  z-index: 3;
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: .4rem .8rem;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.tour-card:hover .tour-badge-tag {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
  pointer-events: none;
}

.tour-body { padding: 2rem 1.8rem 1.8rem; display: flex; flex-direction: column; flex: 1; gap: .6rem; }
.tour-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; margin-bottom: .4rem; }
.tour-title-row h3 { font-size: 1.15rem; line-height: 1.3; flex: 1; }
.tour-stars { display: flex; align-items: center; gap: .25rem; color: var(--gold); font-size: .85rem; white-space: nowrap; flex-shrink: 0; }
.tour-stars span { color: var(--muted); font-size: .75rem; font-family: var(--ff-mono); }
.desc { color: var(--muted); font-size: .88rem; line-height: 1.7; flex: 1; margin-bottom: .5rem; }
.tour-meta {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: .5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(10,61,92,.06);
}
.meta-item {
  font-size: .82rem; color: var(--dusk);
  background: rgba(10,61,92,.06);
  padding: .28rem .65rem; border-radius: 999px;
  font-family: var(--ff-mono);
  white-space: nowrap;
}
.tour-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; flex-wrap: wrap; }
.price-block { display: flex; flex-direction: column; gap: 0; }
.price-block .from { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-family: var(--ff-mono); }
.price-block .price { font-size: 1.8rem; font-family: var(--ff-display); color: var(--ocean); font-weight: 700; line-height: 1.1; }
.price-block .per { font-size: .72rem; color: var(--muted); }
.book-btn {
  background: var(--ocean); color: #fff;
  padding: .72rem 1.4rem;
  border-radius: var(--r-btn); border: none;
  font-weight: 600; font-family: var(--ff-body); font-size: .9rem;
  cursor: pointer; white-space: nowrap;
  transition: background .25s, transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s;
}
.book-btn:hover { background: var(--dusk); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(10,61,92,.3); }
.book-btn:active { transform: scale(.97); }

/* Micro review */
.tour-micro-review {
  font-size: .82rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-left: .75rem;
  border-left: 2px solid var(--gold);
  line-height: 1.5;
}

/* Guide pill */
.tour-guide-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.tour-guide-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: #fff;
  font-size: .65rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ===== Visual Breaker ===== */
.breaker {
  position: relative;
  min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  background:
    url("https://upload.wikimedia.org/wikipedia/commons/8/86/Rio_de_Janeiro_from_Sugarloaf_mountain%2C_May_2004.jpg") center 40%/cover no-repeat fixed;
  overflow: hidden;
}
.breaker-overlay {
  position: absolute; inset: 0;
  background: rgba(6,20,32,.45);
  pointer-events: none;
}
.breaker-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}
.breaker-text {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}

/* ===== Gallery ===== */
.gallery-section { background: var(--sand); padding-bottom: 5rem; }
.gallery-section .section-head { padding: 0 2rem; }
.gallery-grid {
  columns: 4;
  column-gap: 1rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 14px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.04); }

/* ===== Testimonials ===== */
.testimonials { background: var(--navy); color: #fff; }
.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head p { color: rgba(255,255,255,.6); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testi-card {
  position: relative;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-card);
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  transition: background .25s, border-color .25s, transform .25s;
}
.testi-card:hover { background: rgba(255,255,255,.09); border-color: rgba(244,169,59,.3); transform: translateY(-5px); }
.testi-card::before {
  content: "\201C";
  position: absolute; top: -.2rem; right: 1.25rem;
  font-family: var(--ff-display); font-size: 7rem; line-height: 1;
  color: rgba(244,169,59,.15); pointer-events: none;
}
.stars { color: var(--gold); letter-spacing: .1em; margin-bottom: .8rem; }
.testi-card p.quote { font-style: italic; color: rgba(255,255,255,.85); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.65; }
.testi-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.flag { font-size: 1.5rem; line-height: 1; }
.reviewer strong { display: block; color: #fff; font-size: .95rem; }
.reviewer-location { font-size: .78rem; color: rgba(255,255,255,.5); font-family: var(--ff-mono); }
.testi-tour-badge {
  font-size: .72rem; font-family: var(--ff-mono);
  color: var(--gold); background: rgba(244,169,59,.12);
  border: 1px solid rgba(244,169,59,.25);
  padding: .28rem .65rem; border-radius: 999px;
  white-space: nowrap;
}
.testi-date {
  display: block;
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .7rem;
  font-family: var(--ff-mono);
  color: rgba(255,255,255,.3);
  letter-spacing: .03em;
}

/* ===== About ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center; margin-bottom: 4.5rem;
}
.about-intro img {
  border-radius: var(--r-card);
  box-shadow: 0 24px 64px rgba(10,61,92,.2);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
}
.about-intro img:hover { transform: scale(1.03); }
.about-intro h2 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 1rem; }
.about-intro p { color: var(--muted); line-height: 1.72; font-size: 1.02rem; }
.about-quote { position: relative; }
.about-quote::before {
  content: "\201C";
  position: absolute; top: -2rem; left: -.5rem;
  font-family: var(--ff-display); font-size: 9rem; line-height: 1;
  color: var(--gold); opacity: .14; z-index: -1; pointer-events: none;
}

/* Guide feature */
.guide-feature {
  display: flex; gap: 3.5rem; align-items: center;
  background: var(--sand);
  border-radius: var(--r-card);
  padding: 3rem 3.5rem;
}
.guide-avatar-wrap { flex-shrink: 0; }
.guide-avatar-large {
  width: 140px; height: 140px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 2.8rem; font-weight: 600; color: #fff;
  background: linear-gradient(145deg, var(--coral) 0%, var(--gold) 100%);
  box-shadow: 0 8px 32px rgba(255,84,56,.3), 0 0 0 5px rgba(244,169,59,.2);
}
.guide-bio h3 { font-size: 2rem; margin-bottom: .3rem; }
.guide-bio .role { color: var(--dusk); font-size: .9rem; margin-bottom: 1rem; font-family: var(--ff-mono); letter-spacing: .02em; }
.guide-bio-text { color: var(--muted); line-height: 1.72; font-size: .95rem; margin-bottom: 1rem; }
.guide-details { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: .5rem; }
.guide-detail-item {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-family: var(--ff-mono);
  color: var(--ocean);
  letter-spacing: .01em;
}
.guide-badge {
  display: inline-block;
  margin-top: .75rem;
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ocean);
  padding: .35rem .8rem;
  border-radius: 999px;
}

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-form label {
  display: block; margin-bottom: .4rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; font-family: var(--ff-mono);
  color: var(--gold);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-family: var(--ff-body); font-size: .95rem;
  background: rgba(255,255,255,.07); color: #fff;
  transition: border-color .2s, background .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.3); }
.contact-form select { color: #fff; }
.contact-form select option { background: var(--navy); color: #fff; }
.contact-form input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.6); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,.1);
}
.contact-form button { justify-self: start; }
.form-status { font-size: .9rem; color: #6ec99a; min-height: 1.2em; }

.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.info-row { display: flex; gap: 1rem; align-items: center; color: rgba(255,255,255,.82); font-size: 1rem; }
.info-row .icon { color: var(--coral); flex-shrink: 0; }
.whatsapp-btn {
  background: #25d366; color: #fff;
  display: inline-flex; align-items: center; gap: .6rem;
  width: fit-content; font-size: .95rem;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.map-embed { border-radius: var(--r-card); overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.map-embed iframe { width: 100%; height: 240px; border: 0; display: block; }
.social-row { display: flex; gap: .75rem; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, color .2s, transform .2s;
}
.social-row a:hover { background: var(--ocean); color: #fff; transform: translateY(-3px); }

/* ===== Final CTA ===== */
.final-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 7rem 2rem;
}
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta .eyebrow { margin-bottom: 1rem; }
.final-cta h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: #fff; margin-bottom: 1.1rem; }
.final-cta p { font-size: 1.1rem; color: rgba(255,255,255,.68); line-height: 1.65; margin-bottom: 2.5rem; font-weight: 300; }
.final-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
footer {
  background: var(--navy); color: rgba(255,255,255,.55);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.footer-inner h4 { color: #fff; font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-inner ul { list-style: none; padding: 0; display: grid; gap: .7rem; }
.footer-inner ul a, .footer-inner ul li { font-size: .9rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-inner ul a:hover { color: var(--gold); }
.footer-brand .logo { margin-bottom: .85rem; display: inline-block; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.38); max-width: 300px; line-height: 1.65; }
.footer-proof {
  display: flex; flex-direction: column; gap: .4rem;
  margin-top: 1.2rem;
}
.footer-rating {
  font-size: .78rem;
  font-family: var(--ff-mono);
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
.footer-platforms {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1rem;
}
.platform-badge {
  font-size: .68rem;
  font-family: var(--ff-mono);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: .3rem .7rem;
  border-radius: 6px;
}
.footer-social {
  display: flex; gap: .6rem; margin-top: 1.2rem;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .2s, color .2s, transform .25s;
}
.footer-social a:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .78rem; color: rgba(255,255,255,.28);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem; z-index: 300;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
@media (max-width: 640px) { .whatsapp-float { bottom: 5.5rem; right: 1.25rem; width: 52px; height: 52px; } }

/* ===== Responsive ===== */
@media (max-width: 1060px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-featured { grid-template-columns: 1fr; }
  .tour-featured .tour-media { min-height: 280px; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 3; }
  .why-features { grid-template-columns: 1fr; }
  .why-overlap-card { position: relative; bottom: auto; right: auto; margin: -40px 2rem 0; }
}
@media (max-width: 860px) {
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .guide-feature { flex-direction: column; text-align: center; padding: 2.5rem 2rem; gap: 2rem; }
  .guide-details { justify-content: center; }
  .gallery-grid { columns: 2; }
  .why-stats { flex-wrap: wrap; gap: 1.5rem; }
  .why-stat { flex: 1 1 40%; }
  .why-stat::after { display: none; }
  .why-feature-small-grid { grid-template-columns: 1fr; }
  .why-img-wrap img { height: 340px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: block; }
  .navbar-inner { padding: .9rem .5rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .hero-text { text-align: center; }
  .hero p.tagline { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}
@media (max-width: 640px) {
  .tour-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .why-section { padding-bottom: 4rem; }
  .why-img-wrap img { height: 260px; }
  .why-overlap-card { padding: 2rem; margin: -30px 1rem 0; }
  .why-stats { flex-direction: column; gap: 1.5rem; margin: 4rem auto 3rem; }
  .why-stat::after { display: none; }
  .why-feature-small-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.25rem; }
  .tour-footer { flex-direction: column; align-items: stretch; gap: .75rem; }
  .book-btn { width: 100%; padding: .85rem; text-align: center; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero h1 br { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: .75rem; }
  .hero-stat-card { padding: 1.25rem 1rem; }
  .hero-stat-number { font-size: 1.6rem; }
  .final-cta { padding: 5rem 1.5rem; }
}
@media (max-width: 420px) {
  .gallery-grid { columns: 1; }
  .testi-footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; }
