:root {
  --green-950: #063d32;
  --green-900: #0b4c3d;
  --green-800: #155c49;
  --green-700: #1e715b;
  --mint-300: #95e8ed;
  --mint-200: #b9f2f5;
  --sage-200: #d7e1da;
  --cream-100: #f7f5ef;
  --cream-200: #efede7;
  --ink: #111814;
  --muted: #64706c;
  --line: rgba(13, 51, 42, 0.12);
  --shadow: 0 22px 50px rgba(6, 61, 50, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  padding: 0 62px;
  background: rgba(232, 238, 232, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-brand {
  display: inline-block;
}

.brand-logo {
  flex: 0 0 auto;
  width: 30px;
  height: 52px;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-subtitle {
  color: #078f92;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
}

.nav-links a,
.text-link {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--green-700);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--green-950);
  background: transparent;
  border: 1px solid rgba(6, 61, 50, 0.18);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
  margin: auto;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.55);
}

.menu-toggle:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid #078f92;
  outline-offset: 3px;
}

.text-link svg,
.tour-footer svg,
.contact-line svg,
.social-links svg,
.icon-box svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 800px;
  padding: 148px 24px 104px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  background: var(--green-950);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 6500ms ease-out;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(rgba(5, 38, 34, 0.28), rgba(5, 38, 34, 0.58)),
    linear-gradient(90deg, rgba(5, 38, 34, 0.16), rgba(5, 38, 34, 0.04));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin-top: 30px;
}

.hero-slider-controls {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 28px;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.slider-enabled .hero-slider-controls {
  display: flex;
}

.hero-slider-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #ffffff;
  background: rgba(5, 38, 34, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-slider-arrow:hover {
  background: rgba(5, 38, 34, 0.68);
  transform: translateY(-1px);
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(5, 38, 34, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.52);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-slider-dots button.is-active {
  width: 24px;
  background: var(--mint-200);
}

.hero-slider-arrow:focus-visible,
.hero-slider-dots button:focus-visible {
  outline: 2px solid var(--mint-200);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slider-arrow,
  .hero-slider-dots button {
    transition: none;
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint-200);
}

.hero h1,
.section h2,
.cta-section h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 78px);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  width: 100%;
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary,
.button-dark {
  color: #ffffff;
  background: var(--green-950);
  box-shadow: 0 14px 26px rgba(4, 47, 37, 0.28);
}

.button-primary:hover,
.button-dark:hover {
  background: var(--green-800);
}

.button-soft {
  color: #14231d;
  background: rgba(238, 244, 242, 0.78);
  border-color: rgba(255, 255, 255, 0.8);
}

.button-soft:hover {
  background: #ffffff;
}

.button-light {
  color: var(--green-950);
  background: var(--mint-200);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-light:hover {
  background: #ffffff;
}

.button-outline {
  color: var(--green-950);
  background: transparent;
  border-color: rgba(6, 61, 50, 0.2);
}

.button-outline:hover {
  background: var(--cream-100);
}

.section {
  padding: 72px 62px;
}

.tours-section {
  background: var(--cream-100);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto 36px;
}

.section-summary {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 44px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 12px;
  font-weight: 700;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.tour-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(7, 44, 36, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tour-card:hover,
.tour-card:focus-within {
  border-color: rgba(30, 113, 91, 0.24);
  box-shadow: 0 22px 42px rgba(7, 44, 36, 0.11);
  transform: translateY(-5px);
}

.tour-image {
  position: relative;
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.06);
}

.tour-image span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 12px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.tour-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.tour-body h3,
.value-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.18;
}

.tour-body p,
.story-copy p,
.value-card p,
.site-footer p {
  color: var(--muted);
  font-size: 14px;
}

.tour-body p {
  min-height: 64px;
  margin: 10px 0 18px;
}

.tour-inclusions {
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tour-inclusions-label {
  display: block;
  color: var(--green-700);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tour-inclusions ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 8px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.tour-inclusions li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: #45534e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.inclusion-icon {
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--green-700);
  background: rgba(149, 232, 237, 0.24);
  border-radius: 50%;
}

.inclusion-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.9;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.tour-price {
  display: grid;
  gap: 1px;
}

.tour-price span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-footer strong {
  color: var(--green-700);
  font-family: var(--serif);
  font-size: 20px;
}

.tour-footer a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-950);
  background: var(--mint-300);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.tour-footer a:hover {
  transform: translateX(3px);
  background: var(--mint-200);
}

.story-section {
  background: #ffffff;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(44px, 7vw, 118px);
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.story-media {
  position: relative;
  min-height: 520px;
  padding: 24px 24px 28px 0;
}

.story-media::before,
.story-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: #d7fbff;
}

.story-media::before {
  width: 108px;
  height: 108px;
  top: 5px;
  left: -24px;
}

.story-media::after {
  width: 190px;
  height: 34px;
  right: 0;
  bottom: 0;
  border-radius: 999px;
  background: var(--sage-200);
}

.story-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 48px;
  display: grid;
  gap: 4px;
  width: 170px;
  padding: 18px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(5, 38, 34, 0.16);
  backdrop-filter: blur(12px);
}

.story-note strong {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.story-note span {
  color: var(--muted);
  font-size: 12px;
}

.story-copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
}

.story-copy p {
  max-width: 560px;
  margin: 0 0 16px;
}

.story-copy .button {
  margin-top: 10px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1160px;
  margin: 54px auto 0;
}

.value-card {
  min-height: 205px;
  padding: 30px;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--green-900);
  background: #a8ded2;
  border-radius: 8px;
}

.value-card p {
  margin: 12px 0 0;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 74px 24px;
  color: #ffffff;
  text-align: center;
  background: var(--green-800);
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1180px;
  height: 360px;
  border: 1px solid rgba(190, 241, 231, 0.23);
  border-radius: 50%;
  transform: translateX(-50%);
}

.cta-section::before {
  top: 34px;
}

.cta-section::after {
  top: 82px;
  width: 1360px;
}

.cta-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(32px, 4.4vw, 44px);
}

.cta-section p {
  margin: 14px auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.tour-hero {
  position: relative;
  display: grid;
  min-height: 680px;
  padding: 134px 62px 86px;
  color: #ffffff;
  overflow: hidden;
}

.tour-hero-image,
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-hero-image {
  object-fit: cover;
}

.tour-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 38, 34, 0.82), rgba(5, 38, 34, 0.34)),
    linear-gradient(rgba(5, 38, 34, 0.2), rgba(5, 38, 34, 0.42));
}

.tour-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 100%;
  max-width: 780px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb a {
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--mint-200);
}

.tour-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
}

.tour-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
}

.tour-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tour-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  background: var(--green-950);
}

.tour-trust div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  padding: 16px;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 700;
}

.tour-trust div:last-child {
  border-right: 0;
}

.tour-trust svg,
.tour-fact-grid svg,
.highlight-grid svg,
.route-strip svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.tour-trust svg {
  color: var(--mint-200);
}

.tour-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
  background: var(--cream-100);
}

.tour-content {
  min-width: 0;
}

.tour-intro,
.tour-block,
.booking-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(7, 44, 36, 0.05);
}

.tour-intro {
  padding: 34px;
}

.tour-intro h2,
.tour-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: 0;
}

.tour-intro p:last-child {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.route-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--green-950);
  background: var(--cream-100);
  border: 1px solid rgba(6, 61, 50, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.route-strip svg {
  color: var(--green-700);
}

.tour-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tour-fact-grid article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tour-fact-grid svg {
  color: var(--green-700);
}

.tour-fact-grid span,
.booking-panel p,
.booking-panel > span,
.booking-details span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-fact-grid strong {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.tour-tabs {
  position: sticky;
  z-index: 5;
  top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.tour-tabs a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: var(--green-950);
  background: var(--cream-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.tour-tabs a:hover {
  color: #ffffff;
  background: var(--green-800);
}

.tour-block {
  margin-top: 28px;
  padding: 34px;
  scroll-margin-top: 112px;
}

.section-heading.compact {
  display: block;
  margin: 0 0 26px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.highlight-grid article,
.hotel-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.highlight-grid svg {
  margin-bottom: 18px;
  color: var(--green-700);
}

.highlight-grid h3,
.hotel-grid h3,
.itinerary-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.18;
}

.highlight-grid p,
.hotel-grid p,
.itinerary-list p,
.question-band p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.split-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.check-list,
.x-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.check-list li::before {
  content: "+";
  background: var(--green-700);
}

.x-list li::before {
  content: "-";
  background: #8b6f49;
}

.itinerary-list {
  display: grid;
  gap: 0;
}

.itinerary-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.itinerary-list article:last-child {
  padding-bottom: 0;
}

.itinerary-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--green-950);
  background: var(--mint-200);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.itinerary-list strong {
  display: block;
  margin-top: 12px;
  color: var(--green-700);
  font-size: 13px;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.question-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #eef8f5;
}

.question-band p {
  max-width: 640px;
}

.booking-panel {
  position: sticky;
  top: 92px;
  padding: 28px;
}

.people-selector {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.people-selector label {
  color: var(--green-950);
  font-size: 13px;
  font-weight: 700;
}

.people-selector select {
  width: 100%;
  min-height: 46px;
  padding: 0 42px 0 14px;
  color: var(--ink);
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  cursor: pointer;
}

.people-selector select:focus {
  border-color: var(--green-700);
  outline: 3px solid rgba(30, 113, 91, 0.14);
}

.booking-panel p {
  margin: 0 0 4px;
}

.booking-panel > strong {
  display: block;
  color: var(--green-700);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.booking-panel > span {
  display: block;
  margin-top: 8px;
  text-transform: none;
}

.booking-panel .button {
  width: 100%;
  margin-top: 18px;
}

.booking-details {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.booking-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.booking-details strong {
  color: var(--green-950);
  font-size: 13px;
  text-align: right;
}

.page-section {
  background: #ffffff;
}

.page-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 1160px;
  margin: 46px auto 0;
}

.page-stat-grid article {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 28px;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-stat-grid strong {
  color: var(--green-700);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.page-stat-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.page-card-grid {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.page-cta-panel {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-page-section {
  background: var(--cream-100);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.contact-form-panel,
.contact-info-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(7, 44, 36, 0.05);
}

.contact-form-panel {
  padding: 34px;
}

.contact-info-panel {
  align-self: start;
  padding: 28px;
}

.contact-form-panel h2,
.contact-info-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.1;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--green-950);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cream-100);
  border: 1px solid rgba(6, 61, 50, 0.16);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(149, 232, 237, 0.28);
}

.contact-form .button {
  justify-self: start;
  cursor: pointer;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-methods a,
.contact-methods div {
  display: flex;
  gap: 14px;
  padding: 16px;
  color: var(--ink);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-methods svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 3px;
  color: var(--green-700);
}

.contact-methods span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}

.contact-methods strong,
.contact-note strong {
  color: var(--green-950);
  font-size: 13px;
}

.contact-note {
  margin-top: 18px;
  padding: 18px;
  background: #eef8f5;
  border: 1px solid rgba(6, 61, 50, 0.1);
  border-radius: 8px;
}

.contact-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  color: #ffffff;
  background: #053d31;
}

.simple-hero {
  min-height: 460px;
  padding-bottom: 68px;
}

.simple-hero .breadcrumb {
  margin-bottom: 28px;
}

.content-page-section {
  background: var(--cream-100);
}

.content-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.page-toc {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.page-toc h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 20px;
}

.page-toc a {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.page-toc a:hover {
  color: var(--green-700);
}

.legal-content {
  padding: clamp(28px, 5vw, 58px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(7, 44, 36, 0.07);
}

.legal-content section + section {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: #4f5c57;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content address {
  font-style: normal;
}

.policy-meta {
  color: var(--green-700) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-intro {
  margin-bottom: 42px !important;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(21px, 3vw, 28px) !important;
  line-height: 1.45 !important;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.sitemap-card {
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 15px 34px rgba(7, 44, 36, 0.06);
}

.sitemap-card h2 {
  margin: 20px 0 22px;
  font-family: var(--serif);
  font-size: 25px;
}

.sitemap-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  color: #42504b;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.sitemap-card > a:hover {
  color: var(--green-700);
}

.sitemap-card > a svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.9fr 1.25fr;
  gap: 52px;
  width: calc(100% - 48px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 0 48px;
}

.site-footer h3 {
  margin: 4px 0 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--mint-200);
}

.footer-brand {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.social-x-mark {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.contact-line svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--mint-200);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 48px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  margin: 0;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 28px;
  }

  .nav-links {
    justify-content: center;
    gap: 18px;
  }

  .section {
    padding-right: 28px;
    padding-left: 28px;
  }

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

  .tour-hero {
    padding-right: 28px;
    padding-left: 28px;
  }

  .tour-main {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    position: static;
    order: -1;
  }

  .tour-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-grid,
  .hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: auto;
  }

  .story-media img {
    width: 100%;
    max-width: none;
  }

  .story-copy {
    max-width: 720px;
  }

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

  .content-layout {
    grid-template-columns: 1fr;
  }

  .page-toc {
    position: static;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: fixed;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 72px;
    padding: 10px 20px;
  }

  .brand-name {
    font-size: 21px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(247, 245, 239, 0.98);
    border: 1px solid rgba(6, 61, 50, 0.13);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(6, 61, 50, 0.18);
    backdrop-filter: blur(18px);
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(21, 92, 73, 0.08);
  }

  .nav-enabled .nav-links {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-enabled .site-header.nav-open .nav-links {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-enabled .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-header.nav-open .menu-toggle-lines {
    background: transparent;
  }

  .site-header.nav-open .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .site-header.nav-open .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 720px;
    padding-top: 156px;
  }

  .tour-hero {
    min-height: 640px;
    padding: 172px 20px 72px;
  }

  .simple-hero {
    min-height: 440px;
    padding: 132px 20px 60px;
  }

  .simple-hero .breadcrumb {
    margin-bottom: 22px;
  }

  .legal-content,
  .sitemap-card {
    padding: 24px;
  }

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

  .tour-hero-overlay {
    background:
      linear-gradient(rgba(5, 38, 34, 0.54), rgba(5, 38, 34, 0.78)),
      linear-gradient(90deg, rgba(5, 38, 34, 0.76), rgba(5, 38, 34, 0.44));
  }

  .tour-hero h1 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .tour-hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .tour-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-trust div:nth-child(2) {
    border-right: 0;
  }

  .tour-main {
    padding-right: 20px;
    padding-left: 20px;
  }

  .tour-intro,
  .tour-block,
  .booking-panel {
    padding: 24px;
  }

  .route-strip {
    align-items: flex-start;
  }

  .route-strip svg {
    display: none;
  }

  .tour-tabs {
    position: static;
  }

  .tour-fact-grid,
  .highlight-grid,
  .hotel-grid,
  .page-stat-grid,
  .form-grid,
  .split-lists {
    grid-template-columns: 1fr;
  }

  .itinerary-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .itinerary-list article > span {
    width: fit-content;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
  }

  .question-band {
    display: grid;
  }

  .contact-form-panel,
  .contact-info-panel,
  .page-cta-panel {
    padding: 24px;
  }

  .contact-form .button {
    justify-self: stretch;
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 50px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .section h2,
  .story-copy h2,
  .cta-section h2 {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .section-heading {
    display: block;
  }

  .text-link {
    margin-top: 18px;
  }

  .tour-grid,
  .value-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tour-body p {
    min-height: auto;
  }

  .story-media {
    padding: 18px 0 34px;
  }

  .story-media::after {
    right: 12px;
  }

  .story-media img {
    height: 430px;
  }

  .story-note {
    right: 14px;
    bottom: 16px;
  }

  .footer-grid {
    width: calc(100% - 40px);
    max-width: 520px;
    gap: 30px;
  }

  .footer-bottom {
    width: calc(100% - 40px);
    max-width: 520px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .site-header,
  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    min-height: 700px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .tour-hero,
  .tour-main {
    padding-right: 18px;
    padding-left: 18px;
  }

  .tour-hero-actions,
  .question-band .button {
    width: 100%;
  }

  .tour-trust {
    grid-template-columns: 1fr;
  }

  .tour-trust div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .tour-trust div:last-child {
    border-bottom: 0;
  }

  .tour-tabs a {
    flex: 1 1 120px;
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }

  .story-media img {
    height: 360px;
  }

  .story-note {
    width: 150px;
    padding: 14px;
  }
}
