:root {
  --ink: #101416;
  --ink-soft: #262d2f;
  --paper: #f2efe7;
  --paper-bright: #fffdf7;
  --signal: #ef5b2a;
  --line: rgba(16, 20, 22, 0.2);
  --shell: min(1320px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #1c2224;
  color: var(--paper-bright);
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.72) contrast(0.92);
  transform: scale(1.015);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(6, 9, 10, 0.88) 0%, rgba(6, 9, 10, 0.6) 51%, rgba(6, 9, 10, 0.25) 100%),
    linear-gradient(0deg, rgba(6, 9, 10, 0.55) 0%, transparent 42%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--paper-bright);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-link {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-underline-offset: 5px;
}

.header-link span {
  display: inline-block;
  margin-left: 5px;
}

.hero__copy {
  width: min(980px, 100%);
  margin-top: auto;
  padding: 92px 0 6.5vh;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--ink);
}

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

h1,
h2 {
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h1 {
  max-width: 940px;
  margin-bottom: 34px;
  font-size: clamp(3.35rem, 7.2vw, 7.4rem);
}

.hero__intro {
  max-width: 680px;
  margin-bottom: 36px;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}

.hero__action {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero__action p {
  margin: 0;
  color: rgba(255, 253, 247, 0.75);
  font-size: 0.78rem;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 20px;
  border: 2px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button span {
  font-size: 1.15em;
}

.button--light {
  min-width: 230px;
  background: var(--paper-bright);
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--paper-bright);
  background: transparent;
  color: var(--paper-bright);
}

.button--dark {
  min-width: 240px;
  margin-top: 24px;
  background: var(--ink);
  color: var(--paper-bright);
}

.button--dark:hover {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

a:focus-visible {
  outline: 3px solid #62c7ff;
  outline-offset: 4px;
}

.build {
  background: var(--ink);
  color: var(--paper-bright);
}

.build__inner {
  display: flex;
  min-height: 78svh;
  align-items: center;
  padding: clamp(90px, 10vw, 150px) 0;
}

.build h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.3rem);
}

.booking {
  background: var(--signal);
}

.booking__inner {
  display: grid;
  min-height: 52svh;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 48px;
  padding-top: clamp(64px, 8vw, 110px);
}

.booking__copy {
  padding-bottom: clamp(64px, 8vw, 110px);
}

.booking__copy .button {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.6fr 1fr 1.5fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(16, 20, 22, 0.35);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .site-header {
    padding-top: 20px;
  }

  .header-link {
    font-size: 0.78rem;
  }

  .header-link span {
    font-size: 0.85rem;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(6, 9, 10, 0.82), rgba(6, 9, 10, 0.48)),
      linear-gradient(0deg, rgba(6, 9, 10, 0.8), transparent 70%);
  }

  .hero__copy {
    padding-bottom: 32px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero__intro {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .hero__action {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .booking__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .build h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .build__inner {
    min-height: 64svh;
  }

  .booking__inner {
    min-height: auto;
    padding-top: 72px;
  }

  .booking__copy {
    padding-bottom: 58px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0 28px;
  }
}

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

  .button {
    transition: none;
  }
}
