/* ============================================================
   Colombia Golf Travel — Stylesheet
   Source: Figma file XoUvgKEstlE2yzfw7xhFRw
   ============================================================ */

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

/* ── Design tokens (from Figma variables) ───────────────────── */
:root {
  /* Backgrounds */
  --col-bg:    #3f4a2c;   /* Primary — most sections */
  --root-bg:   #1a2114;   /* Page root (darkest) */
  --surface:   #f2f1e8;   /* About section */
  --light:     #f5f6ed;   /* Active service tab, secondary */
  --footer-bg: #0c0e08;   /* Footer */
  --strip-bg:  #151515;   /* Crafted strip */

  /* Text */
  --sage:      #e5e6c6;   /* Cream/sage — headings on dark, primary btn bg */
  --muted:     #aeafa9;   /* Muted body text on dark */
  --dark:      #1a1c14;   /* Primary text on light */
  --mid:       #6b6c66;   /* Secondary text */
  --stat-num:  #1f3012;   /* Stat numbers in About */

  /* Borders */
  --border:    #e4e4e0;
  --border-brand: #3f4a2c;

  /* Fonts */
  --font-d:    'Playfair Display', Georgia, serif;
  --font-b:    'Inter', system-ui, sans-serif;

  /* Layout */
  --gutter:    clamp(20px, 11.1vw, 160px);
  --content:   1120px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 28px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--root-bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Inner container ──────────────────────────────────────── */
.inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Eyebrow label ────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--col-bg);   /* same as bg — very subtle on dark sections */
}
.eyebrow--sage  { color: var(--sage); letter-spacing: 2px; }
.eyebrow--light { color: var(--sage); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-d);
  line-height: 1.2;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: 40px; line-height: 48px; letter-spacing: -0.5px; }
h2 { font-size: 32px; line-height: 40px; }
h3 { font-size: 24px; line-height: 32px; }
p  { text-wrap: pretty; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}

/* Primary: sage bg, dark text */
.btn-primary {
  background: var(--sage);
  color: var(--col-bg);
}
.btn-primary:hover { background: #d4d5b0; }

/* Ghost: semi-transparent on dark bg */
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--sage);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* Small variant (nav "Book Now") */
.btn-sm {
  height: auto;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.2px;
  border-radius: 8px;
}

/* ============================================================
   NAVBAR — floating pill
   ============================================================ */
.nav {
  position: fixed;
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1370px, calc(100% - 32px));
  height: 72px;
  background: var(--col-bg);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  z-index: 900;
}

.nav__logo {
  height: 51px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 100%;
  width: auto;
}
/* Fallback text logo if image fails */
.nav__logo-text {
  font-family: var(--font-d);
  font-size: 15px;
  color: white;
  white-space: nowrap;
}
.nav__logo-line {
  width: 28px;
  height: 2px;
  background: var(--sage);
  border-radius: 1px;
  margin-top: 4px;
}

.nav__spacer { flex: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.1px;
  transition: opacity var(--transition);
}
.nav__links a:hover { opacity: 0.7; }

/* Dropdown */
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: default;
}
.nav__dropdown-chevron {
  display: inline-block;
  font-size: 13px;
  transition: transform 0.2s ease;
  line-height: 1;
  margin-top: 1px;
}
.nav__dropdown:hover .nav__dropdown-chevron { transform: rotate(90deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding: 14px 6px 6px;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  inset: 14px 0 0;
  background: rgba(15,22,10,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  z-index: -1;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown.dropdown--closed .nav__dropdown-menu {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(-4px) !important;
}
.nav__dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  opacity: 1 !important;
  letter-spacing: 0;
}
.nav__dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: white;
  opacity: 1 !important;
}

/* (mobile-menu sub-items handled below) */

.nav__cta {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--sage);
  color: var(--col-bg);
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav__cta:hover { background: #d4d5b0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 1px;
}
.nav__burger span:nth-child(1) { width: 24px; }
.nav__burger span:nth-child(2) { width: 24px; }
.nav__burger span:nth-child(3) { width: 24px; }

/* ── Mobile menu ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--col-bg);
  z-index: 950;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 0;
  flex-shrink: 0;
}
.mobile-menu__logo { height: 36px; width: auto; }

.mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s ease;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.14); }

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px;
}
.mobile-menu__link {
  font-family: var(--font-d);
  font-size: clamp(28px, 7vw, 42px);
  color: white;
  line-height: 1.25;
  padding: 7px 0;
  transition: color 0.2s ease;
  display: block;
}
.mobile-menu__link:hover { color: var(--sage); }

.mobile-menu__divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0 14px;
}
.mobile-menu__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mobile-menu__sub {
  font-family: var(--font-b);
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  display: block;
  transition: color 0.2s ease;
}
.mobile-menu__sub:hover { color: white; }

.mobile-menu__footer {
  flex-shrink: 0;
  padding: 0 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__cta {
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  font-size: 15px;
  border-radius: 12px;
  display: block;
}
.mobile-menu__contact {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 900px;
  overflow: hidden;
  background: var(--col-bg);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 828px;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.4;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  height: 828px;
  background: linear-gradient(0deg,
    #3f4a2c 0%,
    rgba(63,74,44,0.5) 32%,
    rgba(63,74,44,0.2) 59%,
    rgba(63,74,44,0) 100%);
}

/* Floating context badges */
.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,31,13,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f0f5e5;
  font-size: 11px;
  letter-spacing: 0.2px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* Positioned badges (% of 1440×828) */
.hero__badge--private  { left: 10.6%; top: 74.6%; }
.hero__badge--premium  { left: 28.1%; top: 82.1%; }
.hero__badge--guides   { left: 71.7%; top: 75.6%; }
.hero__badge--five     { left: 85.3%; top: 58.2%; }

.hero__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, calc(100% - 48px));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__title {
  font-family: var(--font-d);
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--sage);
}

.hero__sub {
  font-size: 16px;
  line-height: 24px;
  color: var(--muted);
  max-width: 560px;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================================
   USP SECTION
   ============================================================ */
.usp {
  background: var(--col-bg);
  padding: 80px 0;
}
.usp .inner {
  max-width: 1440px;
}

.usp__header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.usp__header h2 {
  font-size: 32px;
  line-height: 40px;
  color: var(--sage);
}

.usp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* USP Card */
.usp-card {
  background: white;
  border-radius: var(--radius-2xl);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

.usp-card__text {
  flex: 1;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.usp-card__tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.usp-card__tag {
  background: var(--col-bg);
  color: var(--sage);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}

.usp-card__num {
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}

.usp-card__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.usp-card__body {
  font-size: 13px;
  line-height: 20px;
  color: var(--mid);
}

/* Photo: fixed-height bottom panel */
.usp-card__photo {
  height: 264px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.usp-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.usp-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0) 100%);
}

.usp-card__location {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.3);
  padding: 7px 12px;
  border-radius: 999px;
}
.usp-card__location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.usp-card__location-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--sage);
  white-space: nowrap;
}

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.destinations {
  background: var(--col-bg);
  padding: 80px 0;
}
.destinations .inner {
  max-width: 1440px;
}

.destinations__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.destinations__title {
  font-size: 32px;
  line-height: 40px;
  color: var(--sage);
  margin-bottom: 16px;
}

.destinations__sub {
  font-size: 16px;
  line-height: 24px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

/* Row 1: 3 cards × 2 cols each | Row 2: 2 cards × 3 cols each */
.destinations__grid .dest-card:nth-child(-n+3) { grid-column: span 2; }
.destinations__grid .dest-card:nth-child(n+4)  { grid-column: span 3; }

.dest-card {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.dest-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-card__img { transform: scale(1.05); }

/* Overlay: strong at top (dark), fading to transparent at bottom */
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(12,15,8,0.95) 0%,
    rgba(12,15,8,0.6) 45%,
    rgba(12,15,8,0) 100%);
}

.dest-card__top {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.dest-card__region {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

.dest-card__city {
  position: absolute;
  bottom: 68px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.dest-card__desc {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   WAVE / SECTION DIVIDERS
   ============================================================ */
.wave {
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  height: 270px;
}
.wave svg { display: block; width: 100%; height: 100%; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--col-bg);
  padding: 72px 0 80px;
}
.services .inner {
  max-width: 1440px;
}

.services__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 48px;
}

.services__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: stretch;
}

/* Feature card — gradient bg + photo strip at bottom */
.services__card {
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  background: linear-gradient(48.17deg,
    #4d752e 28.57%,
    #243817 67.86%,
    #0f1a0a 100%);
  display: flex;
  flex-direction: column;
  min-height: 600px;
  transition: opacity 0.15s ease;
}
.services__card.is-fading { opacity: 0; }

.services__card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 40px 40px 0;
}
.services__card-num {
  background: var(--sage);
  color: var(--dark);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 5px 12px;
  border-radius: 999px;
}
.services__card-since {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--sage);
}

.services__card-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.17;
  letter-spacing: -0.5px;
  color: var(--sage);
  padding: 16px 40px 0;
}

.services__card-body {
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
  padding: 16px 40px 0;
  max-width: 636px;
}

.services__card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 40px 0;
}
.services__chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 8px 14px;
  border-radius: 999px;
}

.services__card-btn {
  padding: 20px 40px 0;
  display: flex;
  align-items: flex-start;
}

/* Photo strip — grows to fill remaining height, doesn't inflate card */
.services__card-photo {
  flex: 1;
  min-height: 120px;
  overflow: hidden;
  position: relative;
  margin-top: 24px;
}
.services__card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}
.services__card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
}

/* Service tabs (right column) */
.services__tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-tab {
  min-height: 116px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 20px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.service-tab--active {
  background: var(--light);
  border: 1.5px solid var(--col-bg);
}
.service-tab--dark {
  background: var(--col-bg);
  border-color: var(--border);
}

.service-tab__num {
  font-size: 11px;
  letter-spacing: 0.2px;
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
}

.service-tab__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-tab__title {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--dark);
}
.service-tab--dark .service-tab__title { color: white; }

.service-tab__desc {
  font-size: 12px;
  line-height: 18px;
  color: var(--mid);
}
.service-tab--dark .service-tab__desc { color: white; }

.service-tab__arrow {
  font-family: var(--font-d);
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--surface);
  display: flex;
  min-height: 1100px;
  padding: 160px 0;
  position: relative;
  z-index: 1;
}

/* Left photo panel — 580px */
.about__photo-panel {
  width: 580px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.about__photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(44.12deg,
    rgba(71,112,43,0.2) 28.57%,
    rgba(41,66,23,0.2) 60.71%,
    rgba(15,26,10,0.2) 100%);
}

.about__founded {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
}
.about__founded-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 4px;
}
.about__founded-year {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: white;
}

.about__vertical-text {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--sage);
  white-space: nowrap;
}

/* Right content panel */
.about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px 88px;
}

.about__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--mid);
}

.about__title {
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--dark);
}

.about__body {
  font-size: 16px;
  line-height: 26px;
  color: var(--mid);
  max-width: 620px;
}

.about__divider {
  height: 1px;
  background: var(--border);
  max-width: 684px;
}

.about__stats {
  display: flex;
  justify-content: space-between;
  max-width: 684px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about__stat-bar {
  width: 32px;
  height: 3px;
  background: var(--col-bg);
  border-radius: 2px;
}
.about__stat-spacer { height: 6px; }
.about__stat-num {
  font-family: var(--font-d);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: var(--stat-num);
}
.about__stat-label {
  font-size: 11px;
  letter-spacing: 0.2px;
  color: #6b7066;
}

/* ============================================================
   FAQ SECTION — static, expanded
   ============================================================ */
.faq {
  background: var(--col-bg);
  padding: 120px 0 80px;
}

.faq__label {
  font-size: 11px;
  letter-spacing: 0.2px;
  color: var(--col-bg);  /* invisible on same bg */
  margin-bottom: 8px;
}

.faq__title {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: var(--sage);
  margin-bottom: 60px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  align-items: start;
}

.faq-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.faq-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
  padding: 4px 0;
}

.faq-item__header-left {
  flex: 1;
  min-width: 0;
}

.faq-item__arrow {
  flex-shrink: 0;
  align-self: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--sage);
  font-size: 20px;
  font-family: var(--font-s), sans-serif;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.faq-item__arrow::before { content: '+'; display: block; margin-top: -1px; }
.faq-item.open .faq-item__arrow { transform: rotate(45deg); border-color: var(--sage); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
}
.faq-item.open .faq-item__body {
  max-height: 400px;
  padding-top: 12px;
}

.faq-item__num {
  font-size: 11px;
  letter-spacing: 0.2px;
  color: var(--col-bg);
  margin-bottom: 6px;
}

.faq-item__q {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--sage);
  margin-bottom: 0;
}

.faq-item__a {
  font-size: 16px;
  line-height: 24px;
  color: var(--muted);
}

.faq-item__divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 20px 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -2px;
}

.cta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    #3f4a2c 0%,
    rgba(63,74,44,0.82) 22%,
    rgba(63,74,44,0.5) 48%,
    rgba(63,74,44,0.28) 68%,
    rgba(63,74,44,0.6) 100%);
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 32px;
}

.cta__title {
  font-size: 32px;
  line-height: 40px;
  color: white;
  margin-bottom: 20px;
}

.cta__sub {
  font-size: 18px;
  line-height: 28px;
  color: rgba(248,246,240,0.72);
  margin-bottom: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  padding: 0;
  position: relative;
  z-index: 1;
}

.footer__top-border { display: none; }

.footer__inner {
  padding: 0 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr 1fr;
  gap: 0;
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  padding-right: 40px;
}

/* Logo area (image or text fallback) */
.footer__logo {
  margin-bottom: 20px;
  height: 72px;
  display: flex;
  align-items: center;
}
.footer__logo img { height: 100%; width: auto; }
.footer__logo-text {
  font-family: var(--font-d);
  font-size: 16px;
  color: white;
}

.footer__logo-accent {
  width: 40px;
  height: 2px;
  background: var(--col-bg);
  border-radius: 1px;
  margin-bottom: 20px;
}

.footer__tagline {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer__area {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: var(--muted);
}

.footer__col h5 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--mid);
  margin-bottom: 20px;
  margin-top: 56px;
}
.footer__col h5.footer__col-legal { font-weight: 600; letter-spacing: 1.2px; color: #808080; }

.footer__col li + li { margin-top: 12px; }
.footer__col a {
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__col a:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.footer__copy {
  font-size: 11px;
  letter-spacing: 0.2px;
  color: var(--muted);
}
.footer__tagline-bottom {
  font-size: 11px;
  letter-spacing: 0.2px;
  color: white;
}

/* ── Crafted by strip ─────────────────────────────────────── */
.crafted {
  background: var(--strip-bg);
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.crafted__by {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.38);
}
.crafted__logo {
  height: 28px;
  width: 120px;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.page-header,
.legal-hero {
  background: var(--col-bg);
  padding: 80px 0 64px;
  padding-top: calc(80px + 103px); /* account for fixed nav */
}

.page-header__date,
.legal-hero__date {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.page-header h1,
.legal-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--sage);
  margin-bottom: 14px;
}

.page-header__sub,
.legal-hero__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.65;
}

.legal-hero__deco { display: none; }

.legal-body,
.legal-content {
  background: var(--surface);
  padding: 64px 0 200px;
}

.legal-section {
  margin-bottom: 40px;
}
.legal-section h2 {
  font-family: var(--font-b);
  font-size: 18px;
  font-weight: 700;
  color: var(--col-bg);
  margin-bottom: 8px;
}
.legal-section__bar,
.legal-section__accent {
  width: 36px;
  height: 2px;
  background: var(--col-bg);
  border-radius: 1px;
  margin-bottom: 14px;
}
.legal-section p {
  font-size: 15px;
  color: #333;
  line-height: 1.75;
}
.legal-section a { color: var(--col-bg); text-decoration: underline; }

.legal-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--gutter);
  background: #eceae3;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--mid);
  gap: 12px;
}
.legal-footer-bar a { color: var(--mid); }
.legal-footer-bar a:hover { color: var(--col-bg); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Popup overlay */
.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.contact-popup.open {
  opacity: 1;
  pointer-events: all;
}
.contact-popup__layout {
  margin-top: 0 !important;
  min-height: 100vh !important;
  height: 100vh;
  transform: translateY(16px);
  transition: transform 0.35s ease;
}
.contact-popup.open .contact-popup__layout {
  transform: translateY(0);
}
.contact-popup__close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 2001;
  width: 44px;
  height: 44px;
  background: rgba(63,74,44,0.1);
  border: 1.5px solid rgba(63,74,44,0.5);
  border-radius: 50%;
  color: var(--col-bg);
  font-size: 18px;
  font-weight: 500;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  line-height: 1;
}
.contact-popup__close:hover {
  background: rgba(63,74,44,0.15);
  transform: scale(1.08);
}
.contact-left__title {
  font-size: clamp(36px, 4vw, 52px);
  color: white;
  line-height: 1.1;
  margin-bottom: 28px;
}
.contact-left__title + p {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 540px 1fr;
  min-height: calc(100vh - 103px);
  margin-top: 103px;
}

.contact-left {
  background: var(--col-bg);
  padding: 72px 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-left h1 {
  font-size: clamp(36px, 4vw, 52px);
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-left p {
  font-size: 16px;
  line-height: 24px;
  color: var(--muted);
  margin-bottom: 36px;
}
.contact-left__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 36px 0;
}
.contact-left__loc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.contact-left__tagline {
  margin-top: auto;
  font-family: var(--font-d);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.35);
}

.contact-right {
  background: var(--surface);
  padding: 72px clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-right h2 { font-size: 32px; margin-bottom: 6px; color: var(--dark); }
.contact-right .sub { font-size: 14px; color: var(--mid); margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-b);
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--col-bg); }
.form-group textarea { height: 140px; resize: vertical; }
::placeholder { color: rgba(0,0,0,0.28); }

/* Contact page - "Send Message" button (dark green text on sage bg) */
.contact-right .btn-primary {
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
}

.contact-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--mid);
}
.contact-note a { color: var(--col-bg); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .services { padding: 40px 0 60px; }
  .services__eyebrow { margin-bottom: 24px; }
  .services__layout { grid-template-columns: 1fr; }

  .services__card {
    height: auto;
    min-height: unset;
    flex-direction: column;
  }
  .services__card-meta  { padding: 28px 24px 0; }
  .services__card-title { padding: 12px 24px 0; font-size: 28px; }
  .services__card-body  { padding: 12px 24px 0; }
  .services__card-chips { padding: 14px 24px 0; }
  .services__card-btn   { padding: 16px 24px 0; }
  .services__card-photo { flex: none; height: 220px; margin-top: 20px; }
  .services__card-photo img { position: absolute; }

  .about { flex-direction: column; padding: 0 0 80px; min-height: auto; }
  .about__photo-panel { width: 100%; height: 400px; }
  .about__content { padding: 56px 40px; }
}

@media (max-width: 960px) {
  .nav { top: 16px; padding: 0 24px; gap: 16px; }
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  .usp__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .destinations__grid { grid-template-columns: 1fr; }
  .destinations__grid .dest-card:nth-child(-n+3),
  .destinations__grid .dest-card:nth-child(n+4) { grid-column: span 1; }
  .dest-card { height: 320px; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq-item__num { display: none; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { min-height: 400px; }

  /* Popup mobile */
  .contact-popup__layout {
    grid-template-columns: 1fr !important;
    height: 100%;
    min-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .contact-popup__layout .contact-left {
    min-height: unset !important;
    padding: 0 28px 28px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
  /* Mobile popup header row: title + X */
  .contact-popup__layout .contact-left::before {
    content: '';
    display: block;
    height: 64px;
    flex-shrink: 0;
  }
  .contact-popup__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    color: white;
  }
  .contact-popup__layout .contact-left h2,
  .contact-popup__layout .contact-left .contact-left__title {
    font-size: 28px !important;
    margin-bottom: 8px;
  }
  .contact-popup__layout .contact-left > p {
    font-size: 14px;
    margin-bottom: 0;
  }
  .contact-popup__layout .contact-left .contact-left__divider,
  .contact-popup__layout .contact-left .contact-left__loc,
  .contact-popup__layout .contact-left .contact-left__tagline {
    display: none;
  }
  .contact-popup__layout .contact-right {
    padding: 32px 28px 52px;
  }
}

@media (max-width: 720px) {
  h1 { font-size: 30px; line-height: 38px; }
  h2 { font-size: 26px; line-height: 34px; }

  .hero { height: 100svh; min-height: 700px; }
  .hero__badge--private,
  .hero__badge--premium,
  .hero__badge--guides,
  .hero__badge--five { display: none; }

  .faq__title { font-size: 30px; line-height: 38px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col h5 { margin-top: 32px; }
  .footer__inner { padding: 0 24px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

  .legal-footer-bar { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  .usp__grid { max-width: 100%; }
  .usp-card__photo { height: 220px; }
  .usp-card__text { padding: 20px 24px 16px; }

  /* Reduce wave height on mobile so it's proportional to viewport */
  .wave { height: 130px; }
  .wave--about-top { margin-bottom: -130px !important; }
  .wave--about-bot  { margin-top: -130px !important; }
}

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
