:root {
  --ink: #14231e;
  --muted: #61716a;
  --line: #d9e0d7;
  --paper: #f6f3ea;
  --paper-strong: #ede7d8;
  --forest: #173f35;
  --forest-light: #2e6a55;
  --clay: #b3633e;
  --gold: #d9aa55;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 35, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(246, 243, 234, 0.96);
  box-shadow: 0 12px 30px rgba(20, 35, 30, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: rgba(23, 63, 53, 0.1);
}

.nav-cta {
  background: var(--gold);
  color: #201a0e;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 72px) 52px;
  color: var(--white);
}

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

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 26, 22, 0.88), rgba(10, 26, 22, 0.54) 42%, rgba(10, 26, 22, 0.2)), linear-gradient(0deg, rgba(10, 26, 22, 0.62), transparent 48%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c879;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #201a0e;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(14, 31, 27, 0.42);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.28rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.intro-copy {
  columns: 2 260px;
  column-gap: 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p {
  margin-top: 0;
}

.featured {
  background: var(--white);
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.trip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.trip-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trip-card-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(179, 99, 62, 0.12);
  color: var(--clay);
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.trip-card p,
.trip-card li,
.service-grid p,
.price-box p,
.guide-copy p,
.booking-copy p,
.season-plan p {
  color: var(--muted);
}

.trip-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.trip-card .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.itineraries {
  background: var(--paper);
}

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

.season-plan {
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.season-head {
  margin-bottom: 8px;
}

.season-head p {
  margin-bottom: 0;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--forest);
  font-weight: 800;
  cursor: pointer;
}

summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 63, 53, 0.1);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 16px 16px;
}

.schedule {
  background: var(--paper-strong);
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 18px;
}

.date-list {
  display: grid;
  gap: 12px;
}

.date-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(20, 35, 30, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.date {
  display: inline-flex;
  margin-bottom: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(23, 63, 53, 0.08);
  padding: 5px 10px;
  color: var(--clay);
  font-weight: 800;
}

.date-list strong {
  white-space: nowrap;
  line-height: 1.25;
  text-align: right;
}

.date-list small {
  color: var(--muted);
  font-size: 0.82rem;
}

.date-list p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

.price-box {
  padding: 24px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
}

.price-box p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

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

.service-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
}

.guide {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  background: var(--white);
}

.guide-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote {
  margin-top: 28px;
  padding-left: 22px;
  border-left: 4px solid var(--gold);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.25;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 7vw, 90px);
  background: var(--forest);
  color: var(--white);
}

.booking .eyebrow {
  color: var(--gold);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.contact-list a {
  color: var(--gold);
  font-weight: 800;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.7);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.booking-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.booking-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
  background: #fbfaf6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest-light);
  outline: 3px solid rgba(46, 106, 85, 0.16);
}

textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #101b17;
  color: var(--white);
}

.footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .intro,
  .schedule-layout,
  .guide,
  .booking {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 900px;
    padding: 112px 18px 28px;
  }

  .hero-content {
    padding-bottom: 36px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-panel,
  .trust-strip,
  .trip-grid,
  .itinerary-grid,
  .service-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .date-list article,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .date-list strong {
    white-space: normal;
  }

  .section {
    padding: 58px 18px;
  }
}
