/* Base */
:root {
  --bg: #F5F0E8;
  --fg: #2A2826;
  --teal: #1A6B7C;
  --teal-dark: #0E4D57;
  --amber: #D4943A;
  --sand: #E8D5B7;
  --muted: #6E6760;
  --surface: #FFFDF8;
  --border: #E2D9CE;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--teal);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-sub {
  margin-top: 16px;
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--surface);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-primary:hover { background: #0E4D57; }
.cta-primary--center { display: block; width: fit-content; margin: 40px auto 0; }
.cta-secondary {
  display: inline-block;
  color: var(--teal);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
}
.cta-secondary:hover { color: var(--teal-dark); }
.hero-social-proof { margin-top: 0; }
.social-proof-bar {
  font-size: 13px;
  color: var(--muted);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 28px;
}

/* Hero Photo */
.hero-photo-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(26,107,124,0.15);
}
.hero-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.hero-photo-caption {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  background: rgba(0,0,0,0.35);
  padding: 4px 8px;
  border-radius: 4px;
}

.hero-bottom-bar {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 20px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  margin: 0 20px;
  flex-shrink: 0;
}

/* Destinations — anchor sections for region chips and destination cards */
.destinations {
  padding: 96px 0;
}
.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.dest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}
.dest-card-inner {
  padding: 28px 28px 32px;
}
.dest-coord {
  font-size: 11px;
  font-family: 'DM Mono', 'Courier New', monospace;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.dest-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.dest-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dest-tags span {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--teal);
  font-weight: 500;
}
.dest-card-accent {
  height: 4px;
}
.dest-card--coast .dest-card-accent { background: #1A6B7C; }
.dest-card--village .dest-card-accent { background: #D4943A; }
.dest-card--south .dest-card-accent { background: #C9773A; }
.dest-card--jungle .dest-card-accent { background: #2D6A4F; }

/* Region hover tooltips */
.has-tooltip {
  position: relative;
  display: inline-block;
  cursor: default;
}

.region-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  width: 240px;
  box-shadow: 0 4px 16px rgba(26, 107, 124, 0.12), 0 1px 4px rgba(0,0,0,0.06);
  z-index: 50;
  pointer-events: none;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

.region-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--border);
}

/* Position adjustments to keep tooltip in viewport */
.has-tooltip[data-region="hopkins"] .region-tooltip,
.has-tooltip[data-region="placencia"] .region-tooltip {
  bottom: auto;
  top: calc(100% + 8px);
}
.has-tooltip[data-region="hopkins"] .region-tooltip::after,
.has-tooltip[data-region="placencia"] .region-tooltip::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--border);
}

/* Visible on hover / tap */
.has-tooltip:hover .region-tooltip,
.has-tooltip.is-open .region-tooltip {
  display: block;
}

/* Destination links */
.dest-name a {
  color: inherit;
  text-decoration: none;
}
.dest-name a:hover {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dest-explore-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.dest-explore-link:hover {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Region anchor sections */
.region-anchors {
  margin-top: 72px;
  border-top: 1px solid var(--border);
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.region-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  scroll-margin-top: 80px;
}
.region-photo-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.region-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.region-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.region-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.region-tagline {
  font-size: 15px;
  font-weight: 500;
  color: var(--amber);
  font-style: italic;
}
.region-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.region-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.15s;
}
.region-cta:hover {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .region-anchors { gap: 40px; margin-top: 48px; }
  .region-section { grid-template-columns: 1fr; gap: 20px; }
  .region-anchors { scroll-margin-top: 60px; }
}

/* Packages */
.packages {
  padding: 96px 0;
  background: var(--teal-dark);
}
.packages .section-eyebrow { color: var(--amber); }
.packages .section-heading { color: var(--surface); }
.packages .section-sub { color: rgba(255,255,255,0.65); }
.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.pkg-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.pkg-card:hover {
  background: rgba(255,255,255,0.11);
}
.pkg-card--featured {
  background: rgba(255,255,255,0.14);
  border-color: var(--amber);
}
.pkg-header {
  margin-bottom: 8px;
}
.pkg-tier {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--surface);
  display: block;
  margin-bottom: 4px;
}
.pkg-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-from {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.price-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--surface);
}
.price-per {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.pkg-days {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 600;
  padding: 6px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pkg-features li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.8;
}
.pkg-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.packages-custom {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.custom-link {
  color: var(--amber);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Package section region chips */
.pkg-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pkg-region-chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.pkg-region-chip:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Package card booking UI */
.pkg-booking {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pkg-inputs {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.pkg-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.pkg-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.pkg-stepper {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
}
.stepper-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  width: 32px;
  height: 36px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
  padding: 0;
}
.stepper-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.stepper-btn:active {
  background: rgba(255,255,255,0.15);
}
.pkg-stepper input {
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  width: 40px;
  height: 36px;
  padding: 0;
  -moz-appearance: textfield;
}
.pkg-stepper input::-webkit-outer-spin-button,
.pkg-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pkg-date-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 10px;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  cursor: pointer;
}
.pkg-date-input:focus {
  outline: none;
  border-color: var(--amber);
}
.pkg-date-input::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.6);
  cursor: pointer;
}
.solo-disclaimer {
  display: none;
  font-size: 11px;
  color: rgba(255,200,80,0.85);
  background: rgba(255,180,40,0.08);
  border: 1px solid rgba(255,180,40,0.25);
  border-radius: 6px;
  padding: 7px 10px;
  line-height: 1.5;
  margin-top: 4px;
}
.solo-disclaimer a {
  color: rgba(255,200,80,0.95);
  text-decoration: underline;
}
.pkg-book-btn {
  background: var(--amber);
  color: #1a1005;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, opacity 0.2s;
  letter-spacing: 0.01em;
}
.pkg-book-btn:hover:not(:disabled) {
  background: #e8a840;
}
.pkg-book-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.pkg-policy {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 100px 0;
  background: var(--bg);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 40px;
}
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 32px;
  display: inline-block;
  max-width: 560px;
}
.closing-detail p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Trust Anchors */
.trust-anchors {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trust-anchors-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.trust-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-text strong {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
}
.trust-text span {
  font-size: 11px;
  color: var(--muted);
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 20px;
  flex-shrink: 0;
}

/* How It Works */
.how-it-works {
  padding: 96px 0;
}
.hiw-steps {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}
.hiw-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}
.hiw-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
}
.hiw-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hiw-content strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
}
.hiw-content span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Custom CTA */
.custom-cta {
  padding: 96px 0;
  text-align: center;
}
.custom-cta .section-heading { margin-bottom: 16px; }
.custom-cta .section-sub { max-width: 500px; margin: 0 auto; }

/* Footer */
.footer {
  background: var(--teal);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 6px;
}
.footer-contact {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-link:hover { color: rgba(255,255,255,0.9); }

/* Responsive */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .hero-right { order: -1; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .destination-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; gap: 28px; }
  .trust-anchors-inner { flex-direction: column; gap: 24px; }
  .trust-sep { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-bottom-bar { flex-direction: column; gap: 12px; font-size: 12px; }
  .dot { display: none; }
  .nav-inner { padding: 14px 20px; }
  .section-inner { padding: 0 20px; }
}
