:root {
  --cream: #f7f1e6;
  --cream-dark: #efe6d4;
  --teal: #1f3a3d;
  --teal-light: #1d6b6b;
  --gold: #d4a574;
  --gold-dark: #c98a4b;
  --text: #2c2c28;
  --muted: #6b6a63;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--teal);
  margin: 0;
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin: 0 0 8px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 230, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding: 14px 48px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--teal-light);
  margin: 0;
  padding-right: 18px;
  border-right: 1px solid var(--cream-dark);
  white-space: nowrap;
}

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

.logo-badge {
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 40px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal);
}

.nav-cta {
  background: var(--gold-dark);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--cream-dark);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  margin-right: 16px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--teal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-btn.active {
  background: var(--teal);
  color: #fbf3e7;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
}

/* HERO */
.hero {
  position: relative;
  height: 78vh;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
  border-radius: 0 0 48px 48px;
  background:
    linear-gradient(135deg, #2f6b4f 0%, #1f3a3d 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center center;
  animation: hero-zoom 10s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    animation: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.25));
}

.hero-tagline {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  color: #fbf3e7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  text-align: center;
  white-space: nowrap;
}

/* INTRO */
.intro {
  text-align: center;
  padding: 56px 24px 40px;
}

.intro h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px auto;
}

.divider span {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.divider i {
  width: 8px;
  height: 8px;
  background: var(--gold-dark);
  transform: rotate(45deg);
  display: inline-block;
}

.subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--teal-light);
  margin: 0;
}

.locations {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  margin: 6px 0 32px;
}

.lede {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: left;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 6px 18px -10px rgba(31, 58, 61, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px -12px rgba(31, 58, 61, 0.3);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbeedd, #f3dcb8);
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--teal);
  font-size: 1.02rem;
  background: linear-gradient(135deg, #eef6f3, #e3efe9);
  border: 1px solid #d6e6df;
  border-radius: 999px;
  padding: 12px 24px;
}

.callout-icon {
  display: inline-flex;
  color: var(--teal-light);
}

.callout-icon svg {
  width: 20px;
  height: 20px;
}

/* WHY CHOOSE US */
.why {
  padding: 64px 0 8px;
  text-align: center;
}

.why h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 36px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}

.why-item {
  position: relative;
  padding-left: 64px;
}

.why-number {
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.8;
  line-height: 1;
}

.why-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* POPULAR PACKAGES */
.popular {
  padding: 64px 0 8px;
  text-align: center;
}

.popular h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 28px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}

.popular-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 10px 24px -16px rgba(31, 58, 61, 0.3);
}

.popular-image {
  height: 260px;
  background-color: #e9ddc8;
  background-size: cover;
  background-position: center;
  position: relative;
}

.popular-body {
  padding: 22px 24px 26px;
}

.popular-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.popular-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FLEET */
.fleet {
  padding: 64px 0 8px;
  text-align: center;
}

.fleet h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 28px;
}

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

.fleet-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 8px 20px -14px rgba(31, 58, 61, 0.3);
}

.fleet-image {
  height: 170px;
  background-color: #e9ddc8;
  background-size: cover;
  background-position: center;
}

.fleet-body {
  padding: 16px 18px 20px;
}

.fleet-body h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.fleet-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* VALUE PROPS */
.value-props {
  padding: 72px 0;
  background: var(--cream-dark);
}

.value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.value-row + .value-row {
  margin-top: 64px;
}

.value-image {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-color: #e9ddc8;
  box-shadow: 0 14px 30px -18px rgba(31, 58, 61, 0.35);
}

.value-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}

.value-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* TOURS */
.tours {
  background: var(--cream-dark);
  padding: 64px 0;
}

.tours h2, .itineraries h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 28px;
}

.table-wrap {
  overflow-x: auto;
  background: var(--cream);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.tours-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.tours-table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 16px 18px;
  border-bottom: 2px solid var(--cream-dark);
}

.tours-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.98rem;
}

.tours-table tr:last-child td { border-bottom: none; }

.tours-table .price {
  font-weight: 700;
  color: var(--gold-dark);
}

.fine-print {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ITINERARIES */
.itineraries {
  padding: 64px 0;
}

.routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.route h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--gold);
}

.timeline li {
  position: relative;
  padding: 0 0 26px 24px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-dark);
  border: 2px solid var(--cream);
}

.timeline .day {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline .place {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--teal);
}

.timeline .place small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--muted);
}

/* TEAM */
.team {
  padding: 64px 0;
  text-align: center;
  background: var(--cream-dark);
}

.team h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 36px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 10px 24px -16px rgba(31, 58, 61, 0.3);
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 18px;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--gold);
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.team-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* CONTACT */
.contact {
  background: var(--teal);
  color: #fbf3e7;
  padding: 64px 0;
  text-align: center;
}

.contact h2 {
  color: #fbf3e7;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 12px;
}

.contact p {
  max-width: 480px;
  margin: 0 auto 24px;
  opacity: 0.85;
}

.contact-line {
  font-weight: 600;
  opacity: 0.95 !important;
  margin-bottom: 18px !important;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold-dark);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.4);
}

.cta-button-alt {
  background: transparent;
  border: 1.5px solid rgba(251, 243, 231, 0.6);
  color: #fbf3e7;
}

/* FOOTER */
.site-footer {
  background: var(--cream-dark);
  padding: 28px 0;
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--teal-light);
  margin: 0 0 6px;
}

.footer-contact {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 10px;
}

.footer-contact a {
  color: var(--gold-dark);
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 760px) {
  .header-inner {
    padding: 14px 24px;
  }

  .hero-tagline {
    white-space: normal;
    width: 90%;
    bottom: 24px;
  }

  .header-tagline {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--cream-dark);
    display: none;
  }

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

  .nav-toggle { display: flex; }

  .routes {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .popular-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .value-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .value-row + .value-row {
    margin-top: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
