:root {
  --green-top: #063c31;
  --green-dark: #0a3f35;
  --green-btn: #0d4c3b;
  --gold: #d6a63a;
  --gold-dark: #bc8e28;
  --cream: #f5f3ee;
  --section-bg: #f4f2ed;
  --text: #1e1e1e;
  --muted: #6f6f6f;
  --white: #ffffff;
  --border: #e5e0d6;
  --shadow: 0 8px 20px rgba(0,0,0,0.08);
  --radius: 6px;
  --container: 1380px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--section-bg);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--green-top);
  color: rgba(255,255,255,0.95);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 32px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-right a,
.topbar-left span {
  color: rgba(255,255,255,0.92);
}

.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.logo-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  line-height: 0.9;
  font-weight: 700;
}

.logo-top {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #b08b40;
}

.logo-sub {
  font-size: 11px;
  color: #8a8a8a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: #26302d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 16px 28px;
  border-radius: 4px;
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-green {
  background: var(--green-btn);
  color: #fff;
  padding: 16px 24px;
  border-radius: 4px;
}

.hero-home {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,40,52,0.70) 0%, rgba(15,40,52,0.32) 48%, rgba(15,40,52,0.10) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
  color: #fff;
  padding-top: 40px;
}

.hero-eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 6vw, 74px);
  line-height: 0.95;
  margin: 0 0 22px;
}

.hero-subtext {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 26px;
}

.hero-feature-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(7, 27, 24, 0.72);
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

.hero-feature-item:last-child {
  border-right: 0;
}

.hero-feature-icon {
  color: var(--gold);
  font-size: 28px;
}

.hero-feature-item h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
}

.hero-feature-item p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.planner-band {
  background: #f1efea;
  padding: 24px 0;
}

.planner-band-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 28px;
  align-items: center;
}

.planner-band-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  margin: 0;
  line-height: 1.08;
}

.planner-band-copy span {
  color: var(--gold);
}

.planner-inline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: end;
}

.planner-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.planner-field select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0 14px;
  border-radius: 3px;
  font-size: 14px;
}

.planner-button-wrap small {
  display: block;
  margin-top: 8px;
  text-align: right;
  color: #666;
}

.section {
  padding: 26px 0 34px;
}

.section-light {
  background: #f5f3ee;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 50px);
  margin: 0;
}

.section-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-dark);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tour-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tour-image-wrap {
  position: relative;
  height: 190px;
}

.tour-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1d6a4f;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 3px;
}

.tour-card-body {
  padding: 14px 14px 16px;
}

.tour-card-body h3 {
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 8px;
}

.tour-card-body p {
  margin: 0 0 4px;
  font-size: 14px;
  color: #666;
}

.tour-price-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 10px;
}

.tour-price-row span {
  font-size: 13px;
  color: #777;
}

.tour-price-row strong {
  font-size: 16px;
  color: #204538;
}

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

.destination-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 4px;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.68) 100%);
  color: #fff;
}

.destination-small {
  font-size: 12px;
  margin-bottom: 8px;
  opacity: 0.92;
}

.destination-overlay h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  margin: 0 0 4px;
}

.destination-overlay p {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .tour-grid,
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .planner-band-grid,
  .planner-inline {
    grid-template-columns: 1fr;
  }

  .hero-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    background: none;
    border: 0;
    font-size: 28px;
  }

  .desktop-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .hero-feature-grid,
  .tour-grid,
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
