:root {
  --ink: #182522;
  --teal: #073f3b;
  --teal-deep: #042e2b;
  --teal-soft: #dce9e4;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --sand: #d7bd8e;
  --coral: #eb795c;
  --coral-dark: #d75f43;
  --line: rgba(24, 37, 34, 0.16);
  --muted: #64706d;
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 30px 80px rgba(4, 46, 43, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(235, 121, 92, 0.75);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--coral);
  font-weight: 400;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 132px 0;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--white);
  color: var(--teal);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  margin-bottom: 24px;
  color: var(--coral-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ffd5c9;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

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

.button-coral {
  background: var(--coral);
  color: var(--teal-deep);
}

.button-coral:hover {
  background: #ff9379;
}

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

.button-dark:hover {
  background: var(--teal-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.25s ease, color 0.25s ease;
}

.text-link:hover {
  gap: 18px;
  color: var(--coral-dark);
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.site-header.scrolled {
  color: var(--teal);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 32px rgba(4, 46, 43, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.scrolled::after {
  background: var(--line);
}

.nav-shell {
  display: flex;
  width: min(1320px, calc(100% - 48px));
  height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.site-nav a {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: background 0.25s ease, color 0.25s ease;
}

.site-header.scrolled .nav-cta {
  border-color: var(--teal);
}

.nav-cta:hover {
  background: var(--white);
  color: var(--teal);
}

.site-header.scrolled .nav-cta:hover {
  background: var(--teal);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  height: min(920px, 100svh);
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--teal-deep);
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-drift 18s ease-out both;
}

@keyframes hero-drift {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(3, 34, 32, 0.92) 0%, rgba(3, 34, 32, 0.68) 46%, rgba(3, 34, 32, 0.08) 78%),
    linear-gradient(0deg, rgba(3, 34, 32, 0.55), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 80px;
  align-items: end;
  padding-top: 68px;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 8vw, 7.7rem);
  line-height: 0.86;
  text-wrap: balance;
}

.hero h1 em {
  color: #ffd5c9;
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-note {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(4, 46, 43, 0.42);
  backdrop-filter: blur(12px);
}

.hero-note > span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note > strong {
  display: flex;
  align-items: baseline;
  margin: 8px 0 3px;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}

.hero-note sup {
  margin-right: 2px;
  font-family: var(--sans);
  font-size: 1rem;
}

.hero-note strong small {
  margin-left: 7px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-note p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.hero-note a {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg) translateX(36px);
  transform-origin: center;
}

.hero-scroll i {
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.hero-scroll i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  65%, 100% { transform: translateX(100%); }
}

.trust-strip {
  color: var(--white);
  background: var(--teal);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: grid;
  min-height: 116px;
  grid-template-columns: 35px 1fr;
  align-items: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid > div > span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
  line-height: 1.45;
}

.trust-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro {
  overflow: hidden;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr 0.45fr;
  grid-template-rows: auto auto;
  gap: 50px 64px;
  align-items: start;
}

.section-kicker {
  grid-column: 1;
  grid-row: 1;
}

.kicker-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.intro-copy {
  grid-column: 2 / 4;
  grid-row: 1;
  max-width: 760px;
}

.intro-copy h2,
.section-heading h2,
.story h2,
.booking h2,
.faq h2 {
  margin-bottom: 32px;
  font-size: clamp(3rem, 5.3vw, 5.2rem);
}

.intro-copy .lead {
  max-width: 680px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.48;
}

.intro-copy > p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.intro-image {
  position: relative;
  grid-column: 1 / 3;
  grid-row: 2;
  height: 470px;
  margin: 0;
}

.intro-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  content: "";
  pointer-events: none;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image figcaption,
.story-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.intro-image figcaption span,
.story-image figcaption span {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-stamp {
  grid-column: 3;
  grid-row: 2;
  display: flex;
  aspect-ratio: 1;
  max-width: 290px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  text-align: center;
}

.intro-stamp strong {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5vw, 5.3rem);
  font-weight: 400;
  line-height: 0.9;
}

.intro-stamp span {
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 10px;
  color: var(--muted);
}

.tour-grid {
  display: grid;
  gap: 28px;
}

.tour-card {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) 1.18fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tour-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.tour-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--teal-soft);
}

.tour-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 30, 28, 0.45));
  content: "";
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.tour-badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  color: var(--teal-deep);
  background: var(--coral);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tour-number {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 17px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: italic;
}

.tour-body {
  display: flex;
  padding: 48px;
  flex-direction: column;
}

.tour-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.tour-area {
  margin-bottom: 10px;
  color: var(--coral-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tour-card h3 {
  max-width: 430px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.tour-price {
  min-width: 112px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.tour-price small,
.tour-price span {
  display: block;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tour-price strong {
  display: block;
  margin: 3px 0;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 1;
}

.tour-body > p {
  max-width: 660px;
  color: var(--muted);
}

.tour-stops {
  display: flex;
  padding: 0;
  margin: 10px 0 30px;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tour-stops li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--teal);
  background: var(--cream);
  font-size: 0.66rem;
  font-weight: 700;
}

.tour-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.tour-footer p {
  margin: 0;
}

.tour-footer p span {
  display: block;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-footer p strong {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.tour-select {
  padding: 8px 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--teal);
  background: transparent;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.tour-select span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 0.2s ease;
}

.tour-select:hover span {
  transform: translateX(5px);
}

.tour-notices {
  margin-top: 28px;
  text-align: center;
}

.tour-fee-notice {
  max-width: 760px;
  padding: 15px 20px;
  margin: 0 auto;
  border: 1px solid rgba(230, 103, 78, 0.42);
  color: var(--ink);
  background: rgba(230, 103, 78, 0.08);
  font-size: 0.82rem;
}

.tour-fee-notice strong {
  color: var(--coral-dark);
}

.tour-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.story {
  overflow: hidden;
  color: var(--white);
  background: var(--teal);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.88fr 0.62fr 0.8fr;
  grid-template-rows: auto 160px;
  gap: 26px;
  align-items: stretch;
}

.story-copy {
  display: flex;
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 38px 46px 38px 0;
  flex-direction: column;
  justify-content: center;
}

.story h2 {
  color: var(--white);
}

.story h2 em {
  color: #ffd5c9;
}

.story-copy > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.67);
}

.story-copy .text-link {
  align-self: flex-start;
}

.story-image {
  position: relative;
  height: 100%;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
}

.story-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(3, 34, 32, 0.7));
  content: "";
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-image:hover img {
  transform: scale(1.04);
}

.story-image-one {
  grid-column: 2;
  grid-row: 1 / 3;
}

.story-image-two {
  grid-column: 3;
  grid-row: 1;
}

.story-image figcaption {
  z-index: 2;
  display: block;
}

.story-image figcaption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.story-quote {
  position: relative;
  display: flex;
  grid-column: 3;
  grid-row: 2;
  align-items: center;
  padding: 28px 28px 28px 72px;
  color: var(--teal-deep);
  background: var(--coral);
}

.story-quote > span {
  position: absolute;
  top: 15px;
  left: 24px;
  font-family: var(--serif);
  font-size: 4.6rem;
  line-height: 1;
}

.story-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.35;
}

.planning {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 44px 40px 38px;
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 65px;
  color: var(--coral-dark);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.service-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.service-card > p:last-child {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.booking {
  color: var(--white);
  background: var(--teal-deep);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.booking h2 {
  color: var(--white);
}

.booking h2 em {
  color: #ffd5c9;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.68);
}

.payment-list {
  padding: 24px 0;
  margin: 34px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.payment-list p {
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.83rem;
}

.payment-list span {
  margin-right: 10px;
  color: var(--coral);
}

.currency-note {
  max-width: 440px;
  padding-top: 18px;
  margin-top: -10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.65;
}

.booking-form {
  padding: 46px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 23px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: block;
  margin-bottom: 20px;
}

.form-row-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.booking-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(7, 63, 59, 0.09);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  gap: 14px;
}

.booking-fee-notice {
  padding: 13px 15px;
  margin: 4px 0 16px;
  border-left: 3px solid var(--coral);
  color: var(--ink);
  background: rgba(230, 103, 78, 0.08);
  font-size: 0.76rem;
  line-height: 1.55;
}

.booking-fee-notice strong {
  color: var(--teal);
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 320px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 2px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.3rem;
  text-align: left;
  cursor: pointer;
}

.faq-item button i {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 24px;
  flex: 0 0 20px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--teal);
  content: "";
  transition: transform 0.25s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  padding: 0 50px 28px 0;
  margin: 0;
  color: var(--muted);
}

.faq-item:has(button[aria-expanded="true"]) .faq-answer {
  grid-template-rows: 1fr;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 660px;
  overflow: hidden;
  place-items: center;
  color: var(--white);
}

.final-cta-media,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  background: rgba(4, 46, 43, 0.56);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 36px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.87;
}

.final-cta h2 em {
  color: #ffd5c9;
}

.site-footer {
  padding: 88px 0 26px;
  color: var(--white);
  background: var(--teal-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 70px;
}

.footer-brand p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.footer-column > a:not(.text-link):hover {
  color: var(--coral);
}

.footer-action {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-action .text-link {
  margin-top: 14px;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.mobile-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 49px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border-radius: 28px;
  color: var(--white);
  background: #1da851;
  box-shadow: 0 14px 34px rgba(2, 59, 29, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-whatsapp:hover {
  box-shadow: 0 18px 40px rgba(2, 59, 29, 0.34);
  transform: translateY(-3px);
}

.mobile-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-delay {
  transition-delay: 0.16s;
}

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

@media (max-width: 1020px) {
  .site-nav {
    gap: 20px;
  }

  .hero-content {
    grid-template-columns: 1fr 240px;
    gap: 36px;
  }

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

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

  .intro-grid {
    grid-template-columns: 0.45fr 1fr;
  }

  .intro-copy {
    grid-column: 2;
  }

  .intro-image {
    grid-column: 1 / 3;
  }

  .intro-stamp {
    grid-column: 2;
    grid-row: 2;
    width: 220px;
    border-color: var(--white);
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  }

  .section-heading {
    grid-template-columns: 1fr 0.5fr;
    gap: 48px;
  }

  .tour-card {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .tour-body {
    padding: 36px;
  }

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

  .story-copy {
    grid-column: 1 / 3;
    grid-row: 1;
    padding: 0 0 40px;
  }

  .story-image-one {
    grid-column: 1;
    grid-row: 2 / 4;
  }

  .story-image-two {
    grid-column: 2;
    grid-row: 2;
  }

  .story-quote {
    grid-column: 2;
    grid-row: 3;
  }

  .booking-grid {
    gap: 50px;
  }

  .faq-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 680px);
  }

  .section {
    padding: 92px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(420px, 100%);
    height: 100svh;
    padding: 120px 38px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    color: var(--white);
    background: var(--teal-deep);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav .nav-cta {
    padding: 13px 20px;
    border-color: rgba(255, 255, 255, 0.6);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-open .site-nav {
    transform: translateX(0);
  }

  .menu-open .site-header,
  .menu-open .site-header.scrolled {
    color: var(--white);
    background: transparent;
    box-shadow: none;
  }

  .menu-open .menu-toggle {
    z-index: 2;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero-wash {
    background: linear-gradient(90deg, rgba(3, 34, 32, 0.9), rgba(3, 34, 32, 0.35)), linear-gradient(0deg, rgba(3, 34, 32, 0.75), transparent 55%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 38px;
    align-content: center;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 13vw, 6.8rem);
  }

  .hero-note {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-kicker,
  .intro-copy,
  .intro-image {
    grid-column: 1;
    grid-row: auto;
  }

  .intro-image {
    height: 420px;
  }

  .intro-stamp {
    grid-column: 1;
    grid-row: 3;
    width: 180px;
    margin: 0 24px 24px 0;
    align-self: end;
    justify-self: end;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 50px;
  }

  .section-heading > p {
    max-width: 580px;
  }

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

  .tour-image {
    min-height: 360px;
  }

  .tour-title-row {
    grid-template-columns: 1fr auto;
  }

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

  .service-card {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-icon {
    margin-bottom: 38px;
  }

  .booking-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .nav-shell {
    width: calc(100% - 28px);
    height: 72px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.2rem);
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

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

  .intro-copy h2,
  .section-heading h2,
  .story h2,
  .booking h2,
  .faq h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .intro-image {
    height: 430px;
  }

  .intro-image img {
    object-position: 60% center;
  }

  .intro-stamp {
    width: 145px;
  }

  .tour-image {
    min-height: 260px;
  }

  .tour-body {
    padding: 28px 22px;
  }

  .tour-title-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tour-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    padding: 0 0 22px;
    border-left: 0;
  }

  .tour-price small,
  .tour-price span,
  .tour-price strong {
    display: inline-block;
  }

  .tour-price strong {
    font-size: 2rem;
  }

  .tour-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 470px 310px auto;
  }

  .story-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .story-image-one {
    grid-column: 1;
    grid-row: 2;
  }

  .story-image-two {
    grid-column: 1;
    grid-row: 3;
  }

  .story-quote {
    grid-column: 1;
    grid-row: 4;
    min-height: 150px;
  }

  .service-card {
    padding: 36px 26px;
  }

  .booking-form {
    padding: 30px 21px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .form-row-two {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-item button {
    min-height: 78px;
    font-size: 1.15rem;
  }

  .final-cta {
    min-height: 580px;
  }

  .final-cta h2 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

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

  .footer-action {
    padding: 26px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
  }

  .mobile-whatsapp span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
