:root {
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #17211d;
  --muted: #5f6b64;
  --forest: #22483a;
  --sea: #2d6f7b;
  --clay: #b35c3d;
  --gold: #c49246;
  --mist: #eef4f0;
  --line: #d8ded8;
  --shadow: 0 18px 45px rgba(23, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(216, 222, 216, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 72px);
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.home-hero {
  background-image:
    linear-gradient(90deg, rgba(15, 27, 23, 0.82), rgba(15, 27, 23, 0.42) 58%, rgba(15, 27, 23, 0.16)),
    url("https://images.unsplash.com/photo-1495344517868-8ebaf0a2044a?auto=format&fit=crop&w=2200&q=85");
}

.travel-hero {
  background-image:
    linear-gradient(90deg, rgba(15, 27, 23, 0.78), rgba(15, 27, 23, 0.34) 58%, rgba(15, 27, 23, 0.16)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=85");
}

.hero-inner {
  width: min(840px, 100%);
}

.hero-logo {
  width: clamp(110px, 15vw, 190px);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.24));
}

.section-logo {
  width: clamp(82px, 10vw, 132px);
  height: auto;
  margin: 0 0 18px;
}

.card-logo {
  width: 92px;
  height: auto;
  margin: 0 0 18px;
}

.statement-logo {
  width: clamp(100px, 13vw, 168px);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
}

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

.hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.3vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #984c31;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.intro-band {
  padding: 40px clamp(20px, 6vw, 72px);
  background: var(--forest);
  color: var(--white);
}

.section-grid,
.section,
.statement-inner,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.25fr);
  gap: 36px;
  align-items: center;
}

.intro-grid h2,
.section-heading h2,
.statement h2,
.contact-strip h2,
.contact-copy h2,
.split-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro-grid p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.section {
  padding: clamp(70px, 9vw, 112px) 0;
}

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

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

.venture-card,
.destination-card,
.trip-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.06);
}

.venture-card {
  min-height: 230px;
  padding: 22px;
  text-decoration: none;
}

.venture-card.featured {
  grid-column: span 2;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.venture-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.venture-card h3,
.destination-card h3,
.process-list h3 {
  margin: 18px 0 0;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.venture-card p,
.destination-card p,
.process-list p,
.contact-copy p,
.split-copy p,
.statement p,
.contact-strip p {
  margin: 12px 0 0;
  color: var(--muted);
}

.venture-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.venture-card strong {
  display: inline-block;
  margin-top: 28px;
  color: var(--white);
}

.statement {
  padding: clamp(84px, 10vw, 130px) 0;
  color: var(--white);
  background-image:
    linear-gradient(0deg, rgba(18, 32, 27, 0.78), rgba(18, 32, 27, 0.22)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=2200&q=85");
  background-position: center;
  background-size: cover;
}

.travel-statement {
  background-image:
    linear-gradient(0deg, rgba(18, 32, 27, 0.78), rgba(18, 32, 27, 0.22)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2200&q=85");
}

.statement p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.page-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.page-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: 40px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--sea);
  background: var(--mist);
  border-radius: 6px;
  font-weight: 750;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.itinerary-hero {
  background-image:
    linear-gradient(90deg, rgba(15, 27, 23, 0.78), rgba(15, 27, 23, 0.34) 58%, rgba(15, 27, 23, 0.16)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=2200&q=85");
}

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

.itinerary-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.06);
}

.itinerary-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.itinerary-card div {
  padding: 24px;
}

.itinerary-card h3 {
  margin: 0;
  font-size: 1.24rem;
}

.itinerary-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.itinerary-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--muted);
}

.destination-card {
  overflow: hidden;
}

.destination-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.destination-card div {
  padding: 22px;
}

.process-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sea);
  color: var(--white);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 42px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 700;
}

.contact-details a {
  color: var(--forest);
}

.trip-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  box-shadow: var(--shadow);
}

.trip-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.trip-form .full,
.form-button,
.form-note {
  grid-column: 1 / -1;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(45, 111, 123, 0.22);
  border-color: var(--sea);
}

.form-button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  max-width: 560px;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .venture-grid,
  .destination-grid,
  .itinerary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 13px 0;
  }

  .hero {
    min-height: calc(100vh - 88px);
    align-items: end;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 5rem);
  }

  .venture-grid,
  .destination-grid,
  .itinerary-grid,
  .process-list,
  .trip-form,
  .page-links {
    grid-template-columns: 1fr;
  }

  .venture-card.featured {
    grid-column: auto;
  }

  .process-list li {
    padding: 18px 0;
  }

  .contact-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .section-grid,
  .section,
  .statement-inner,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-actions .button,
  .contact-strip .button {
    width: 100%;
  }
}
