:root {
  --deep-ocean: #0A1628;
  --gold: #C9A84C;
  --gold-light: #D4AF37;
  --pearl: #F5F0E8;
  --sand: #E8DFD0;
  --white: #FFFFFF;
  --text-muted: #4a5568;
  --text-light: #F5F0E8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--deep-ocean);
  background: var(--pearl);
  padding-top: var(--nav-h);
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* Back to main site */
.back-home {
  background: linear-gradient(90deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.back-home a {
  color: var(--deep-ocean);
  text-decoration: none;
}
.back-home a:hover { color: #8a6f2e; }
.back-home strong { color: var(--gold); }

/* Navbar — aligned with main site */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.landing-nav .nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  color: rgba(245, 240, 232, 0.88);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 24, 0.55);
  z-index: 199;
  border: none;
  cursor: pointer;
}
.nav-backdrop.visible { display: block; }

.nav-has-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none;
  border: none;
  color: rgba(245, 240, 232, 0.88);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.nav-dropdown-btn:hover,
.nav-has-dropdown.open .nav-dropdown-btn { color: var(--gold); }
.nav-chevron { font-size: 0.6rem; transition: transform 0.3s; }
.nav-has-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  list-style: none;
  background: rgba(10, 22, 40, 0.98);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 210;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.7rem;
}
.nav-dropdown a.active { color: var(--gold); background: rgba(201, 168, 76, 0.08); }

.nav-mobile-cta { display: none; }
.nav-cta-desktop { display: inline-block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--deep-ocean);
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

html { scroll-padding-top: 92px; }

.btn-nav {
  flex-shrink: 0;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-ocean);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero */
.hero-page {
  position: relative;
  color: var(--text-light);
  padding: 72px 0 64px;
  text-align: center;
  background: var(--deep-ocean) center/cover no-repeat;
}
.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.92) 100%);
}
.hero-page .container { position: relative; z-index: 1; }
.hero-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 900;
  margin: 14px 0 18px;
  line-height: 1.12;
}
.hero-page .lead {
  max-width: 680px;
  margin: 0 auto 28px;
  opacity: 0.92;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.breadcrumb { font-size: 0.85rem; margin-bottom: 10px; opacity: 0.9; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.map-embed { margin: 0 auto; max-width: 900px; }
.map-embed iframe { width: 100%; display: block; }

/* FAQ (matches main site) */
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 14px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  overflow: hidden;
}
.section.dark .faq-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,168,76,0.2);
}
.faq-item[open] { border-color: rgba(201,168,76,0.5); }
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.section.dark .faq-item summary { color: var(--text-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  transition: transform 0.3s, background 0.3s;
}
.faq-item[open] .faq-toggle { background: var(--gold); color: var(--deep-ocean); transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.96rem; }
.section.dark .faq-body { color: rgba(245,240,232,0.82); }

/* Season table */
.season-table-wrap { overflow-x: auto; margin-top: 24px; }
.season-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 480px;
}
.season-table th, .season-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(10,22,40,0.08);
}
.season-table th {
  background: var(--deep-ocean);
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.season-table tr:nth-child(even) td { background: rgba(201,168,76,0.08); }
.season-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.season-badge.peak { background: rgba(201,168,76,0.35); color: var(--deep-ocean); }
.season-badge.good { background: rgba(10,22,40,0.1); }
.season-badge.year { background: rgba(10,22,40,0.06); }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.photo-strip img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 600px) { .photo-strip { grid-template-columns: 1fr; } }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-ocean);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--text-light);
}
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--deep-ocean);
}
.btn-ghost {
  display: inline-block;
  color: var(--deep-ocean);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-top: 8px;
}
.btn-ghost:hover { color: #8a6f2e; }

/* Content sections */
.section { padding: 64px 0; }
.section.sand { background: var(--sand); }
.section.dark {
  background: var(--deep-ocean);
  color: var(--text-light);
}
.section.dark p { color: rgba(245,240,232,0.82); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 10px;
}
.section-head p { color: var(--text-muted); margin-top: 14px; }
.section.dark .section-head p { color: rgba(245,240,232,0.75); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }
.split-copy h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin-bottom: 16px;
}
.split-copy p { color: var(--text-muted); margin-bottom: 16px; }
.split-media img {
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(10,22,40,0.2);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
}
.section.dark .feature-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,168,76,0.15);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }
.section.dark .feature-card p { color: rgba(245,240,232,0.78); }
.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
}

.info-list {
  list-style: none;
  margin: 20px 0;
}
.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  color: var(--text-muted);
}
.info-list strong { color: var(--deep-ocean); display: block; margin-bottom: 4px; }

/* Related tours */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.12);
}
.related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.related-card-body { padding: 20px; }
.related-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.related-card-body p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.related-card-body span {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-box {
  background: linear-gradient(135deg, var(--deep-ocean), #152a4a);
  color: var(--text-light);
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  margin-top: 48px;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--text-light);
}
.cta-box p { color: rgba(245,240,232,0.85); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-box .btn-outline { color: var(--text-light); }

.main-site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.main-site-links a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.main-site-links a:hover { text-decoration: underline; }

/* Footer */
.landing-footer {
  background: var(--deep-ocean);
  color: rgba(245,240,232,0.75);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a {
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-grid a:hover { color: var(--gold); }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; line-height: 1.7; }
.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(201,168,76,0.15);
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); }

/* WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* Mobile sticky book bar (landings) */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 140;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 22, 40, 0.97);
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  gap: 10px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.sticky-book a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 12px 16px;
  text-align: center;
}
.sticky-book-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-ocean);
}
.sticky-book-secondary {
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.5);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sticky-book { display: grid; }
  body { padding-bottom: 72px; }
  .wa-float { bottom: 88px; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media,
  .split.reverse .split-copy { order: unset; }
  .feature-grid,
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 88vw);
    background: rgba(10, 22, 40, 0.98);
    flex-direction: column;
    justify-content: center;
    padding: 32px 28px;
    gap: 18px;
    border-left: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 205;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-cta-desktop { display: none; }
  .nav-mobile-cta { display: block; width: 100%; margin-top: 12px; }
  .nav-mobile-cta .btn-nav { display: inline-block; width: 100%; text-align: center; }
  .nav-has-dropdown { width: 100%; }
  .nav-dropdown-btn { width: 100%; justify-content: space-between; font-size: 0.85rem; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 12px;
    min-width: 0;
  }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 10px 0; }
  .hero-page { padding: 48px 0 40px; }
}
