:root {
  --ink: #111110;
  --muted: #66625b;
  --paper: #f6f2ea;
  --paper-strong: #fffaf1;
  --sand: #e9decc;
  --clay: #a75f3c;
  --moss: #52684a;
  --deep: #182018;
  --glass: rgba(255, 255, 255, 0.72);
  --border: rgba(17, 17, 16, 0.12);
  --shadow: 0 30px 90px rgba(25, 24, 20, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--deep);
  color: white;
}

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

img {
  display: block;
}

main {
  overflow: hidden;
}

.nav-shell {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 28px), 1040px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(246, 242, 234, 0.74);
  box-shadow: 0 18px 48px rgba(16, 16, 14, 0.16);
  backdrop-filter: blur(24px) saturate(150%);
}

.brand,
.nav-links,
.nav-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-strong);
  background: linear-gradient(135deg, var(--deep), #46563b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.nav-links {
  justify-content: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(17, 17, 16, 0.72);
  font-size: 13px;
  font-weight: 650;
  transition: 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.nav-cta {
  justify-self: end;
  padding: 11px 17px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease;
}

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

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 130px max(24px, calc((100vw - var(--max)) / 2)) 48px;
  color: white;
  isolation: isolate;
}

.hero-image {
  object-fit: cover;
  z-index: -3;
  transform: scale(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0.74));
}

.hero-content {
  max-width: 900px;
  padding-bottom: 38px;
}

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

.hero-kicker {
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 930px;
  margin-bottom: 18px;
  font-size: clamp(54px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.hero-actions,
.footer-links,
.hero-card {
  display: flex;
  align-items: center;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  transition: 200ms ease;
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.button-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-full {
  width: 100%;
}

.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 44px;
  width: min(360px, calc(100% - 48px));
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 16, 0.26);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.hero-card span,
.hero-card small {
  color: rgba(255, 255, 255, 0.72);
}

.hero-card strong {
  font-size: 19px;
  letter-spacing: -0.02em;
}

.hero-card small {
  line-height: 1.45;
}

.intro-section,
.split-section,
.booking-section,
.site-footer {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 80px);
  padding: 116px 0 70px;
}

.intro-copy h2,
.showcase-copy h2,
.split-copy h2,
.section-heading h2,
.booking-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.intro-text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.intro-text p {
  margin: 0;
}

.feature-grid {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.traveller-grid article,
.included-card,
.inquiry-card,
.contact-panel {
  border: 1px solid var(--border);
  background: rgba(255, 250, 241, 0.62);
  box-shadow: 0 20px 60px rgba(35, 30, 22, 0.06);
}

.feature-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.dot {
  width: 12px;
  height: 12px;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 8px rgba(82, 104, 74, 0.12);
}

.feature-card h3,
.traveller-grid h3,
.included-card h3,
.form-header h3 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.feature-card p,
.traveller-grid p,
.showcase-copy p,
.split-copy p,
.section-heading p,
.booking-copy p,
.inquiry-card p {
  color: var(--muted);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.showcase-section {
  width: min(calc(100% - 44px), 1320px);
  min-height: 760px;
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.showcase-media,
.experience-image,
.gallery-item,
.quote-section {
  position: relative;
  overflow: hidden;
}

.showcase-media {
  min-height: 720px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

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

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 70px);
  border-radius: var(--radius-xl);
  background: var(--deep);
  color: white;
}

.showcase-copy .eyebrow {
  color: #c7d2ba;
}

.showcase-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.soft-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding: 0 0 120px;
}

.split-copy {
  position: sticky;
  top: 120px;
}

.split-copy p,
.booking-copy p,
.section-heading p {
  font-size: 18px;
}

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

.traveller-grid article {
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.gallery-section,
.experience-section {
  width: min(calc(100% - 44px), 1320px);
  margin-inline: auto;
  padding-bottom: 120px;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  background: #ddd;
  box-shadow: 0 20px 60px rgba(35, 30, 22, 0.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.56));
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: white;
}

.gallery-item figcaption span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-item figcaption strong {
  font-size: 22px;
  letter-spacing: -0.035em;
}

.item-1 {
  grid-column: span 7;
  grid-row: span 2;
}

.item-2 {
  grid-column: span 5;
  grid-row: span 1;
}

.item-3 {
  grid-column: span 5;
  grid-row: span 1;
}

.item-4,
.item-5,
.item-6 {
  grid-column: span 4;
  grid-row: span 2;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.experience-image {
  min-height: 590px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.included-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-xl);
}

.included-card h3 {
  margin-bottom: 26px;
  font-size: clamp(28px, 4vw, 44px);
}

.included-grid {
  display: grid;
  gap: 12px;
}

.included-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  color: #343229;
  font-weight: 680;
}

.included-item span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: var(--moss);
  font-size: 13px;
}

.quote-section {
  min-height: 86vh;
  display: grid;
  place-items: center;
  margin-bottom: 120px;
  color: white;
}

.quote-image {
  z-index: -2;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(9, 12, 8, 0.58);
}

.quote-section blockquote {
  width: min(calc(100% - 40px), 960px);
  margin: 0;
  text-align: center;
  font-size: clamp(36px, 6vw, 86px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  padding-bottom: 90px;
}

.booking-copy {
  position: sticky;
  top: 120px;
}

.contact-panel {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.contact-panel div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.contact-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel strong {
  letter-spacing: -0.025em;
}

.inquiry-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-xl);
}

.form-header {
  margin-bottom: 6px;
}

.form-header h3 {
  margin-bottom: 6px;
  font-size: clamp(30px, 4vw, 48px);
}

.form-header p:last-child {
  margin-bottom: 0;
}

.field-grid {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #2e2c26;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 16, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: 160ms ease;
}

input,
select {
  height: 52px;
  padding: 0 15px;
}

textarea {
  resize: vertical;
  padding: 15px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(82, 104, 74, 0.62);
  box-shadow: 0 0 0 4px rgba(82, 104, 74, 0.11);
}

.success,
.error {
  margin: 0;
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 14px;
}

.success {
  color: #1f4f2e;
  background: rgba(76, 139, 91, 0.12);
}

.error {
  color: #812a2a;
  background: rgba(198, 67, 67, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 34px 0 44px;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links {
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .intro-section,
  .showcase-section,
  .split-section,
  .experience-layout,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .split-copy,
  .booking-copy {
    position: static;
  }

  .hero-section {
    align-items: center;
    padding-top: 120px;
  }

  .hero-card {
    margin-top: 26px;
  }

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

  .showcase-media,
  .experience-image {
    min-height: 520px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6 {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .hero-section {
    min-height: 94svh;
    padding-inline: 18px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .intro-section,
  .feature-grid,
  .split-section,
  .booking-section,
  .site-footer,
  .gallery-section,
  .experience-section,
  .showcase-section {
    width: calc(100% - 28px);
  }

  .intro-section {
    padding-top: 78px;
  }

  .feature-card,
  .traveller-grid article {
    min-height: 220px;
  }

  .showcase-media,
  .experience-image {
    min-height: 420px;
  }

  .gallery-grid {
    grid-auto-rows: 310px;
  }

  .field-grid.two {
    grid-template-columns: 1fr;
  }

  .quote-section blockquote {
    font-size: 42px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Static HTML additions */
.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
