:root {
  --navy: #06254b;
  --navy-deep: #031b38;
  --blue: #0a4c83;
  --blue-light: #87b8d1;
  --foam: #f8f6f0;
  --sand: #e7e0d2;
  --white: #ffffff;
  --ink: #10243a;
  --muted: #607083;
  --line: rgba(6, 37, 75, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--foam);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

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

.eyebrow {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4vw;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(3, 27, 56, 0.08);
}

.brand,
.brand-surface {
  display: block;
}

.brand-surface {
  width: 150px;
  height: 66px;
  overflow: visible;
  background: transparent;
}

.brand-surface img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav-cta {
  padding: 11px 20px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--navy);
  background: transparent;
}

.menu-toggle {
  display: none;
}

.scroll-hero {
  height: 320vh;
  min-height: 1800px;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-video {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 106%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transform: translate3d(-2.5%, 0, 0) scale(1.045);
  will-change: transform;
}

.hero-video {
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 19, 41, 0.8) 0%, rgba(2, 27, 52, 0.33) 52%, rgba(2, 19, 41, 0.42) 100%),
    linear-gradient(0deg, rgba(2, 18, 37, 0.55), transparent 48%);
}

.water-light {
  position: absolute;
  z-index: -1;
  right: -15vw;
  bottom: -22vh;
  width: 70vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.water-light::before,
.water-light::after {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: inherit;
  content: "";
}

.water-light::after {
  inset: 19%;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: max(5vw, calc((100vw - 1240px) / 2));
  width: min(760px, 68vw);
  transform: translateY(-43%);
  will-change: transform, opacity;
}

.hero-copy h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero-copy h1 em {
  font-weight: 400;
}

.hero-lead {
  max-width: 480px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
}

.hero-actions,
.reservation-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: transparent;
}

.button-navy {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-navy:hover,
.button-navy:focus-visible {
  color: var(--navy);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.text-link.light {
  color: var(--white);
}

.hero-chapters {
  position: absolute;
  right: max(5vw, calc((100vw - 1240px) / 2));
  bottom: 12vh;
  width: min(340px, 30vw);
  text-align: right;
}

.chapters-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-chapters ol {
  position: relative;
  height: 58px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-chapters li {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.hero-chapters li.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll {
  position: absolute;
  bottom: 46px;
  left: max(5vw, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll i {
  display: block;
  width: 120px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero-scroll b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.intro {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.5fr 0.62fr;
  gap: 9vw;
  align-items: center;
  padding-block: 140px;
}

.intro-index {
  position: absolute;
  top: 70px;
  left: 0;
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 12rem);
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.intro h2,
.section-heading h2,
.approach h2,
.reservation h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.intro-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #465c70;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.55;
}

.intro-body {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.intro-note {
  align-self: end;
  padding: 30px 0 0 24px;
  border-top: 1px solid var(--line);
}

.intro-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.intro-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-stats {
  position: relative;
  overflow: hidden;
  padding-block: 125px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(55, 134, 175, 0.3), transparent 31%),
    linear-gradient(135deg, var(--navy-deep), #073b68);
  content-visibility: auto;
  contain-intrinsic-size: 780px;
}

.trust-stats::before {
  position: absolute;
  top: -38%;
  right: -14%;
  width: min(60vw, 800px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.stats-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 7vw;
  align-items: end;
  margin-bottom: 66px;
}

.stats-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.stats-heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.stats-heading > p:last-child {
  max-width: 430px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.63);
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-card {
  min-height: 310px;
  padding: 38px 30px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-card strong {
  display: flex;
  min-height: 98px;
  align-items: baseline;
  margin-bottom: 35px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 4.8vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.stat-card strong sup {
  margin-left: 4px;
  color: var(--blue-light);
  font-family: var(--sans);
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0;
}

.stat-card strong.stat-word {
  align-items: flex-end;
  font-size: clamp(2.3rem, 3.4vw, 3.75rem);
}

.stat-card h3 {
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.7;
}

.experiences,
.fleet {
  padding-block: 130px;
  background: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: 1200px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: 78px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 10px;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.experience-card {
  position: relative;
  min-height: 320px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease;
}

.experience-card:hover {
  color: var(--white);
  background: var(--navy);
}

.card-number {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.card-icon {
  margin: 36px 0 30px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}

.experience-card:hover .card-number,
.experience-card:hover .card-icon,
.experience-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.experience-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.experience-card p {
  max-width: 290px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 220ms ease;
}

.manifesto {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 68%, rgba(42, 122, 167, 0.44), transparent 34%),
    linear-gradient(145deg, #031a35, #063b69 68%, #052d52);
  content-visibility: auto;
  contain-intrinsic-size: 860px;
}

.manifesto-line {
  position: absolute;
  top: 50%;
  left: 62%;
  width: min(62vw, 790px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.manifesto-line::before,
.manifesto-line::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  content: "";
}

.manifesto-line::before {
  inset: 13%;
}

.manifesto-line::after {
  inset: 29%;
}

.manifesto-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 860px;
  flex-direction: column;
  justify-content: center;
}

.manifesto-text {
  margin-bottom: 42px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7.6rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.manifesto-text em {
  font-weight: 400;
}

.manifesto-note {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.fleet {
  background: var(--foam);
}

.fleet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 88px 34px;
}

.yacht-card:nth-child(even) {
  padding-top: 100px;
}

.yacht-card-wide {
  grid-column: 1 / -1;
  width: 74%;
  margin-inline: auto;
  padding-top: 0 !important;
}

.yacht-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dce6e8;
}

.yacht-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 27, 56, 0.56), transparent 45%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.yacht-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.yacht-image-wrap > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.yacht-image-wrap:hover img,
.yacht-image-wrap:focus-visible img {
  transform: scale(1.035);
}

.yacht-image-wrap:hover::after,
.yacht-image-wrap:focus-visible::after,
.yacht-image-wrap:hover > span,
.yacht-image-wrap:focus-visible > span {
  opacity: 1;
}

.yacht-image-wrap:hover > span,
.yacht-image-wrap:focus-visible > span {
  transform: translateY(0);
}

.yacht-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid transparent;
}

.yacht-info p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yacht-info > p {
  margin-bottom: 6px;
}

.yacht-info h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.fleet-carousel-shell {
  position: relative;
}

.fleet-carousel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.fleet-carousel-bar > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.fleet-carousel-controls {
  display: flex;
  gap: 8px;
}

.fleet-carousel-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.fleet-carousel-controls button:hover,
.fleet-carousel-controls button:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.fleet-carousel-controls button:disabled {
  opacity: 0.28;
  pointer-events: none;
}

.fleet-track {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.fleet-track::-webkit-scrollbar {
  display: none;
}

.fleet-slide {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.fleet-slide > a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 8.8;
  background: #d9e3e7;
}

.fleet-slide > a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 18, 38, 0.82), transparent 58%);
}

.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.fleet-slide > a:hover img,
.fleet-slide > a:focus-visible img {
  transform: scale(1.025);
}

.fleet-slide-info {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 58px);
  color: var(--white);
}

.fleet-slide-info p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-slide-info h3 {
  max-width: 800px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.fleet-slide-info span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
}

.fleet-carousel-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.fleet-page-hero {
  display: flex;
  min-height: 720px;
  align-items: end;
  padding: 190px 0 100px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(68, 145, 183, 0.34), transparent 28%),
    linear-gradient(140deg, var(--navy-deep), #074879);
}

.fleet-page-hero .section-shell {
  position: relative;
}

.fleet-page-hero h1 {
  max-width: 1000px;
  margin-bottom: 54px;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.fleet-page-hero h1 em {
  font-weight: 400;
}

.fleet-page-hero-note {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.fleet-page-hero-note p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.fleet-page-hero-note span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalog-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 10vw;
  padding-block: 115px;
}

.catalog-intro > p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.55;
}

.yacht-catalog {
  background: var(--white);
}

.yacht-detail {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding-block: 120px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 72px;
}

.yacht-detail-reverse .yacht-detail-image {
  order: 2;
}

.yacht-detail-reverse .yacht-detail-copy {
  order: 1;
}

.yacht-detail-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dce6e8;
}

.yacht-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yacht-detail-image > span {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.yacht-detail-copy h2 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.yacht-detail-lead {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.yacht-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.yacht-specs div {
  min-height: 100px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.yacht-specs dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.yacht-specs dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
}

.catalog-cta {
  padding-block: 140px;
  color: var(--white);
  background: var(--navy);
}

.catalog-cta h2 {
  max-width: 900px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.catalog-cta .section-shell > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.66);
}

.approach {
  padding-block: 150px;
  background: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: 880px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
}

.approach-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.approach h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 40px 0 44px;
  border-top: 1px solid var(--line);
}

.approach-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.approach-steps > li > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.approach-steps h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.approach-steps p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

.reservation {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.reservation-rings {
  position: absolute;
  top: 50%;
  right: -16vw;
  width: min(70vw, 960px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translateY(-50%);
}

.reservation-rings::before,
.reservation-rings::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
}

.reservation-rings::before {
  inset: 16%;
}

.reservation-rings::after {
  inset: 33%;
}

.reservation-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: center;
}

.reservation h2 {
  max-width: 880px;
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.reservation-content > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 76px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 10vw;
  padding-bottom: 70px;
}

.footer-wordmark {
  display: block;
  width: fit-content;
  margin-bottom: 28px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-wordmark span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  font-size: 0.42em;
  font-weight: 650;
  letter-spacing: 0.5em;
  text-align: center;
}

.footer-logo {
  display: block;
  width: 220px;
  height: 150px;
  margin-bottom: 22px;
  padding: 8px;
  overflow: hidden;
  background: var(--white);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links p {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  font-size: 0.88rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid #52aee0;
  outline-offset: 4px;
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-header {
    height: 72px;
    padding-inline: 18px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand-surface {
    width: 126px;
    height: 56px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 13px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    margin: auto;
    background: var(--navy);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 92px 24px 36px;
    color: var(--navy);
    background: var(--white);
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 3.7rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    opacity: 0;
    pointer-events: none;
    text-transform: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav .nav-cta {
    margin-top: 18px;
    padding: 10px 18px;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero-copy {
    top: 43%;
    left: 24px;
    width: calc(100% - 48px);
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 14vw, 6.8rem);
  }

  .hero-chapters {
    right: 22px;
    bottom: 16vh;
    width: calc(100% - 44px);
  }

  .hero-scroll {
    bottom: 28px;
    left: 24px;
  }

  .intro,
  .section-heading,
  .stats-heading,
  .approach-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 70px;
  }

  .intro-note {
    max-width: 360px;
    justify-self: end;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p {
    max-width: 520px;
  }

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

  .stats-heading {
    gap: 26px;
  }

  .stats-heading .eyebrow {
    margin-bottom: 0;
  }

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

  .catalog-intro,
  .yacht-detail {
    grid-template-columns: 1fr;
  }

  .yacht-detail-reverse .yacht-detail-image,
  .yacht-detail-reverse .yacht-detail-copy {
    order: initial;
  }

  .yacht-detail-copy {
    max-width: 680px;
  }

  .approach-heading {
    position: static;
  }

  .footer-grid {
    gap: 58px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 70px;
  }

  .scroll-hero {
    height: 290vh;
    min-height: 1450px;
  }

  .hero-sticky {
    min-height: 560px;
  }

  .hero-image,
  .hero-video {
    width: 118%;
    object-position: 46% center;
    transform: translate3d(-8%, 0, 0) scale(1.05);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(2, 16, 35, 0.77) 0%, rgba(2, 27, 52, 0.22) 76%),
      linear-gradient(90deg, rgba(2, 19, 41, 0.52), transparent);
  }

  .hero-copy {
    top: 38%;
    left: 18px;
    width: calc(100% - 36px);
    transform: translateY(-40%);
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero-lead {
    max-width: 340px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .reservation-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-chapters {
    right: 18px;
    bottom: 15vh;
    width: calc(100% - 36px);
  }

  .hero-chapters li {
    font-size: 1.75rem;
  }

  .hero-scroll {
    left: 18px;
  }

  .intro {
    min-height: auto;
    gap: 55px;
    padding-block: 110px;
  }

  .intro-index {
    top: 54px;
  }

  .intro h2,
  .section-heading h2,
  .approach h2,
  .reservation h2 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .intro-lead {
    font-size: 1.2rem;
  }

  .intro-note {
    padding-left: 0;
  }

  .experiences,
  .fleet,
  .approach {
    padding-block: 100px;
  }

  .trust-stats {
    padding-block: 96px;
  }

  .stats-heading {
    margin-bottom: 50px;
  }

  .stats-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 260px;
  }

  .stat-card strong {
    min-height: 76px;
    margin-bottom: 24px;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .experience-grid {
    display: flex;
    width: auto;
    margin-right: 0;
    margin-left: 16px;
    overflow-x: auto;
    border-left: 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .experience-grid::-webkit-scrollbar {
    display: none;
  }

  .experience-card {
    min-width: min(82vw, 330px);
    scroll-snap-align: start;
  }

  .manifesto,
  .manifesto-content {
    min-height: 700px;
  }

  .manifesto-line {
    left: 75%;
    width: 110vw;
  }

  .manifesto-text {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .fleet-list {
    display: block;
  }

  .fleet-slide > a {
    aspect-ratio: 4 / 5;
  }

  .fleet-slide-info h3 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .fleet-carousel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .fleet-page-hero {
    min-height: 690px;
    padding: 150px 0 70px;
  }

  .fleet-page-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.2rem);
  }

  .fleet-page-hero-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-intro {
    gap: 18px;
    padding-block: 84px;
  }

  .yacht-detail {
    gap: 44px;
    padding-block: 84px;
  }

  .yacht-specs {
    grid-template-columns: 1fr;
  }

  .catalog-cta {
    padding-block: 100px;
  }

  .yacht-card,
  .yacht-card:nth-child(even),
  .yacht-card-wide {
    width: 100%;
    margin-bottom: 64px;
    padding-top: 0;
  }

  .yacht-card:last-child {
    margin-bottom: 0;
  }

  .yacht-info {
    align-items: start;
  }

  .yacht-info h3 {
    font-size: 2rem;
  }

  .approach-grid {
    gap: 48px;
  }

  .approach-steps li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .reservation,
  .reservation-content {
    min-height: 690px;
  }

  .reservation h2 {
    font-size: clamp(3.1rem, 13vw, 4.6rem);
  }

  .reservation-rings {
    right: -68vw;
    width: 150vw;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-height: 680px) and (min-width: 641px) {
  .hero-copy {
    top: 49%;
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 7vw, 6rem);
  }

  .hero-chapters {
    bottom: 14vh;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .scroll-hero {
    height: 100svh;
    min-height: 640px;
  }

  .hero-sticky {
    position: relative;
  }

  .hero-image,
  .hero-video {
    transform: none !important;
    will-change: auto;
  }

  .hero-video {
    display: none;
  }

  .hero-copy,
  .hero-scroll b {
    will-change: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
