﻿:root {
  color-scheme: dark;
  --ink: #06100d;
  --ink-soft: #10201a;
  --forest: #153f2f;
  --lagoon: #9de8dc;
  --banana: #f4d35e;
  --cream: #f7f2e6;
  --mist: #c3ccc5;
  --line: rgba(247, 242, 230, 0.18);
  --header-height: 88px;
  --page-gutter: clamp(22px, 5vw, 78px);
  --display: "Arial Black", "Segoe UI Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(55, 122, 87, 0.18), transparent 30rem),
    var(--ink);
  color: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

::selection {
  background: var(--banana);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--banana);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid transparent;
  transition:
    height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  height: 72px;
  border-color: var(--line);
  background: rgba(6, 16, 13, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: flex-end;
  justify-self: start;
  gap: 9px;
  width: max-content;
}

.brand img {
  width: 103px;
  height: auto;
}

.brand span,
.footer-brand span {
  padding-bottom: 1px;
  color: var(--banana);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.34em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.25vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(247, 242, 230, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--banana);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--cream);
}

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

.menu-toggle {
  display: none;
  justify-self: end;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  cursor: pointer;
}

.menu-close-label {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-label {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close-label {
  display: inline;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  align-content: center;
  gap: 0;
  padding: calc(var(--header-height) + 42px) var(--page-gutter) 42px;
  background:
    radial-gradient(circle at 78% 20%, rgba(73, 149, 109, 0.28), transparent 42%),
    var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

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

.mobile-nav a {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(25px, 7vw, 48px);
  letter-spacing: -0.045em;
}

.mobile-nav a span {
  color: var(--banana);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.mobile-nav a.is-active {
  color: var(--banana);
}

.page[hidden] {
  display: none;
}

.blank-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 60% 30%, rgba(42, 97, 72, 0.18), transparent 32rem),
    var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  height: 100svh;
  overflow: hidden;
  background: #101c17 url("/assets/eapes-island-poster.jpg") center / cover no-repeat;
}

.hero-video,
.hero-shade,
.hero-orbit {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(1, 9, 7, 0.42) 0%, rgba(1, 8, 6, 0.02) 34%, rgba(1, 8, 6, 0.12) 58%, rgba(1, 9, 7, 0.82) 100%),
    linear-gradient(90deg, rgba(1, 9, 7, 0.5) 0%, transparent 56%);
}

.hero-orbit {
  left: auto;
  width: min(58vw, 820px);
  border: 1px solid rgba(247, 242, 230, 0.24);
  border-radius: 50%;
  opacity: 0.36;
  transform: translate(40%, -23%) rotate(-18deg);
}

.hero-orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--banana);
  box-shadow: 0 0 24px rgba(244, 211, 94, 0.8);
  content: "";
}

.hero-content {
  position: absolute;
  right: var(--page-gutter);
  bottom: clamp(52px, 8vh, 92px);
  left: var(--page-gutter);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
}

.eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -10px;
  color: var(--banana);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.hero h1 {
  display: grid;
  width: min(720px, 72vw);
  margin: 0;
  line-height: 0.75;
}

.hero-wordmark,
.hero-island {
  font-family: var(--display);
  font-size: clamp(76px, 12vw, 190px);
  font-weight: 900;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero-wordmark {
  color: var(--cream);
}

.hero-island {
  justify-self: end;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247, 242, 230, 0.9);
}

.hero-scroll {
  display: grid;
  justify-items: end;
  gap: 16px;
  padding-bottom: 6px;
  color: rgba(247, 242, 230, 0.9);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.21em;
}

.scroll-line {
  position: relative;
  width: 84px;
  height: 1px;
  overflow: hidden;
  background: rgba(247, 242, 230, 0.3);
}

.scroll-line::after {
  position: absolute;
  inset: 0;
  background: var(--banana);
  content: "";
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

.video-toggle {
  position: absolute;
  right: var(--page-gutter);
  bottom: 22px;
  z-index: 3;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(247, 242, 230, 0.45);
  background: transparent;
  color: rgba(247, 242, 230, 0.78);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.19em;
  cursor: pointer;
}

.welcome-section {
  position: relative;
  padding: clamp(110px, 15vw, 220px) var(--page-gutter);
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(35, 98, 70, 0.24), transparent 34rem),
    var(--ink);
}

.welcome-section::after {
  position: absolute;
  right: -18vw;
  bottom: -32vw;
  width: 66vw;
  height: 66vw;
  border: 1px solid rgba(157, 232, 220, 0.1);
  border-radius: 50%;
  content: "";
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(48px, 7vw, 92px);
  color: var(--lagoon);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.23em;
}

.section-marker span:first-child {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(157, 232, 220, 0.35);
  border-radius: 50%;
  color: var(--banana);
  letter-spacing: 0;
}

.welcome-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(56px, 10vw, 160px);
  max-width: 1500px;
  margin: 0 auto;
}

.welcome-grid h2 {
  display: flex;
  flex-direction: column;
  align-self: start;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.6vw, 105px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.welcome-prefix {
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.19em;
  font-weight: 900;
  letter-spacing: 0.19em;
  line-height: 2.2;
}

.welcome-grid h2 em {
  color: var(--banana);
  font-style: normal;
}

.welcome-promise {
  max-width: 720px;
  margin-top: 0.42em;
  color: var(--cream);
  font-size: 0.45em;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.welcome-copy {
  display: flex;
  flex-direction: column;
  gap: 52px;
  padding-top: 12px;
}

.welcome-copy p,
.commercial-copy p {
  margin: 0;
  color: var(--mist);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.78;
}

.lead-copy::first-letter {
  float: left;
  margin: 4px 10px 0 0;
  color: var(--banana);
  font-family: var(--display);
  font-size: 4.25em;
  line-height: 0.75;
}

.development-note {
  position: relative;
  padding: 26px 0 0 34px;
  border-top: 1px solid var(--line);
  color: rgba(195, 204, 197, 0.72) !important;
  font-size: clamp(13px, 1vw, 15px) !important;
  line-height: 1.75 !important;
}

.development-note::before {
  position: absolute;
  top: 27px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--banana);
  box-shadow: 0 0 15px rgba(244, 211, 94, 0.55);
  content: "";
}

.commercial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(420px, 0.88fr);
  min-height: 820px;
  background: var(--cream);
  color: var(--ink);
}

.commercial-media {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #1d2f23 url("/assets/retreat-pan-poster.jpg") center / cover no-repeat;
}

.commercial-media video,
.commercial-media-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.commercial-media video {
  object-fit: cover;
}

.commercial-media-shade {
  background:
    linear-gradient(180deg, rgba(6, 16, 13, 0.03), rgba(6, 16, 13, 0.22)),
    linear-gradient(90deg, transparent 65%, rgba(6, 16, 13, 0.18));
}

.media-caption {
  position: absolute;
  bottom: 32px;
  left: 34px;
  z-index: 1;
  margin: 0;
  color: rgba(247, 242, 230, 0.78);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.commercial-copy {
  align-self: center;
  padding: clamp(90px, 11vw, 170px) clamp(32px, 5vw, 78px);
}

.section-marker-dark {
  margin-bottom: 50px;
  color: var(--forest);
}

.section-marker-dark span:first-child {
  border-color: rgba(21, 63, 47, 0.32);
  color: var(--forest);
}

.commercial-copy h2 {
  max-width: 630px;
  margin: 0 0 54px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(48px, 4.65vw, 76px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.commercial-copy p {
  color: #31423a;
}

.commercial-copy p + p {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(6, 16, 13, 0.16);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  padding: 50px var(--page-gutter);
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-brand img {
  width: 90px;
}

.site-footer > a:last-child {
  color: rgba(247, 242, 230, 0.7);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.21em;
}

.noscript-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: 360px;
  margin: 0;
  padding: 16px;
  background: var(--banana);
  color: var(--ink);
  font-weight: 700;
}

:focus-visible {
  outline: 2px solid var(--banana);
  outline-offset: 5px;
}

@keyframes scroll-pulse {
  0% {
    transform: translateX(-105%);
  }
  55%,
  100% {
    transform: translateX(105%);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .welcome-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  .commercial-section {
    grid-template-columns: 1fr;
  }

  .commercial-media {
    position: relative;
    height: min(78svh, 820px);
  }

  .commercial-copy {
    max-width: 900px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-solid {
    height: var(--header-height);
  }

  .brand img {
    width: 83px;
  }

  .brand span {
    font-size: 8px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-video {
    object-position: 53% center;
  }

  .hero-content {
    bottom: 66px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    width: 100%;
  }

  .hero-wordmark,
  .hero-island {
    font-size: clamp(68px, 23vw, 108px);
  }

  .hero-scroll {
    display: none;
  }

  .video-toggle {
    right: auto;
    left: var(--page-gutter);
    bottom: 22px;
  }

  .hero-orbit {
    width: 110vw;
  }

  .welcome-section {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .welcome-grid h2 {
    font-size: clamp(46px, 14vw, 76px);
  }

  .welcome-copy {
    display: flex;
    gap: 42px;
  }

  .welcome-copy p,
  .commercial-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .commercial-media {
    height: 66svh;
    min-height: 480px;
  }

  .commercial-media video {
    object-position: 54% center;
  }

  .media-caption {
    bottom: 20px;
    left: var(--page-gutter);
  }

  .commercial-copy {
    padding-top: 86px;
    padding-bottom: 100px;
  }

  .commercial-copy h2 {
    margin-bottom: 42px;
    font-size: clamp(42px, 12.5vw, 64px);
  }

  .site-footer {
    min-height: 145px;
  }
}

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