:root {
  color-scheme: light;
  --ink: #0b1514;
  --ink-soft: #304240;
  --paper: #f7faf6;
  --paper-warm: #f2f0e7;
  --line: #dce4de;
  --sea: #0b6f6a;
  --deep: #071f22;
  --signal: #d9ff68;
  --coral: #d95545;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(520px, 45vw, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  margin-right: auto;
  padding: 22px 0;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.nav-links a,
.header-cta,
.primary-action,
.secondary-action,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(620px, 0.58fr) minmax(360px, 0.42fr);
  min-height: 84vh;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -36px;
  z-index: 0;
  background: url("assets/sailing-underway.jpg") center center / cover no-repeat;
  filter: blur(8px) saturate(1.18) brightness(1.06);
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 38% 42%, rgba(11, 111, 106, 0.06), transparent 44%),
    linear-gradient(135deg, rgba(3, 18, 20, 0.48) 0%, rgba(7, 31, 34, 0.38) 46%, rgba(3, 18, 20, 0.64) 100%);
}

.hero-media {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  min-height: 84vh;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.hero-media::before {
  content: none;
}

.hero-media::after {
  content: none;
}

.hero-video {
  position: relative;
  z-index: 2;
  width: auto;
  height: min(84vh, 860px);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  opacity: 0.98;
  filter: saturate(1.05) contrast(1.03) brightness(0.96) drop-shadow(0 34px 70px rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  min-height: 84vh;
  margin: 0;
  padding: 138px clamp(34px, 5vw, 72px) 72px max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  background: transparent;
}

.hero-copy {
  width: min(580px, 100%);
}

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

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

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 24px;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-action {
  padding: 0 22px;
  background: var(--signal);
  color: #152009;
}

.secondary-action {
  display: none;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(560px, 100%);
  margin: 38px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero-facts div {
  padding: 16px 18px;
  background: rgba(5, 27, 29, 0.5);
}

.hero-facts dt {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.glance-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.section-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.glance-detail {
  display: grid;
  gap: 28px;
}

.real-shots {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 0.25fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.real-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 24px 48px rgba(11, 21, 20, 0.12);
}

.real-shot-main {
  grid-row: span 2;
}

.real-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.real-shot-main img {
  aspect-ratio: 9 / 14;
}

.real-shot:not(.real-shot-main) img {
  aspect-ratio: 1 / 1.35;
}

.real-shot figcaption {
  padding: 10px 12px;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.feature-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list p,
.purchase-points p,
.voyage-copy p,
.plain-list {
  margin: 0;
  color: var(--ink-soft);
}

.image-band {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.74) saturate(1.02);
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 18, 20, 0.76), rgba(3, 18, 20, 0.12) 68%);
}

.image-band-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 94px 0;
}

.image-band-copy h2 {
  max-width: 720px;
}

.voyage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 62px;
  align-items: center;
}

.voyage-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.voyage-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.voyage-copy p {
  margin-top: 22px;
}

.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin-top: 24px;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 22px;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.purchase-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  padding-top: 0;
}

.purchase-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.purchase-points article {
  position: relative;
  min-width: 0;
  padding: 24px 0 24px 38px;
  border-bottom: 1px solid var(--line);
}

.point-mark {
  position: absolute;
  left: 0;
  top: 29px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(217, 255, 104, 0.22);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-brand {
  color: var(--ink);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  box-shadow: none;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer p {
  justify-self: end;
  margin: 0;
}


@media (max-width: 1039px) {
  .site-header {
    width: min(100% - 28px, 720px);
    margin: 0 auto;
  }

  .nav-links {
    display: none;
  }

  .site-header .header-cta {
    display: none;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 0.56fr) minmax(260px, 0.44fr);
    align-items: stretch;
    min-height: 84vh;
  }

  .hero-media {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: none;
    min-height: 84vh;
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
  }

  .hero-video {
    position: relative;
    inset: auto;
    width: auto;
    height: min(84vh, 860px);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0.98;
    filter: saturate(1.04) contrast(1.03) brightness(1.02) drop-shadow(0 26px 52px rgba(0, 0, 0, 0.28));
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    width: 100%;
    min-height: 84vh;
    margin: 0;
    padding: 126px 28px 54px max(20px, calc((100vw - 920px) / 2));
    display: flex;
    align-items: center;
    background: transparent;
  }

  .hero-copy {
    width: min(480px, 100%);
    margin: 0;
    padding: 0;
  }

  h1 {
    font-size: clamp(44px, 6vw, 64px);
  }

  .hero-lede {
    max-width: 430px;
    font-size: clamp(18px, 2.25vw, 22px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .primary-action,
  .secondary-action {
    width: auto;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 30px;
    width: min(360px, 100%);
  }

  .hero-facts div {
    padding: 12px 10px;
  }

  .hero-facts dt {
    font-size: 11px;
  }

  .hero-facts dd {
    font-size: 14px;
  }

  .glance-section,
  .voyage-section,
  .purchase-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section,
  .image-band-copy,
  .site-footer {
    width: min(100% - 28px, 720px);
  }

  .section {
    padding: 78px 0;
  }

  .glance-section,
  .voyage-section,
  .purchase-section {
    gap: 30px;
  }

  h2 {
    font-size: 38px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .image-band {
    min-height: 460px;
  }

  .site-footer {
    align-items: start;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .hero-media {
    order: 1;
    width: min(360px, calc(100% - 28px));
    max-width: calc(100% - 28px);
    min-height: 0;
    aspect-ratio: 9 / 16;
    margin: 86px auto 0;
    padding: 0;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.04) contrast(1.03) brightness(1.02);
  }

  .hero-content {
    order: 2;
    width: 100%;
    min-height: auto;
    padding: 34px max(14px, calc((100vw - 560px) / 2)) 58px;
    display: block;
  }

  .hero-copy {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(42px, 12vw, 56px);
    white-space: normal;
  }

  .hero-lede {
    max-width: 520px;
    font-size: 20px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-facts {
    width: 100%;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

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

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

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  h2 {
    font-size: 32px;
  }

  .real-shots {
    grid-template-columns: 1fr;
  }

  .real-shot:not(.real-shot-main) {
    display: none;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-content {
    min-height: auto;
    padding: 30px 14px 48px;
  }

  .hero-media {
    width: min(330px, calc(100% - 28px));
    margin-top: 82px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 46px);
    white-space: normal;
  }

  .hero-lede {
    font-size: 18px;
  }
}

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

  .hero-video {
    display: none;
  }

  .hero {
    background: var(--deep);
  }

  .hero-content {
    margin-top: 0;
  }
}
