/* Ultramarine — a clean, photographic coastal design. */
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("media/fonts/manrope-latin-wght-normal.woff2") format("woff2");
}
:root {
  --ink: #101d25;
  --muted: #596269;
  --paper: #fff;
  --wash: #f5f6f6;
  --line: #dfe3e5;
  --sea: #eaf0f2;
  --gutter: clamp(22px, 3.2vw, 60px);
  --sans: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  padding: 8px;
  background: #fff;
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img,
video {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
[hidden] {
  display: none !important;
}
::selection {
  background: #c9e2ea;
  color: #10232e;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(44px, 4.8vw, 72px);
}
h2 {
  font-size: clamp(32px, 3.1vw, 47px);
}
h3 {
  font-size: 26px;
}
p {
  text-wrap: pretty;
}
em {
  font-style: normal;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #477b94;
  outline-offset: 5px;
}
main:focus {
  outline: none;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  z-index: 101;
  background: #fff;
  padding: 12px 24px;
}
.skip-link:focus {
  top: 20px;
}
.section-shell {
  padding-inline: var(--gutter);
}
.eyebrow,
.section-code {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: 500;
  text-transform: uppercase;
}
.eyebrow {
  margin-bottom: 22px;
}
.eyebrow.light {
  color: #fff;
}
.section-code {
  color: var(--muted);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 80px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #ebeded;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  gap: 30px;
}
.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}
.brand img {
  width: 182px;
  height: auto;
  filter: brightness(0);
}
.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a,
.equipment-link {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}
.desktop-nav a:hover,
.equipment-link:hover {
  color: #47758c;
}
.header-tools {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 99px;
  padding: 12px 24px;
  font-size: 13px;
  white-space: nowrap;
  min-height: 46px;
}
.header-cta > span {
  display: none;
}
a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.mobile-nav {
  display: none;
}
.mobile-nav summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  text-transform: uppercase;
}
.mobile-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-nav summary > span:last-child {
  font-size: 22px;
}
.mobile-nav nav {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  display: grid;
  padding: 16px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 20px #071f2c0a;
}
.mobile-nav nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 99px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
  white-space: normal;
  text-align: center;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--ink);
  color: white;
}
.button-primary:hover {
  background: #2a4656;
}
.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}
.button-outline:hover {
  background: var(--ink);
  color: #fff;
}
.button-white {
  background: white;
  color: var(--ink);
}
.button > span {
  font-size: 17px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}
.text-link span {
  font-size: 19px;
}
.light-link {
  color: #fff;
}
.video-hero {
  height: calc(100svh - 96px);
  min-height: 620px;
  max-height: 1000px;
  position: relative;
  overflow: hidden;
  color: white;
  background: #1b3543;
}
.video-hero video,
.video-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-hero video {
  opacity: 0;
  transition: opacity 220ms ease;
  background: #071f2c;
}
.video-hero video.is-active {
  opacity: 1;
}.video-hero-shade {
  background:
    linear-gradient(90deg, #081d2a88, transparent 85%),
    linear-gradient(0deg, #081d2a77, transparent 70%);
}
.video-hero-copy {
  position: absolute;
  left: var(--gutter);
  bottom: 104px;
  max-width: 770px;
  z-index: 2;
}
.video-hero h1 {
  font-size: clamp(44px, 4.35vw, 67px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin-bottom: 23px;
}
.video-hero h1 em {
  color: inherit;
}
.video-hero-copy > p:not(.eyebrow) {
  max-width: 460px;
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: 28px;
}
.video-hero-copy .eyebrow {
  font-size: 12px;
  margin-bottom: 20px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-actions .button-primary {
  background: #fff;
  color: var(--ink);
}
.hero-actions .button-primary:hover {
  background: #e9f0f3;
}
.hero-index {
  position: absolute;
  left: var(--gutter);
  bottom: 27px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  z-index: 2;
}
.hero-index strong {
  font-weight: 400;
}
.hero-index span:last-child {
  margin-left: 10px;
  border-left: 1px solid #ffffff75;
  padding-left: 18px;
}
.hero-scroll {
  display: none;
}
.video-loading {
  position: absolute;
  right: var(--gutter);
  bottom: 78px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #ffffff70;
  border-radius: 99px;
  background: #10253085;
  color: #fff;
  font: 700 11px/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.video-loading::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff55;
  border-top-color: #fff;
  border-radius: 50%;
  animation: videoSpin 0.8s linear infinite;
}
.video-loading[hidden] {
  display: none;
}
@keyframes videoSpin {
  to {
    transform: rotate(360deg);
  }
}
.video-toggle {
  position: absolute;
  right: var(--gutter);
  bottom: 24px;
  z-index: 3;
  min-height: 42px;
  border: 1px solid #ffffff80;
  border-radius: 99px;
  background: #10253070;
  color: white;
  padding: 8px 17px;
  font-size: 11px;
}
.manifesto {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 7vw;
  padding-top: 90px;
  padding-bottom: 90px;
  background: var(--wash);
}
.about-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-intro h2 {
  font-size: clamp(32px, 2.65vw, 42px);
  line-height: 1.2;
  margin-bottom: 30px;
}
.about-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 72px 0 0;
  max-width: 510px;
}
.about-photo {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 480px;
  border-radius: 3px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #061b2cc9);
}
.about-photo > span {
  position: absolute;
  bottom: 33px;
  left: 30px;
  right: 30px;
  z-index: 1;
  text-align: center;
  color: white;
  font-size: 18px;
  line-height: 1.45;
}
.yacht-spotlight {
  padding-top: 90px;
  padding-bottom: 65px;
  text-align: center;
  position: relative;
}
.spotlight-heading {
  max-width: 650px;
  margin: 0 auto 38px;
}
.spotlight-heading h2 {
  margin-bottom: 20px;
  font-size: 40px;
}
.spotlight-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 27px;
}
.spotlight-image {
  display: block;
  width: min(100%, 1050px);
  height: 480px;
  overflow: hidden;
  margin: auto;
  border-radius: 3px;
}
.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.spotlight-specs {
  display: flex;
  justify-content: center;
  margin: 36px auto 0;
  max-width: 800px;
  gap: 0;
}
.spotlight-specs > div {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.spotlight-specs > div:last-child {
  border: 0;
}
.spotlight-specs dt {
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.spotlight-specs dd {
  margin: 0;
  font-size: 29px;
  letter-spacing: -0.045em;
  line-height: 1.3;
}
.spotlight-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.spotlight-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: 19px;
}
.spotlight-controls button:hover {
  background: var(--ink);
  color: white;
}
.slide-status {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}
.featured,
.process-home,
.archive-preview,
.collection,
.team-section,
.yard-gallery,
.yacht-gallery,
.boat-films {
  padding-top: 85px;
  padding-bottom: 85px;
}
.featured,
.archive-preview {
  background: var(--wash);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 45px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}
.section-heading > .button,
.section-heading > .text-link {
  flex-shrink: 0;
}
.featured-grid,
.fleet-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.boat-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.boat-card-media {
  aspect-ratio: 1.35;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #e9eef0;
}
.boat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.boat-card:hover img {
  transform: scale(1.04);
}
.boat-card-media > span {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffffffeb;
  padding: 4px 11px;
  border-radius: 99px;
  font-size: 10px;
}
.boat-card-copy {
  padding: 23px 0 17px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.boat-card-copy > div > p:first-child {
  font-size: 10px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.boat-card-copy h3 {
  font-size: 27px;
  margin: 0 0 14px;
  letter-spacing: -0.035em;
}
.boat-card-copy > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: 0 0 36px;
  margin-top: 23px;
}
.card-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.card-specs span {
  font-size: 11px;
  border: 1px solid #d7dfe2;
  padding: 3px 9px;
  border-radius: 99px;
}
.card-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 12px 0 0;
  max-width: 430px;
}
.section-end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}
.section-end > span {
  font-size: 12px;
  color: var(--muted);
}
.craft-band {
  background: white;
}
.craft-image {
  height: 570px;
  position: relative;
  overflow: hidden;
}
.craft-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}
.craft-image > span {
  position: absolute;
  left: var(--gutter);
  bottom: 30px;
  color: white;
  background: #10253080;
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 11px;
}
.craft-copy {
  padding: 70px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8vw;
  align-items: start;
}
.craft-copy .eyebrow {
  grid-column: 1;
  margin-bottom: 15px;
}
.craft-copy h2 {
  grid-column: 1;
  grid-row: 2/5;
  max-width: 550px;
  margin: 0;
}
.craft-copy > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1/3;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 25px;
}
.craft-metrics {
  grid-column: 2;
  display: flex;
  gap: 28px;
  margin: 0 0 28px;
}
.craft-metrics > div {
  flex: 1;
}
.craft-metrics strong {
  display: block;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.craft-metrics span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  line-height: 1.6;
}
.craft-copy .button {
  grid-column: 2;
  justify-self: start;
}
.process-home {
  background: var(--sea);
}
.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.home-process-grid article {
  padding: 26px 0;
  border-top: 1px solid #b8c7ce;
}
.home-process-grid article > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #bcc8ce;
  border-radius: 50%;
  font-size: 12px;
  margin-bottom: 35px;
}
.home-process-grid h3 {
  font-size: 23px;
  margin-bottom: 14px;
}
.home-process-grid p {
  font-size: 14px;
  color: #485a64;
  max-width: 240px;
  margin: 0;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.archive-card {
  min-width: 0;
}
.archive-card > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 3px;
}
.archive-card > div {
  position: relative;
  padding: 21px 35px 0 0;
}
.archive-card span {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
}
.archive-card h3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 11px 0;
}
.archive-card div > span:last-child {
  position: absolute;
  right: 0;
  top: 35px;
  font-size: 22px;
}
.site-footer {
  background: #fff;
}
.footer-lead {
  position: relative;
  padding: 95px var(--gutter);
  min-height: 420px;
  overflow: hidden;
  color: white;
  isolation: isolate;
}
.footer-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.footer-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #071d2bb5;
  z-index: -1;
}
.footer-lead h2 {
  max-width: 750px;
  font-size: clamp(35px, 3.8vw, 58px);
  margin-bottom: 30px;
}
.footer-lead .button {
  background: white;
  color: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 8vw;
  padding: 65px var(--gutter) 50px;
}
.footer-brand img {
  width: 200px;
  filter: brightness(0);
  height: auto;
}
.footer-grid > div:first-child p {
  margin-top: 23px;
  color: var(--muted);
  font-size: 14px;
}
.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 14px;
}
.footer-address > span {
  font-size: 11px;
  text-transform: uppercase;
}
.footer-address p {
  font-size: 14px;
  color: var(--muted);
  margin: 18px 0;
}
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 var(--gutter);
  padding: 23px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.page-hero,
.boat-hero {
  height: 590px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.page-hero > img,
.boat-hero > img,
.page-hero-shade,
.boat-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-shade,
.boat-hero-shade {
  background:
    linear-gradient(0deg, #071d2bd9, transparent 100%),
    linear-gradient(90deg, #071d2b44, transparent);
}
.page-hero-copy,
.boat-hero-copy {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 70px;
  max-width: 950px;
}
.page-hero-copy h1,
.boat-hero-copy h1 {
  margin-bottom: 20px;
}
.page-hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  font-size: 16px;
  color: #eef1f3;
  margin: 0;
}
.page-number,
.boat-index {
  position: absolute;
  bottom: 25px;
  right: var(--gutter);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.boat-hero-copy > span {
  font-size: 12px;
}
.collection-nav {
  display: flex;
  gap: 35px;
  align-items: center;
  padding-block: 23px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.collection-nav a {
  padding-block: 9px;
}
.collection-nav span {
  margin-left: auto;
  color: var(--muted);
}
.collection-head {
  display: grid;
  grid-template-columns: 50px 1fr 0.7fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 45px;
}
.collection-head > span {
  font-size: 12px;
  align-self: start;
  margin-top: 3px;
}
.collection-head h2 {
  margin: 0;
}
.collection-head > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.custom-collection {
  background: var(--wash);
}
.fleet-list {
  row-gap: 40px;
}
.boat-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding-block: 85px;
}
.boat-overview h2 {
  font-size: clamp(30px, 2.5vw, 39px);
  line-height: 1.2;
  margin-bottom: 25px;
}
.boat-description {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 28px;
}
.spec-panel {
  background: var(--wash);
  padding: 30px;
  min-width: 0;
  align-self: start;
}
.table-scroll {
  overflow: auto;
  max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
  line-height: 1.65;
}
caption {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
th,
td {
  padding: 15px 10px 15px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-weight: 400;
}
td {
  font-weight: 500;
}
.spec-note {
  font-size: 11px;
  line-height: 1.75;
  color: var(--muted);
  margin: 20px 0 0;
}
.yacht-gallery {
  background: var(--wash);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.gallery-item {
  display: block;
  position: relative;
  background: #e4e9ea;
  overflow: hidden;
  border-radius: 3px;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:first-child img {
  height: 620px;
}
.gallery-item > span {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffffec;
  color: var(--ink);
}
#gallery-dialog {
  border: 0;
  padding: 58px 22px 18px;
  width: min(1200px, 96vw);
  max-height: 95vh;
  background: var(--ink);
  color: white;
}
#gallery-dialog::backdrop {
  background: #06141de8;
}
#gallery-dialog img {
  max-height: 75vh;
  width: 100%;
  object-fit: contain;
}
#gallery-dialog p {
  font-size: 12px;
  margin: 15px 0 0;
}
.gallery-close {
  position: absolute;
  right: 15px;
  top: 10px;
  min-height: 40px;
  border: 0;
  background: none;
  color: white;
  padding: 8px 12px;
}
.film-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.film-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
}
.film-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.film-play {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #122e3c;
  color: white;
  width: 100%;
  font-size: 14px;
}
.film-play span {
  font-size: 42px;
}
.film-play:hover {
  background: #214758;
}
.boat-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}
.boat-pagination > a {
  display: grid;
  gap: 6px;
}
.boat-pagination > a:last-child {
  text-align: right;
}
.boat-pagination span {
  font-size: 11px;
  color: var(--muted);
}
.boat-pagination strong {
  font-size: 18px;
  font-weight: 400;
}
.boat-pagination .all-boats {
  font-size: 12px;
}
.yard-story {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 7vw;
  padding-block: 85px;
}
.yard-story p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
.yard-story h2 {
  margin-bottom: 28px;
}
.yard-story .section-code {
  display: block;
}
.team-section {
  background: var(--wash);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.team-grid img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 3px;
  margin-bottom: 24px;
}
.team-grid article > span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}
.team-grid h3 {
  margin: 14px 0;
}
.team-grid p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}
.team-capability {
  padding-block: 85px;
  background: var(--sea);
  color: var(--ink);
}
.team-capability .eyebrow {
  color: var(--ink);
}
.team-capability .section-shell > p:not(.eyebrow) {
  max-width: 830px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}
.techniques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}
.techniques-grid > div {
  border-top: 1px solid #bfced4;
  padding-top: 22px;
}
.techniques-grid span {
  font-size: 11px;
  color: #455a66;
}
.techniques-grid strong {
  display: block;
  font-weight: 500;
  font-size: 19px;
  margin: 20px 0 12px;
  line-height: 1.3;
}
.techniques-grid p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.yard-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.yard-gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
}
.yard-gallery-grid img:first-child {
  grid-column: span 2;
}
.events-intro {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 35px 7vw;
  padding-block: 85px;
}
.events-intro h2 {
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.25;
  margin: 0;
}
.events-intro > .archive-note {
  grid-column: 2;
  margin: 0;
}
.archive-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.events-list {
  padding-bottom: 80px;
}
.event-entry {
  display: grid;
  grid-template-columns: 90px 0.85fr 1fr;
  gap: 40px;
  padding-block: 45px;
  border-top: 1px solid var(--line);
}
.event-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event-meta > span {
  font-size: 18px;
}
.event-meta small {
  color: var(--muted);
  font-size: 10px;
}
.event-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 3px;
}
.event-copy h2 {
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.event-copy p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.equipment-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding-block: 85px;
}
.equipment-intro p:not(.eyebrow),
.equipment-intro li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}
.equipment-intro ul {
  list-style: none;
  padding: 0;
}
.equipment-intro li {
  margin-top: 10px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding-bottom: 85px;
}
.brands-grid > div {
  position: relative;
  border: 1px solid var(--line);
  padding: 30px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  text-align: center;
}
.brands-grid img {
  width: 120px;
  height: 65px;
  object-fit: contain;
  margin-bottom: 15px;
}
.brands-grid > div > span {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 10px;
  color: var(--muted);
}
.brands-grid strong {
  font-size: 13px;
  font-weight: 400;
}
.brands-grid small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.equipment-cta {
  padding: 75px var(--gutter);
  background: var(--sea);
  text-align: center;
}
.equipment-cta .eyebrow {
  color: var(--ink);
}
.equipment-cta h2 {
  margin-bottom: 28px;
}
.contact-hero {
  padding: 90px var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  background: var(--sea);
}
.contact-hero .eyebrow {
  color: var(--ink);
}
.contact-hero h1 {
  font-size: clamp(44px, 4.6vw, 68px);
  margin-bottom: 25px;
}
.contact-hero p:not(.eyebrow) {
  max-width: 560px;
  font-size: 15px;
  color: var(--muted);
}
.contact-location {
  align-self: center;
  border-left: 1px solid #bbccd4;
  padding-left: 35px;
}
.contact-location b {
  font-size: 30px;
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}
.contact-location span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-location strong {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.75;
}
.contact-brief {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding-block: 80px;
}
.contact-brief h2 {
  margin-top: 20px;
}
.brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.brief-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.brief-grid span {
  font-size: 11px;
  color: var(--muted);
}
.brief-grid h3 {
  font-size: 22px;
  margin: 20px 0 14px;
}
.brief-grid p {
  font-size: 14px;
  color: var(--muted);
}
.project-form-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding-block: 85px;
  background: var(--wash);
}
.project-form-section > div > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-grid label {
  display: grid;
  gap: 9px;
  font-size: 12px;
}
.form-grid label span {
  display: contents;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  border: 1px solid #bdc8ce;
  background: white;
  border-radius: 3px;
  min-height: 48px;
  width: 100%;
  min-width: 0;
  padding: 12px;
  color: var(--ink);
  font-size: 16px;
}
.form-grid textarea {
  resize: vertical;
}
.form-grid small {
  font-size: 11px;
  color: var(--muted);
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  font-size: 12px;
}
.consent input {
  min-width: 20px;
  min-height: 20px;
}
.project-form-section button {
  margin-top: 25px;
}
.form-status {
  font-size: 13px;
  margin: 20px 0 0;
}
.contact-connect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sea);
}
.contact-connect > div {
  padding: 70px var(--gutter);
  align-self: center;
}
.contact-connect .eyebrow {
  color: var(--ink);
}
.contact-connect h2 {
  font-size: 36px;
}
.contact-connect p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
}
.contact-connect > img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.contact-connect .button {
  margin-top: 15px;
}
@media (min-width: 1800px) {
  .section-shell {
    padding-inline: max(var(--gutter), calc((100vw - 1580px) / 2));
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 15px;
  }
  .desktop-nav {
    gap: 17px;
  }
  .header-tools {
    gap: 18px;
  }
  .equipment-link {
    display: none;
  }
  .header-cta {
    padding-inline: 18px;
  }
  .manifesto {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .about-photo {
    min-height: 440px;
  }
  .about-description {
    margin-top: 45px;
  }
  .spotlight-image {
    height: 410px;
  }
  .featured-grid,
  .fleet-list {
    gap: 20px;
  }
  .boat-card-copy > span {
    display: none;
  }
  .card-description {
    font-size: 13px;
  }
  .craft-image {
    height: 450px;
  }
  .craft-copy {
    gap: 0 40px;
  }
  .event-entry {
    grid-template-columns: 70px 1fr;
    gap: 25px;
  }
  .event-copy {
    grid-column: 2;
  }
  .event-image img {
    height: 330px;
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    gap: 35px;
  }
  .team-grid img {
    height: 350px;
  }
}
@media (max-width: 800px) {
  body {
    padding: 5px;
  }
  .site-header {
    height: 72px;
    display: flex;
    justify-content: space-between;
    padding-inline: 22px;
  }
  .brand img {
    width: 160px;
  }
  .desktop-nav,
  .header-tools {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .video-hero {
    height: calc(100svh - 82px);
    min-height: 640px;
  }
  .video-hero-copy {
    bottom: 100px;
    max-width: 650px;
  }
  .video-hero h1 {
    font-size: clamp(40px, 6.8vw, 57px);
  }
  .video-hero-copy > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 380px;
  }
  .manifesto {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 65px;
  }
  .about-description {
    margin-top: 30px;
    max-width: 650px;
  }
  .about-photo {
    min-height: 400px;
  }
  .about-intro h2 {
    font-size: 36px;
  }
  .yacht-spotlight {
    padding-block: 65px 55px;
  }
  .spotlight-image {
    height: 360px;
  }
  .spotlight-heading h2 {
    font-size: 36px;
  }
  .featured-grid,
  .fleet-list {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .featured-grid .boat-card:last-child {
    grid-column: 1/-1;
    max-width: calc(50% - 10px);
  }
  .section-heading {
    gap: 28px;
  }
  .section-heading > p {
    max-width: 270px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
  .craft-copy {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 55px;
  }
  .craft-copy h2 {
    grid-row: auto;
    margin-bottom: 27px;
  }
  .craft-copy > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
    max-width: 650px;
  }
  .craft-metrics,
  .craft-copy .button {
    grid-column: 1;
  }
  .craft-metrics {
    max-width: 600px;
    width: 100%;
  }
  .home-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 35px;
  }
  .archive-grid {
    gap: 20px;
  }
  .archive-card > img {
    height: 200px;
  }
  .archive-card h3 {
    font-size: 19px;
  }
  .archive-card > div {
    padding-right: 0;
  }
  .archive-card div > span:last-child {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-lead {
    min-height: 350px;
    padding-block: 65px;
  }
  .page-hero,
  .boat-hero {
    height: 510px;
  }
  .page-hero h1,
  .boat-hero h1 {
    font-size: 52px;
  }
  .collection-head {
    grid-template-columns: 35px 1fr;
  }
  .collection-head > p {
    grid-column: 2;
  }
  .boat-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:first-child {
    grid-row: auto;
  }
  .gallery-item:first-child img {
    height: 420px;
  }
  .gallery-item img {
    height: 240px;
  }
  .yard-story {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .techniques-grid {
    grid-template-columns: 1fr 1fr;
  }
  .yard-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .yard-gallery-grid img {
    height: 250px;
  }
  .events-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .events-intro > .archive-note {
    grid-column: 1;
  }
  .equipment-intro {
    gap: 30px;
  }
  .contact-hero {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .contact-location {
    border-left: 0;
    border-top: 1px solid #bbccd4;
    padding: 25px 0 0;
  }
  .contact-location b {
    display: none;
  }
  .contact-brief,
  .project-form-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-connect h2 {
    font-size: 30px;
  }
  .contact-connect > img {
    height: 100%;
    min-height: 420px;
  }
}
@media (max-width: 520px) {
  h2 {
    font-size: 31px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .video-hero {
    min-height: 630px;
  }
  .video-hero h1 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.05em;
  }
  .video-hero-copy {
    bottom: 100px;
    right: 22px;
  }
  .video-hero-copy .eyebrow {
    font-size: 10px;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    padding-inline: 20px;
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 8px;
  }
  .hero-index {
    font-size: 9px;
    bottom: 31px;
    gap: 5px;
  }
  .hero-index span:last-child {
    padding-left: 10px;
    margin-left: 5px;
    max-width: 90px;
    line-height: 1.5;
  }
  .video-toggle {
    bottom: 25px;
    font-size: 10px;
    min-height: 38px;
    padding: 7px 12px;
  }
  .about-intro h2 {
    font-size: 32px;
  }
  .about-photo {
    min-height: 330px;
  }
  .about-photo > span {
    font-size: 16px;
  }
  .spotlight-heading {
    margin-bottom: 28px;
  }
  .spotlight-heading h2 {
    font-size: 34px;
  }
  .spotlight-heading > p:not(.eyebrow) {
    font-size: 14px;
  }
  .spotlight-image {
    height: 275px;
  }
  .spotlight-specs {
    margin-top: 26px;
  }
  .spotlight-specs > div {
    padding-inline: 8px;
  }
  .spotlight-specs dt {
    font-size: 9px;
  }
  .spotlight-specs dd {
    font-size: 22px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .section-heading > .button,
  .section-heading > .text-link {
    margin-top: 25px;
  }
  .section-heading > p {
    margin-top: 22px;
    max-width: none;
  }
  .featured,
  .process-home,
  .archive-preview,
  .collection,
  .team-section,
  .yard-gallery,
  .yacht-gallery,
  .boat-films {
    padding-block: 60px;
  }
  .featured-grid,
  .fleet-list,
  .archive-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .featured-grid .boat-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .boat-card-media {
    aspect-ratio: 1.4;
  }
  .boat-card-copy {
    padding-top: 18px;
  }
  .boat-card-copy h3 {
    font-size: 27px;
  }
  .boat-card-copy > span {
    display: grid;
  }
  .card-description {
    font-size: 14px;
  }
  .craft-image {
    height: 340px;
  }
  .craft-copy h2 {
    font-size: 34px;
  }
  .craft-metrics {
    gap: 15px;
  }
  .craft-metrics strong {
    font-size: 25px;
  }
  .craft-metrics span {
    font-size: 9px;
  }
  .home-process-grid {
    gap: 12px 25px;
  }
  .home-process-grid h3 {
    font-size: 21px;
  }
  .home-process-grid p {
    font-size: 13px;
  }
  .home-process-grid article > span {
    margin-bottom: 23px;
  }
  .archive-card > img {
    height: 255px;
  }
  .archive-card h3 {
    font-size: 23px;
  }
  .footer-lead h2 {
    font-size: 35px;
  }
  .footer-grid {
    padding-block: 45px 35px;
    gap: 30px;
  }
  .footer-brand img {
    width: 180px;
  }
  .footer-grid nav,
  .footer-address p {
    font-size: 13px;
  }
  .footer-base {
    flex-direction: column;
    gap: 8px;
    font-size: 10px;
  }
  .page-hero,
  .boat-hero {
    height: 490px;
  }
  .page-hero-copy,
  .boat-hero-copy {
    bottom: 60px;
  }
  .page-hero h1,
  .boat-hero h1 {
    font-size: 43px;
  }
  .page-hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .collection-nav {
    gap: 20px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .collection-nav span {
    display: none;
  }
  .collection-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .collection-head > p {
    grid-column: 1;
  }
  .collection-head h2 {
    font-size: 32px;
  }
  .boat-overview {
    padding-block: 60px;
  }
  .boat-overview h2 {
    font-size: 30px;
  }
  .spec-panel {
    padding: 24px 16px;
  }
  th,
  td {
    font-size: 11px;
    padding: 12px 5px;
    overflow-wrap: anywhere;
  }
  .gallery-grid {
    gap: 10px;
  }
  .gallery-item img {
    height: 160px;
  }
  .gallery-item:first-child img {
    height: 290px;
  }
  .gallery-item > span {
    width: 30px;
    height: 30px;
    bottom: 8px;
    right: 8px;
  }
  .film-grid {
    grid-template-columns: 1fr;
  }
  .boat-pagination {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-block: 25px;
  }
  .boat-pagination .all-boats {
    display: none;
  }
  .boat-pagination strong {
    font-size: 16px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .team-grid img {
    height: 370px;
  }
  .yard-story,
  .team-capability,
  .events-intro,
  .equipment-intro {
    padding-block: 60px;
  }
  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .yard-gallery-grid {
    gap: 10px;
  }
  .yard-gallery-grid img {
    height: 170px;
  }
  .yard-gallery-grid img:first-child {
    height: 280px;
  }
  .events-intro h2 {
    font-size: 28px;
  }
  .event-entry {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-block: 30px;
  }
  .event-meta {
    flex-direction: row;
    align-items: center;
  }
  .event-copy {
    grid-column: 1;
  }
  .event-image img {
    height: 280px;
  }
  .event-copy h2 {
    font-size: 27px;
  }
  .events-list {
    padding-bottom: 50px;
  }
  .equipment-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .brands-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 60px;
  }
  .brands-grid > div {
    min-height: 160px;
    padding: 26px 12px 18px;
  }
  .brands-grid img {
    width: 100px;
  }
  .equipment-cta {
    padding-block: 60px;
  }
  .contact-hero {
    padding-block: 60px;
  }
  .contact-hero h1 {
    font-size: 43px;
  }
  .contact-location strong {
    font-size: 17px;
  }
  .contact-brief,
  .project-form-section {
    padding-block: 60px;
  }
  .brief-grid {
    gap: 20px;
  }
  .brief-grid h3 {
    font-size: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: 1;
  }
  .contact-connect {
    grid-template-columns: 1fr;
  }
  .contact-connect > div {
    padding-block: 55px;
  }
  .contact-connect > img {
    height: 330px;
    min-height: 0;
  }
}
/* The variable font supplies genuine medium and semibold weights. */
h1,
h2,
h3 {
  font-weight: 550;
  letter-spacing: -0.035em;
}
.video-hero h1 {
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.13;
  font-size: clamp(42px, 4.05vw, 62px);
}
.video-hero h1 em {
  display: inline-block;
}
.eyebrow,
.section-code {
  font-weight: 600;
  letter-spacing: 0.085em;
}
.desktop-nav a,
.equipment-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.055em;
}
.button,
.header-cta {
  font-weight: 600;
  font-size: 13px;
}
.boat-card-copy h3,
.spotlight-heading h2 {
  font-weight: 550;
  letter-spacing: -0.035em;
}
.spotlight-specs dd {
  font-weight: 500;
  letter-spacing: -0.025em;
}
.video-hero-copy > p:not(.eyebrow),
.about-description,
.card-description {
  line-height: 1.85;
}
@media (max-width: 520px) {
  .video-hero h1 {
    font-size: 38px;
    letter-spacing: -0.04em;
    line-height: 1.15;
  }
  .video-hero h1 em {
    max-width: 100%;
  }
  .video-hero-copy {
    bottom: 105px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button,
  .hero-actions .text-link {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
