/*
  Public site stylesheet
  ----------------------
  1. Design tokens and reset
  2. Loading intro
  3. Shared utilities and buttons
  4. Header and navigation
  5. Homepage sections
  6. Footer
  7. Motion and responsive rules
*/

/* Design tokens and reset */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ivory: #fff8ed;
  --ivory-dark: #faf3e7;
  --sand: #d8a15f;
  --terracotta: #b85c38;
  --gold: #d99a32;
  --gold-light: #e8b85a;
  --blue: #245b8a;
  --green: #4d6b4d;
  --charcoal: #1d1b17;
  --brown: #6f5643;
  --brown-light: #9a7b65;
  --white: #ffffff;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 30px rgba(29, 27, 23, 0.1);
  --shadow-lg: 0 8px 60px rgba(29, 27, 23, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Loading intro */

body.is-loading {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  touch-action: none;
}

.travel-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(216, 154, 50, 0.14),
      transparent 34%
    ),
    linear-gradient(145deg, #fff8ed 0%, #f4e5cf 46%, #1d1b17 170%);
  color: var(--charcoal);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 820ms;
}

.travel-loader::before,
.travel-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.travel-loader::before {
  background:
    linear-gradient(
      90deg,
      rgba(29, 27, 23, 0.08),
      transparent 24%,
      transparent 76%,
      rgba(184, 92, 56, 0.08)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.34),
      transparent 38%,
      rgba(29, 27, 23, 0.08)
    );
}

.travel-loader::after {
  border: 1px solid rgba(111, 86, 67, 0.1);
  inset: 18px;
}

.travel-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  text-align: center;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.loader-route {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.loader-map {
  width: 100%;
  height: 100%;
  display: block;
}

.loader-route-shadow,
.loader-route-path {
  fill: none;
  stroke-linecap: round;
}

.loader-route-shadow {
  stroke: rgba(29, 27, 23, 0.08);
  stroke-width: 11;
}

.loader-route-path {
  stroke: rgba(232, 184, 90, 0.86);
  stroke-width: 2.2;
  stroke-dasharray: 2 12;
}

.loader-plane {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(42px, 7vw, 58px);
  height: clamp(42px, 7vw, 58px);
  color: var(--terracotta);
  fill: currentColor;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
  filter: drop-shadow(0 12px 20px rgba(29, 27, 23, 0.22))
    drop-shadow(0 0 8px rgba(232, 184, 90, 0.26));
  transition: opacity 360ms ease;
}

.travel-loader.is-hidden .loader-inner {
  opacity: 0;
  transform: translateY(-14px) scale(0.985);
}

.travel-loader.is-hidden .loader-route {
  opacity: 0;
  transform: translateY(-24px) scale(1.015);
}

.travel-loader.is-hidden .loader-plane {
  opacity: 0 !important;
}

.loader-brand {
  font-family: var(--font-serif);
  font-size: clamp(32px, 7vw, 58px);
  font-weight: 600;
  line-height: 1;
  color: var(--charcoal);
}

.loader-brand span {
  color: var(--terracotta);
}

.loader-subtitle {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(111, 86, 67, 0.72);
}

body.intro-pending #top-bar,
body.intro-pending #navbar {
  opacity: 0;
  transform: translateY(-12px);
}

body.intro-pending #hero .hero-bg {
  animation: none;
  transform: scale(1.06);
}

body.intro-pending #hero .hero-label,
body.intro-pending #hero .hero-h1,
body.intro-pending #hero .hero-sub,
body.intro-pending #hero .hero-ctas,
body.intro-pending #hero .trust-chips,
body.intro-pending #hero .hero-float-cards {
  opacity: 0;
  transform: translateY(18px);
}

body.intro-pending #hero .hero-float-cards {
  transform: translate(28px, -50%);
}

body.intro-pending #hero .route-plane,
body.intro-pending #hero .hero-float-cards .float-card {
  opacity: 0;
}

body.intro-pending #hero .hero-float-cards .float-card {
  filter: blur(5px) saturate(0.88);
}

body.intro-pending #hero::after,
body.intro-ready #hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(29, 27, 23, 0.86),
      rgba(68, 42, 30, 0.74) 52%,
      rgba(184, 92, 56, 0.34)
    ),
    radial-gradient(
      circle at 22% 44%,
      rgba(216, 154, 50, 0.18),
      transparent 34%
    );
  transform-origin: top;
}

body.intro-ready #top-bar,
body.intro-ready #navbar {
  animation: introHeaderIn 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.intro-ready #hero .hero-bg {
  animation:
    heroIntroZoom 1700ms cubic-bezier(0.22, 1, 0.36, 1) forwards,
    heroZoom 12s ease-in-out 1700ms infinite alternate;
}

body.intro-ready #hero::after {
  animation: heroVeilAway 1050ms cubic-bezier(0.76, 0, 0.24, 1) 180ms forwards;
}

body.intro-ready #hero .hero-label {
  animation: introElementIn 720ms cubic-bezier(0.22, 1, 0.36, 1) 360ms forwards;
}

body.intro-ready #hero .hero-h1 {
  animation: introElementIn 820ms cubic-bezier(0.22, 1, 0.36, 1) 510ms forwards;
}

body.intro-ready #hero .hero-sub {
  animation: introElementIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 690ms forwards;
}

body.intro-ready #hero .hero-ctas {
  animation: introElementIn 720ms cubic-bezier(0.22, 1, 0.36, 1) 860ms forwards;
}

body.intro-ready #hero .trust-chips {
  animation: introElementIn 720ms cubic-bezier(0.22, 1, 0.36, 1) 1010ms forwards;
}

body.intro-ready #hero .hero-float-cards {
  animation: introCardsIn 880ms cubic-bezier(0.22, 1, 0.36, 1) 780ms forwards;
}

body.intro-ready #hero .route-line {
  z-index: 5;
}

body.intro-ready #hero .route-plane {
  animation: routePlaneHero 1600ms cubic-bezier(0.22, 1, 0.36, 1) 720ms forwards;
}

body.intro-ready #hero .hero-float-cards .float-card {
  animation: routeCardReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.intro-ready #hero .hero-float-cards .float-card:nth-child(1) {
  animation-delay: 960ms;
}

body.intro-ready #hero .hero-float-cards .float-card:nth-child(2) {
  animation-delay: 1190ms;
}

body.intro-ready #hero .hero-float-cards .float-card:nth-child(3) {
  animation-delay: 1420ms;
}

/* Intro animation keyframes */

@keyframes introHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroIntroZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes heroVeilAway {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@keyframes introElementIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes introCardsIn {
  from {
    opacity: 0;
    transform: translate(28px, -50%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes routePlaneHero {
  0% {
    offset-distance: 0%;
    opacity: 0;
    transform: scale(0.68);
  }
  12% {
    opacity: 0.98;
  }
  72% {
    opacity: 0.98;
    transform: scale(1);
  }
  100% {
    offset-distance: 100%;
    opacity: 0.62;
    transform: scale(0.58);
  }
}

@keyframes routeCardReveal {
  from {
    opacity: 0;
    filter: blur(5px) saturate(0.88);
  }
  to {
    opacity: 1;
    filter: none;
  }
}

/* Base elements */

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.float-card,
.dest-card,
.tour-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Utilities */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Top bar */
#top-bar {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 0;
}
#top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
#top-bar .loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
}
#top-bar .loc::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
#top-bar .right {
  display: flex;
  align-items: center;
  gap: 16px;
}
#top-bar .top-phone,
#top-bar .top-email {
  white-space: nowrap;
}
#top-bar a:hover {
  color: var(--gold);
  transition: color 0.2s;
}
#top-bar .socials {
  display: flex;
  gap: 11px;
}
.social-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 248, 237, 0.68);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    transform 0.2s;
  font-size: 14px;
}
.social-icon svg {
  width: 1em;
  height: 1em;
  display: block;
}
.social-icon:hover {
  border-color: var(--gold);
  background: rgba(232, 184, 90, 0.1);
  color: var(--gold);
  transform: translateY(-1px);
}
.social-tripadvisor {
  color: rgba(128, 212, 141, 0.86);
  border-color: rgba(128, 212, 141, 0.24);
  font-size: 15px;
}
.social-whatsapp {
  color: rgba(120, 219, 161, 0.88);
  border-color: rgba(120, 219, 161, 0.22);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 120;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 92, 56, 0.96);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(29, 27, 23, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}
.back-to-top span {
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(4px) rotate(45deg);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover {
  background: #a04e2f;
  transform: translateY(-2px);
}
.back-to-top:focus-visible {
  outline: 3px solid rgba(232, 184, 90, 0.72);
  outline-offset: 3px;
}

/* Main navigation */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  transition:
    background 0.35s,
    box-shadow 0.35s,
    backdrop-filter 0.35s;
}
#navbar.scrolled {
  background: rgba(255, 248, 237, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(29, 27, 23, 0.08);
}
#navbar:not(.scrolled) {
  background: transparent;
}
#navbar .container {
  max-width: 1240px;
  padding-left: 28px;
  padding-right: 28px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 18px;
  flex-wrap: nowrap;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo span {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(14px, 1.55vw, 24px);
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}
.nav-links li {
  flex: 0 0 auto;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 6px 0;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--terracotta);
  background: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1a7340;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(26, 115, 64, 0.25);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-whatsapp:hover {
  background: rgba(26, 115, 64, 0.07);
  border-color: rgba(26, 115, 64, 0.45);
}
.btn-whatsapp svg {
  width: 15px;
  height: 15px;
}
#navbar .btn-whatsapp {
  min-height: 40px;
  padding: 0 16px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 9px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 9px;
  letter-spacing: 0.01em;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #a04e2f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 92, 56, 0.3);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
#navbar .btn-primary {
  min-height: 42px;
  padding: 0 22px;
  font-size: 13px;
  border-radius: 9px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* Mobile navigation */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ivory);
  padding: 0;
  flex-direction: column;
  overflow-y: auto;
}
#mobile-nav.open {
  display: flex;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(184, 92, 56, 0.1);
}
.mobile-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(29, 27, 23, 0.15);
  font-size: 18px;
  color: var(--charcoal);
  cursor: pointer;
}
.mobile-links {
  list-style: none;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-links a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(29, 27, 23, 0.06);
}
.mobile-actions {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-actions .btn-primary {
  justify-content: center;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 12px;
}
.mobile-actions .btn-whatsapp {
  justify-content: center;
  width: 100%;
  padding: 13px;
  font-size: 15px;
  border-radius: 12px;
}

/* Hero */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
.hero-bg-image {
  background-image: url("https://images.pexels.com/photos/30283746/pexels-photo-30283746.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-size: cover;
  background-position: center 40%;
}
.hero-bg-video {
  display: block;
  object-fit: cover;
  object-position: center 40%;
  background: var(--charcoal);
  animation: none !important;
  transform: none !important;
  backface-visibility: hidden;
  will-change: auto;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(29, 27, 23, 0.72) 0%,
    rgba(29, 27, 23, 0.5) 55%,
    rgba(29, 27, 23, 0.2) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(
    to top,
    rgba(255, 248, 237, 0.25) 0%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 0 80px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-label::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 600;
  line-height: 1.04;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-ctas .btn-primary {
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: 10px;
}

.trust-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

/* Hero floating cards */
.hero-float-cards {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.float-card {
  width: 160px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateX(0);
  transition: transform 0.4s ease;
}
.float-card:nth-child(2) {
  transform: translateX(18px);
}
.float-card:nth-child(3) {
  transform: translateX(6px);
}
.float-card img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.float-card:hover img {
  transform: scale(1.07);
}
.float-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 10px 8px;
  background: linear-gradient(
    to top,
    rgba(29, 27, 23, 0.75) 0%,
    transparent 100%
  );
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero route line */
.route-line {
  position: absolute;
  right: calc(5% + 180px);
  top: 50%;
  width: 20px;
  height: 360px;
  transform: translateY(-50%);
  z-index: 2;
}
.route-line svg {
  display: block;
  overflow: visible;
}
.route-path {
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 8 5;
  stroke-dashoffset: 0;
  opacity: 0.7;
  animation: routeAnim 3s linear infinite;
}
@keyframes routeAnim {
  to {
    stroke-dashoffset: -52;
  }
}
.route-plane {
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  color: #fff8ed;
  fill: currentColor;
  opacity: 0;
  offset-path: path("M 10 10 Q 18 90 10 120 Q 2 150 10 240 Q 18 270 10 350");
  offset-distance: 0%;
  offset-anchor: 50% 50%;
  offset-rotate: auto;
  filter: drop-shadow(0 7px 12px rgba(29, 27, 23, 0.26))
    drop-shadow(0 0 8px rgba(232, 184, 90, 0.35));
  transform: scale(0.68);
  transform-origin: center;
  will-change: offset-distance, opacity, transform;
}

/* Booking strip */
#booking-strip {
  position: relative;
  z-index: 10;
  margin-top: -52px;
  padding: 0 24px 0;
}
.booking-card {
  max-width: 1020px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 60px rgba(29, 27, 23, 0.14);
  padding: 28px 32px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.booking-field {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-light);
}
.booking-field select,
.booking-field input {
  border: 1.5px solid rgba(111, 86, 67, 0.18);
  border-radius: 9px;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--ivory);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.booking-field select:focus,
.booking-field input:focus {
  border-color: var(--sand);
}
.booking-submit {
  flex-shrink: 0;
}
.booking-submit .btn-primary {
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
}

/* About */
#about {
  padding: 100px 0 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-float-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1.5px;
  background: var(--sand);
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.13;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.about-heading em {
  font-style: italic;
  color: var(--terracotta);
}

.about-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--brown);
  margin-bottom: 32px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
}
.value-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(184, 92, 56, 0.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 14px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
  padding: 12px 24px;
  border-radius: 9px;
  border: 1.5px solid var(--terracotta);
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* Shared section headers */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15.5px;
  color: var(--brown-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Excursions */
#excursions {
  padding: 80px 0 100px;
  background: var(--ivory-dark);
}
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(29, 27, 23, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  cursor: pointer;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(29, 27, 23, 0.15);
}
.tour-img-wrap {
  overflow: hidden;
  height: 210px;
  position: relative;
}
.tour-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-img-wrap img {
  transform: scale(1.06);
}
.tour-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(29, 27, 23, 0.55);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 6px;
}
.tour-body {
  padding: 22px 22px 18px;
}
.tour-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  align-items: center;
}
.tour-duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--brown-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tour-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--terracotta);
  margin-left: auto;
}
.tour-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 8px;
}
.tour-desc {
  font-size: 13.5px;
  color: var(--brown-light);
  line-height: 1.55;
  margin-bottom: 18px;
}
.tour-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}
.tour-card:hover .tour-cta {
  gap: 10px;
}
.tour-gold-line {
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--sand) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.tour-card:hover .tour-gold-line {
  transform: scaleX(1);
}

/* Destinations */
#destinations {
  padding: 86px 0 72px;
  background:
    radial-gradient(
      circle at 50% 4%,
      rgba(216, 161, 95, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, var(--ivory) 0%, #fffaf1 48%, var(--ivory) 100%);
  overflow: hidden;
}
#destinations .section-header {
  margin-bottom: 34px;
}
#destinations .section-title {
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 0.98;
  margin-top: 10px;
  margin-bottom: 12px;
}
#destinations .section-subtitle {
  font-size: clamp(16px, 1.6vw, 21px);
  color: rgba(111, 86, 67, 0.84);
}
.dest-showcase {
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.55fr);
  gap: 22px;
  align-items: stretch;
  width: 100%;
}
.dest-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(218px, 1fr);
  gap: 18px;
}
.dest-secondary-grid .dest-card:nth-child(5):last-child {
  grid-column: 1 / -1;
}
.dest-card {
  position: relative;
  display: block;
  min-height: 236px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
  box-shadow: 0 18px 42px rgba(29, 27, 23, 0.14);
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.dest-card-featured {
  min-height: clamp(560px, 48vw, 680px);
  border-radius: 20px;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}
.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(29, 27, 23, 0.2);
}
.dest-card:hover img {
  transform: scale(1.065);
  filter: saturate(1.04) contrast(1.02);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(29, 27, 23, 0.02) 0%,
      rgba(29, 27, 23, 0.18) 42%,
      rgba(14, 13, 11, 0.86) 100%
    ),
    linear-gradient(
      90deg,
      rgba(29, 27, 23, 0.24) 0%,
      rgba(29, 27, 23, 0.06) 58%,
      rgba(29, 27, 23, 0.2) 100%
    );
  transition:
    opacity 0.35s ease,
    background 0.35s ease;
}
.dest-card:hover .dest-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(29, 27, 23, 0.08) 0%,
      rgba(29, 27, 23, 0.28) 40%,
      rgba(14, 13, 11, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(29, 27, 23, 0.34) 0%,
      rgba(29, 27, 23, 0.08) 58%,
      rgba(29, 27, 23, 0.24) 100%
    );
}
.dest-info {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dest-card-featured .dest-info {
  bottom: 34px;
  left: 34px;
  right: 34px;
}
.dest-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 184, 90, 0.86);
  margin-bottom: 14px;
}
.dest-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 0.98;
  margin-bottom: 9px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.3);
}
.dest-card-featured .dest-name {
  font-size: clamp(48px, 5.4vw, 68px);
  margin-bottom: 12px;
}
.dest-tagline {
  max-width: 34em;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 13px;
  line-height: 1.35;
}
.dest-card-featured .dest-tagline {
  font-size: clamp(18px, 1.8vw, 24px);
  color: rgba(255, 255, 255, 0.88);
}
.dest-rule {
  width: 46px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 999px;
  margin-bottom: 11px;
}
.dest-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 248, 237, 0.14);
  border: 1px solid rgba(255, 248, 237, 0.22);
  color: rgba(255, 248, 237, 0.92);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  transform: translateY(4px);
  opacity: 0.92;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.dest-card-featured .dest-explore {
  background: linear-gradient(135deg, var(--gold-light), var(--sand));
  color: var(--charcoal);
  border-color: transparent;
  font-size: 13px;
  padding: 13px 24px;
}
.dest-card:hover .dest-explore {
  transform: translateY(0);
  background: rgba(255, 248, 237, 0.2);
  border-color: rgba(232, 184, 90, 0.46);
}
.dest-card-featured:hover .dest-explore {
  background: linear-gradient(135deg, #f1c875, var(--gold));
}
.destinations-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.destinations-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border: 1px solid rgba(111, 86, 67, 0.34);
  border-radius: 10px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 248, 237, 0.62);
  box-shadow: 0 10px 28px rgba(29, 27, 23, 0.06);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}
.destinations-all-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 92, 56, 0.55);
  background: var(--white);
  color: var(--terracotta);
}

.sand-edge-section {
  position: relative;
  z-index: 1;
  height: clamp(64px, 7.5vw, 110px);
  margin-top: -1px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(255, 248, 237, 0) 0%,
    rgba(217, 194, 163, 0.18) 40%,
    rgba(111, 86, 67, 0.42) 72%,
    var(--charcoal) 100%
  );
}
.sand-edge-section::before,
.sand-edge-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sand-edge-section::before {
  background: linear-gradient(
    180deg,
    #f7f1e8 0%,
    #d9c2a3 42%,
    #c8a27b 66%,
    #6f5643 84%,
    var(--charcoal) 100%
  );
  mask-image: url("../img/sand-edge-divider.png");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-position: center bottom;
  -webkit-mask-image: url("../img/sand-edge-divider.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center bottom;
}
.sand-edge-section::after {
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(
      circle at 12% 42%,
      rgba(111, 86, 67, 0.18) 0 0.75px,
      transparent 1px
    ),
    radial-gradient(
      circle at 76% 61%,
      rgba(255, 248, 237, 0.28) 0 0.8px,
      transparent 1.1px
    ),
    radial-gradient(
      circle at 48% 80%,
      rgba(184, 92, 56, 0.14) 0 0.8px,
      transparent 1.1px
    );
  background-size:
    21px 21px,
    31px 31px,
    25px 25px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 28%,
    #000 100%
  );
}
.sand-edge-section-flip {
  margin-bottom: -1px;
  background: linear-gradient(
    180deg,
    var(--charcoal) 0%,
    rgba(111, 86, 67, 0.48) 30%,
    rgba(200, 162, 123, 0.5) 58%,
    rgba(247, 241, 232, 0.72) 82%,
    var(--ivory-dark) 100%
  );
}
.sand-edge-section-flip::before {
  background: linear-gradient(
    180deg,
    var(--charcoal) 0%,
    #6f5643 20%,
    #c8a27b 44%,
    #d9c2a3 68%,
    var(--ivory-dark) 100%
  );
  transform: rotate(180deg);
  mask-position: center top;
  -webkit-mask-position: center top;
}
.sand-edge-section-flip::after {
  opacity: 0.24;
  background-image:
    radial-gradient(
      circle at 22% 28%,
      rgba(255, 248, 237, 0.22) 0 0.75px,
      transparent 1px
    ),
    radial-gradient(
      circle at 68% 52%,
      rgba(111, 86, 67, 0.16) 0 0.8px,
      transparent 1.1px
    ),
    radial-gradient(
      circle at 44% 82%,
      rgba(184, 92, 56, 0.12) 0 0.8px,
      transparent 1.1px
    );
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 72%,
    transparent 100%
  );
}
/* Transport */
#transport {
  padding: 72px 0 100px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#transport::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/34100471/pexels-photo-34100471.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center right;
  opacity: 0.22;
}
.transport-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.transport-content .section-label {
  color: var(--gold-light);
}
.transport-content .section-label::after {
  background: var(--gold);
}
.transport-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.transport-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}
.transport-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.transport-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.transport-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.transport-trust {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before {
  content: "✓";
  color: var(--gold);
  font-size: 14px;
}
.transport-img-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.transport-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why us */
#why-us {
  padding: 80px 0 100px;
  background: var(--ivory-dark);
  position: relative;
  overflow: hidden;
}
.zellige-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      45deg,
      var(--terracotta) 0px,
      var(--terracotta) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      -45deg,
      var(--sand) 0px,
      var(--sand) 1px,
      transparent 1px,
      transparent 20px
    );
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(184, 92, 56, 0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.why-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.why-text {
  font-size: 13.5px;
  color: var(--brown-light);
  line-height: 1.65;
}

/* Timeline */
#timeline {
  padding: 80px 0 100px;
}
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.timeline-line {
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(216, 161, 95, 0.2);
  z-index: 0;
}
.timeline-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--sand) 100%);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.step-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(216, 161, 95, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(29, 27, 23, 0.08);
  transition:
    background 0.3s,
    border-color 0.3s;
  position: relative;
}
.step-dot.active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.step-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.step-text {
  font-size: 13px;
  color: var(--brown-light);
  line-height: 1.6;
}

/* Testimonials */
#testimonials {
  padding: 80px 0 100px;
  background: var(--ivory-dark);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 4px 24px rgba(29, 27, 23, 0.06);
  position: relative;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.star {
  color: var(--gold);
  font-size: 14px;
}
.review-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--charcoal);
}
.author-trip {
  font-size: 12px;
  color: var(--brown-light);
}
.review-source {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
}
.testimonials-cta {
  text-align: center;
}

/* Homepage blog preview */
#blog {
  padding: 80px 0 100px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(29, 27, 23, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.04);
}
.blog-body {
  padding: 22px 22px 24px;
}
.blog-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.blog-date {
  font-size: 11px;
  color: var(--brown-light);
}
.blog-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 13.5px;
  color: var(--brown-light);
  line-height: 1.6;
  margin-bottom: 18px;
}
.blog-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-link {
  gap: 10px;
}

/* Final call to action */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--charcoal);
}
.final-cta .bg-img {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/35910045/pexels-photo-35910045.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center 35%;
  opacity: 0.28;
}
.final-cta .bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(29, 27, 23, 0.4),
    rgba(29, 27, 23, 0.7)
  );
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.final-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.final-cta-heading em {
  font-style: italic;
  color: var(--gold-light);
}
.final-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-1px);
}
.final-contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.final-contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.final-contact a:hover {
  color: var(--gold-light);
}

/* Footer */
#footer {
  background: #14120f;
  padding: 72px 0 0;
  color: rgba(255, 255, 255, 0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) repeat(
      auto-fit,
      minmax(150px, 1fr)
    );
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand {
  max-width: 390px;
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  text-decoration: none;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.footer-logo-image {
  display: block;
  width: min(320px, 100%);
  max-height: 110px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.2));
}
.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.58);
}
.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-socials .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border-color: rgba(232, 184, 90, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 248, 237, 0.72);
  font-size: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}
.footer-socials .social-icon:hover {
  border-color: rgba(232, 184, 90, 0.58);
  background: rgba(232, 184, 90, 0.11);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.18);
}
.footer-socials .social-tripadvisor {
  color: #80d48d;
  border-color: rgba(128, 212, 141, 0.28);
  background: rgba(128, 212, 141, 0.07);
  font-size: 22px;
}
.footer-socials .social-tripadvisor:hover {
  color: #9be4a5;
  border-color: rgba(128, 212, 141, 0.58);
  background: rgba(128, 212, 141, 0.12);
}
.footer-socials .social-whatsapp {
  color: #78dba1;
  border-color: rgba(120, 219, 161, 0.22);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--white);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-contact-item span:first-child {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a {
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--white);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Responsive rules */
@media (max-width: 1024px) {
  .hero-float-cards,
  .route-line {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-float-badge {
    right: 16px;
  }
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-showcase {
    grid-template-columns: 1fr;
  }
  .dest-card-featured {
    min-height: 460px;
  }
  .dest-secondary-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(230px, auto);
  }
  .transport-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .transport-img-panel {
    aspect-ratio: 16/9;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .timeline-line {
    display: none;
  }
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 1180px) {
  #navbar .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-inner {
    height: 70px;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: flex;
    margin-left: auto;
  }
  .nav-actions > a {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  #top-bar {
    position: sticky;
    top: 0;
    z-index: 115;
    padding: 6px 0;
  }
  #top-bar .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  #top-bar .inner {
    justify-content: center;
  }
  #top-bar .right {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
  }
  #top-bar .top-phone {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(232, 184, 90, 0.24);
    background: rgba(232, 184, 90, 0.08);
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
  }
  #top-bar .top-email {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 10.5px;
  }
  #top-bar .socials {
    flex: 0 0 auto;
    gap: 7px;
  }
  #top-bar .social-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  #navbar {
    top: 42px;
  }
  .sand-edge-section {
    height: 58px;
  }
  .booking-card {
    flex-direction: column;
    gap: 12px;
    padding: 22px 20px;
  }
  .booking-field {
    min-width: auto;
  }
  .booking-submit {
    width: 100%;
  }
  .booking-submit .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .tour-grid {
    grid-template-columns: 1fr;
  }
  #destinations {
    padding: 66px 0 56px;
  }
  #destinations .section-header {
    margin-bottom: 26px;
  }
  #destinations .section-title {
    font-size: clamp(38px, 12vw, 52px);
  }
  .dest-showcase {
    gap: 14px;
  }
  .dest-secondary-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }
  .dest-secondary-grid .dest-card:nth-child(5):last-child {
    grid-column: auto;
  }
  .dest-card,
  .dest-card-featured {
    min-height: 315px;
    border-radius: 16px;
  }
  .dest-card-featured .dest-info,
  .dest-info {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  .dest-card-featured .dest-name {
    font-size: clamp(40px, 13vw, 52px);
  }
  .dest-name {
    font-size: 32px;
  }
  .dest-tagline,
  .dest-card-featured .dest-tagline {
    font-size: 17px;
  }
  .destinations-all-btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    text-align: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .timeline-steps {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-logo-image {
    width: min(260px, 100%);
    max-height: 95px;
  }
  .footer-socials .social-icon {
    width: 46px;
    height: 46px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  #top-bar .loc {
    display: none;
  }
  .about-float-badge {
    position: static;
    margin-top: 16px;
  }

  #hero {
    height: 100vh;
    height: 100dvh;
    min-height: 560px;
    align-items: flex-end;
  }

  .hero-content {
    padding-bottom: 96px;
  }

  .hero-bg-video {
    object-position: center center;
  }

  .route-line,
  .route-plane {
    display: none !important;
  }

  .back-to-top {
    right: 16px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 430px) {
  #top-bar .top-email {
    display: none;
  }
  #top-bar .right {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .loader-plane {
    display: none;
  }

  .route-plane {
    animation: none !important;
    offset-distance: 100%;
    opacity: 0.62;
    transform: scale(0.58);
  }

  body.intro-pending #top-bar,
  body.intro-pending #navbar,
  body.intro-pending #hero .hero-label,
  body.intro-pending #hero .hero-h1,
  body.intro-pending #hero .hero-sub,
  body.intro-pending #hero .hero-ctas,
  body.intro-pending #hero .trust-chips,
  body.intro-pending #hero .hero-float-cards {
    opacity: 1;
    transform: none;
  }

  body.intro-pending #hero .hero-float-cards {
    transform: translateY(-50%);
  }

  body.intro-pending #hero .hero-float-cards .float-card,
  body.intro-ready #hero .hero-float-cards .float-card {
    animation: none !important;
    opacity: 1;
    filter: none;
  }

  body.intro-pending #hero .hero-bg,
  body.intro-ready #hero .hero-bg {
    transform: none;
  }

  body.intro-pending #hero::after,
  body.intro-ready #hero::after {
    opacity: 0;
  }
}
