:root {
  --ink: #14213d;
  --muted: #5f6f89;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dfe6ed;
  --accent: #0f8b6f;
  --accent-strong: #0b6f5a;
  --sun: #f7b538;
  --rose: #d95d69;
  --shadow: 0 24px 80px rgba(20, 33, 61, 0.12);
}

* {
  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.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(223, 230, 237, 0.82);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 13px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(40px, 7vw, 92px) clamp(20px, 5vw, 72px) 56px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 6.6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 36px rgba(15, 139, 111, 0.24);
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.hero-media {
  position: relative;
  min-height: min(62svh, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(56%, 300px);
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--sun) 0 28%, transparent 28%),
    linear-gradient(90deg, transparent 0 34%, var(--rose) 34% 54%, transparent 54%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(20, 33, 61, 0.2);
  content: "";
  backdrop-filter: blur(18px);
}

.hero-media img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.metrics div {
  min-height: 136px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--surface);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-weight: 620;
}

.section,
.booking-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-heading,
.booking-copy {
  max-width: 720px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.step {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.step span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 850;
}

.step h3 {
  margin: 34px 0 10px;
  font-size: 23px;
}

.step p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  border-top: 1px solid var(--line);
  background: #f3f7f4;
}

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

.booking-copy p {
  margin-top: 18px;
  font-size: 17px;
}

.booking-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-link-panel {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: clamp(28px, 5vw, 64px);
}

.booking-link-card {
  display: grid;
  width: min(100%, 480px);
  gap: 18px;
  justify-items: start;
}

.booking-link-card h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.booking-link-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

.site-footer a {
  color: #b7f3df;
}

@media (max-width: 920px) {
  .hero,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-media {
    min-height: 420px;
  }

  .booking-copy {
    position: static;
  }

  .steps,
  .metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: 40px;
  }

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

  .hero-media {
    min-height: 320px;
  }

  .hero-media::after {
    width: 210px;
    height: 72px;
  }

  .booking-link-panel {
    min-height: 360px;
  }
}
