:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5c6862;
  --line: #dce4de;
  --paper: #fbfaf6;
  --mist: #edf3ef;
  --leaf: #1f5f4a;
  --leaf-dark: #12382d;
  --coral: #e76f51;
  --gold: #e6a738;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 33, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  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;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: 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;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(251, 250, 246, 0.95);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(23, 33, 29, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle svg,
.button svg,
.service-item svg,
.check-list svg,
.contact-methods svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 25, 22, 0.76) 0%, rgba(9, 25, 22, 0.4) 45%, rgba(9, 25, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(9, 25, 22, 0.68) 0%, rgba(9, 25, 22, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(820px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 86px;
  padding-bottom: 54px;
}

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

.hero .eyebrow {
  color: #ffd1c1;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 6.8rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 4.15rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.22rem;
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  gap: 9px;
}

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

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

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

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

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

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink);
}

.section-pad {
  padding: clamp(76px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  background: var(--paper);
}

.intro-copy {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.media-band {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 12px;
  background: var(--leaf-dark);
}

.feature-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #20332c;
}

.feature-large {
  min-height: 560px;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(10, 24, 21, 0.78), rgba(10, 24, 21, 0.04) 62%);
}

.feature-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: var(--white);
}

.feature-card span {
  display: block;
  margin-bottom: 8px;
  color: #f4c45c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card strong {
  display: block;
  max-width: 520px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.services {
  background: var(--mist);
}

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

.service-item {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-item svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--leaf);
}

.service-item p,
.destination-grid p,
.package-card p,
.story-content p,
.proof-content p,
.contact-copy p {
  color: var(--muted);
}

.story-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 680px;
  background: var(--leaf-dark);
  color: var(--white);
}

.story-image {
  min-height: 520px;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 104px);
}

.story-content h2 {
  max-width: 760px;
  margin-bottom: 26px;
}

.story-content p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

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

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: #f4c45c;
}

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

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.destination-grid article {
  min-height: 255px;
  padding: 28px;
  background: var(--paper);
}

.destination-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--coral);
  font-weight: 900;
}

.packages {
  background: #f7efe8;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.package-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid rgba(23, 33, 29, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.featured-package {
  color: var(--white);
  background: var(--leaf);
  box-shadow: var(--shadow);
}

.featured-package p,
.featured-package .package-label {
  color: rgba(255, 255, 255, 0.78);
}

.package-label {
  margin-bottom: 36px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-price {
  margin-bottom: 22px;
  font-size: 1.9rem;
  font-weight: 900;
}

.package-card .button,
.package-card .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--leaf);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--coral);
}

.schedule {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: var(--paper);
}

.schedule-copy {
  position: sticky;
  top: 110px;
}

.schedule-copy h2 {
  margin-bottom: 24px;
}

.schedule-copy p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.08rem;
}

.schedule-meta {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.schedule-meta span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
  color: var(--leaf-dark);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  gap: 9px;
}

.schedule-meta svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
}

.calendar-panel {
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(23, 33, 29, 0.08);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
}

.proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: var(--paper);
}

.proof-media {
  height: min(620px, 64vw);
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
}

.proof-content h2 {
  margin-bottom: 32px;
}

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

blockquote {
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: var(--mist);
}

blockquote p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.02rem;
}

cite {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
  background: var(--leaf-dark);
  color: var(--white);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-copy p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-methods {
  margin-top: 28px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  gap: 9px;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.94);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 167, 56, 0.22);
}

.full-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #ffd1c1;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #0b1714;
}

.site-footer p,
.site-footer a {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  gap: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffd1c1;
}

.site-footer svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1050px) {
  h1 {
    font-size: 5.45rem;
  }

  h2 {
    font-size: 3.45rem;
  }

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

  .media-band {
    grid-template-columns: 1fr 1fr;
  }

  .feature-large {
    grid-column: 1 / -1;
  }

  .package-grid,
  .schedule,
  .proof,
  .contact,
  .intro,
  .story-band {
    grid-template-columns: 1fr;
  }

  .story-image {
    order: 2;
  }

  .story-content {
    order: 1;
  }

  .contact-copy {
    position: static;
  }

  .schedule-copy {
    position: static;
  }
}

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

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 25, 22, 0.72) 0%, rgba(9, 25, 22, 0.38) 56%, rgba(9, 25, 22, 0.56) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px;
    padding-top: 96px;
    padding-bottom: 30px;
  }

  h1 {
    max-width: 100%;
    font-size: 3.05rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .section-pad {
    padding: 66px 18px;
  }

  .media-band,
  .service-grid,
  .destination-grid,
  .package-grid,
  .quote-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-large {
    min-height: 360px;
  }

  .service-item,
  .destination-grid article,
  .package-card {
    min-height: auto;
  }

  .story-band {
    min-height: auto;
  }

  .story-content {
    padding: 66px 18px;
  }

  .story-image {
    min-height: 390px;
  }

  .proof-media {
    height: 390px;
    min-height: 390px;
  }

  .calendar-panel,
  .calendly-inline-widget {
    min-height: 680px;
    height: 680px;
  }

  .contact-methods a {
    width: 100%;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

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

  .button {
    min-height: 50px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
