/* Homepage-only SEO content and responsive image treatment. */
.home-hero {
  overflow: hidden;
  background: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.home-hero .hero-copy {
  padding-bottom: 90px;
}

.home-hero h1 {
  max-width: 1050px;
  font-size: clamp(42px, 5.8vw, 82px);
}

.home-slogan {
  margin: 20px 0 8px;
  color: #f0b07e;
  font: 600 clamp(24px, 3vw, 38px) / 1.2 "Oswald", sans-serif;
  text-transform: uppercase;
}

.home-hero .hero-copy > p:not(.home-slogan) {
  max-width: 760px;
}

.home-story,
.home-custom,
.home-departures {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 8vw;
  align-items: start;
}

.home-story h2,
.home-custom h2,
.home-departures h2 {
  margin: 14px 0 26px;
  font-size: clamp(42px, 5vw, 72px);
}

.home-story p:not(.lead),
.home-custom p:not(.lead),
.home-departures p {
  color: var(--muted);
  line-height: 1.75;
}

.home-story-panel {
  position: sticky;
  top: 24px;
  padding: 48px;
  color: #fff;
  background: var(--ink);
}

.home-story-panel h2 {
  font-size: clamp(34px, 3.5vw, 50px);
}

.home-story-panel p {
  color: #bbb !important;
}

.light-arrow {
  color: #fff;
}

.section-intro {
  max-width: 850px;
  margin: -15px 0 40px;
  color: #c9c4bb;
  line-height: 1.75;
}

.home-custom {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.home-custom-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.home-custom .btn {
  margin-top: 18px;
}

.home-departures {
  grid-template-columns: 1fr 1fr;
  background: var(--sand);
}

.home-departures a:not(.arrow) {
  color: var(--orange);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 900px) {
  .home-hero .hero-copy {
    padding-bottom: 120px;
  }

  .home-story,
  .home-custom,
  .home-departures {
    grid-template-columns: 1fr;
  }

  .home-story-panel {
    position: static;
  }

  .home-custom-image img {
    height: 500px;
  }
}

@media (max-width: 600px) {
  .home-hero {
    align-items: flex-start;
    min-height: 820px;
    height: auto;
  }

  .home-hero .hero-copy {
    margin-top: 80px;
    padding-bottom: 170px;
  }

  .home-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .home-slogan {
    font-size: 25px;
  }

  .home-story-panel {
    padding: 32px 26px;
  }

  .home-custom-image img {
    height: 380px;
  }

  .home-departures {
    gap: 30px;
  }
}
