:root {
  --ink: #073e43;
  --ink-deep: #022f35;
  --ink-soft: #0b5960;
  --ivory: #f4efe4;
  --cream: #e9dfcf;
  --sand: #d7c6aa;
  --gold: #c59a51;
  --gold-light: #dfbd7b;
  --paper-line: rgba(7, 62, 67, 0.1);
  --white: #fffdf7;
  --serif: Didot, "Bodoni MT", "Bodoni 72", Georgia, serif;
  --sans: Avenir, "Avenir Next", "Segoe UI", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(1, 28, 32, 0.2);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--ink-deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 154, 81, 0.12), transparent 24rem),
    var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink-deep);
  transform: translateY(-180%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr) 150px 68px;
  align-items: center;
  gap: clamp(14px, 2.3vw, 34px);
  min-height: 104px;
  padding: 14px clamp(24px, 4vw, 64px);
  background: linear-gradient(90deg, rgba(244, 239, 228, 0.98) 0 52%, rgba(244, 239, 228, 0.82) 72%, rgba(244, 239, 228, 0.4));
}

.brand {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 9px;
  align-items: center;
  width: max-content;
  letter-spacing: 0.13em;
}

.brand__compass {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.brand__needle {
  fill: var(--gold);
  stroke: var(--gold);
}

.brand__name {
  align-self: end;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1;
}

.brand__place {
  align-self: start;
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.38em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 25px);
  min-width: 0;
  font-size: clamp(10px, calc(0.7vw + 3px), 13px);
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.primary-nav a,
.text-link {
  position: relative;
  transition: color 180ms ease;
}

.primary-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.weather {
  display: grid;
  justify-items: end;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.weather__temp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--serif);
  font-size: 16px;
}

.weather__temp svg {
  width: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.menu-button {
  position: relative;
  z-index: 72;
  display: grid;
  place-content: center;
  gap: 5px;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(197, 154, 81, 0.7);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-button:hover {
  color: var(--ink);
  background: var(--gold-light);
  transform: rotate(7deg);
}

.menu-button span {
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 110px 8vw 60px;
  color: var(--white);
  background:
    repeating-radial-gradient(ellipse at 68% 58%, transparent 0 34px, rgba(223, 189, 123, 0.08) 36px 37px),
    rgba(2, 47, 53, 0.97);
}

.menu-panel a {
  font-family: var(--serif);
  font-size: clamp(25px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0.04em;
}

.menu-panel a span {
  margin-right: 20px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.hero {
  position: relative;
  z-index: 10;
  min-height: 570px;
  overflow: visible;
  background: var(--ivory);
  isolation: isolate;
}

.hero__photo {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: -3;
  width: 73%;
  height: 505px;
  object-fit: cover;
  object-position: 57% center;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: -2;
  width: 74%;
  height: 100px;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--ivory));
  clip-path: polygon(0 80%, 13% 45%, 32% 70%, 50% 38%, 68% 75%, 84% 48%, 100% 72%, 100% 100%, 0 100%);
}

.hero__wash {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 61%;
  background:
    repeating-radial-gradient(ellipse at 30% 60%, transparent 0 34px, var(--paper-line) 35px 36px),
    linear-gradient(115deg, var(--ivory) 0 68%, rgba(244, 239, 228, 0.95) 78%, rgba(244, 239, 228, 0) 79%);
  clip-path: polygon(0 0, 100% 0, 88% 25%, 96% 52%, 80% 75%, 88% 100%, 0 100%);
}

.coordinates {
  position: absolute;
  top: 182px;
  left: clamp(18px, 3.2vw, 50px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 16px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.coordinates::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  content: "";
  background: var(--gold);
}

.hero__copy {
  position: absolute;
  top: 145px;
  left: clamp(68px, 9.2vw, 140px);
  z-index: 2;
  width: min(52vw, 610px);
}

.eyebrow {
  margin: 0 0 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.eyebrow--gold {
  color: var(--gold-light);
}

.hero h1,
.fleet h2,
.routes h2,
.contacts h2,
.experiences h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  width: min-content;
  font-size: clamp(39px, 5.1vw, 73px);
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.hero h1 em {
  margin: 0 0 10px 22px;
  color: var(--gold);
  font-size: 0.62em;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 span:nth-of-type(2) {
  margin-left: 0.75em;
}

.hero h1 small {
  align-self: flex-end;
  margin: 10px 0 0;
  color: var(--gold);
  font-size: 0.46em;
  font-style: italic;
  letter-spacing: 0;
}

.hero__lead {
  margin: 17px 0 15px;
  max-width: 300px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button--dark {
  padding: 0 23px;
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink-deep);
  background: var(--gold-light);
}

.button--gold {
  width: 100%;
  padding: 0 12px;
  color: var(--ink-deep);
  background: var(--gold-light);
}

.button--gold:hover {
  background: var(--white);
}

.text-link {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

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

.booking {
  position: absolute;
  right: clamp(35px, 6vw, 92px);
  bottom: -55px;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr;
  width: min(330px, 37vw);
  padding: 22px 25px 19px;
  border: 1px solid rgba(223, 189, 123, 0.72);
  color: var(--white);
  background:
    repeating-radial-gradient(ellipse at 100% 20%, transparent 0 27px, rgba(223, 189, 123, 0.07) 28px 29px),
    var(--ink-deep);
  box-shadow: var(--shadow);
}

.booking__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.booking h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.booking__heading svg {
  width: 29px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1;
}

.booking label {
  margin: 7px 0 3px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.booking input,
.booking select {
  width: 100%;
  height: 34px;
  padding: 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.38);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  color-scheme: dark;
}

.booking select option {
  color: var(--ink-deep);
  background: var(--ivory);
}

.booking .button {
  margin-top: 16px;
}

.booking__result {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ivory);
  font-size: 12px;
  line-height: 1.35;
}

.booking__result:not(:empty) {
  margin-top: 11px;
}

.section-number {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
}

.section-number::after {
  display: block;
  width: 1px;
  height: 55px;
  content: "";
  background: currentColor;
}

.section-number--light {
  color: var(--gold-light);
}

.sea-section {
  color: var(--white);
  background:
    repeating-radial-gradient(ellipse at 4% 78%, transparent 0 35px, rgba(223, 189, 123, 0.08) 36px 37px),
    linear-gradient(130deg, var(--ink-deep), #0c5a5f);
}

.experiences {
  position: relative;
  z-index: 3;
  width: 64%;
  min-height: 438px;
  padding: 85px 20% 47px 8%;
  clip-path: polygon(0 7%, 16% 0, 35% 6%, 53% 1%, 70% 8%, 87% 2%, 100% 10%, 100% 100%, 0 100%);
}

.experiences > .section-number {
  position: absolute;
  top: 84px;
  left: clamp(18px, 3.2vw, 50px);
}

.experiences__body {
  margin-left: 48px;
}

.experiences h2 {
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 30px;
  margin: 30px 0 29px;
}

.service {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  min-width: 0;
}

.service svg {
  width: 34px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.2;
}

.service h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
}

.service p {
  margin: 0;
  color: rgba(255, 253, 247, 0.7);
  font-size: 11px;
  line-height: 1.5;
}

.paper-section {
  background:
    repeating-radial-gradient(ellipse at 80% 20%, transparent 0 32px, var(--paper-line) 33px 34px),
    linear-gradient(140deg, var(--ivory), var(--cream));
}

.fleet {
  position: relative;
  z-index: 6;
  width: 57%;
  min-height: 500px;
  margin: -438px 0 0 auto;
  padding: 51px clamp(36px, 6vw, 92px) 38px 13%;
  clip-path: polygon(12% 0, 100% 6%, 100% 93%, 84% 100%, 57% 94%, 31% 100%, 0 91%, 5% 62%, 0 27%);
}

.fleet__intro {
  position: relative;
  z-index: 10;
  max-width: 330px;
}

.fleet__intro .section-number {
  position: absolute;
  top: 0;
  left: -69px;
}

.fleet h2 {
  font-size: clamp(26px, 3vw, 45px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.fleet__intro > p:last-child,
.routes__intro > p {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 14px;
}

.fleet-stack {
  position: relative;
  height: 285px;
  margin-top: 19px;
}

.yacht-card {
  position: absolute;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(2, 47, 53, 0.16);
}

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

.yacht-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.yacht-card--primary {
  top: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-rows: 134px 1fr;
  width: 47%;
  min-width: 185px;
  height: 266px;
  transform: rotate(-1.5deg);
}

.yacht-card--primary img {
  height: 134px;
}

.yacht-card__copy {
  padding: 12px 14px 10px;
}

.yacht-card__copy h3 {
  font-size: 17px;
}

.yacht-card__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 7px 0 4px;
  padding: 0;
  list-style: none;
  font-size: 10px;
}

.yacht-card__copy li span {
  color: var(--gold);
}

.yacht-card__copy .text-link {
  font-size: 10px;
}

.yacht-card--secondary,
.yacht-card--tertiary {
  width: 47%;
  height: 205px;
}

.yacht-card--secondary {
  top: 27px;
  left: 34%;
  z-index: 2;
  transform: rotate(3deg);
}

.yacht-card--tertiary {
  top: 59px;
  right: -13%;
  z-index: 1;
  transform: rotate(6deg);
}

.yacht-card--secondary::after,
.yacht-card--tertiary::after {
  position: absolute;
  inset: 55% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(2, 47, 53, 0.82));
}

.yacht-card--secondary h3,
.yacht-card--tertiary h3 {
  position: absolute;
  right: 10px;
  bottom: 9px;
  left: 10px;
  z-index: 2;
  color: var(--white);
  font-size: 13px;
}

.fleet__all {
  position: absolute;
  right: clamp(35px, 6vw, 92px);
  bottom: 31px;
}

.routes {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 31% 69%;
  min-height: 465px;
  margin-top: -38px;
  padding: 90px 6vw 58px 9vw;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(197, 154, 81, 0.12), transparent 35%),
    repeating-radial-gradient(ellipse at 14% 90%, transparent 0 35px, var(--paper-line) 36px 37px),
    var(--cream);
  clip-path: polygon(0 8%, 14% 2%, 31% 7%, 49% 0, 65% 7%, 82% 1%, 100% 8%, 100% 94%, 84% 100%, 67% 95%, 47% 100%, 27% 94%, 10% 100%, 0 94%);
}

.routes__intro {
  position: relative;
  z-index: 12;
  padding-left: 34px;
}

.routes__intro .section-number {
  position: absolute;
  top: 0;
  left: -35px;
}

.routes h2 {
  font-size: clamp(32px, 3.7vw, 55px);
  line-height: 0.85;
  letter-spacing: -0.055em;
}

.routes__intro .text-link {
  margin-top: 23px;
}

.route-fan {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(9px, 1.2vw, 18px);
  min-width: 0;
  height: auto;
  margin-top: 28px;
}

.route-card {
  position: relative;
  min-width: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(2, 47, 53, 0.2);
}

.route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card::after {
  position: absolute;
  inset: 30% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(1, 31, 35, 0.96));
}

.route-card > div {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  z-index: 2;
}

.route-card h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(1, 20, 23, 0.9);
}

.route-card p {
  margin: 0;
  color: rgba(255, 253, 247, 0.9);
  font-size: 10px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(1, 20, 23, 0.95);
}

.site-footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 46% 25% 29%;
  min-height: 350px;
  margin-top: -30px;
  padding: 76px 7vw 45px 10vw;
  overflow: hidden;
  color: var(--white);
  background:
    repeating-radial-gradient(ellipse at 8% 72%, transparent 0 33px, rgba(223, 189, 123, 0.07) 34px 35px),
    var(--ink-deep);
  clip-path: polygon(0 8%, 16% 1%, 33% 7%, 51% 0, 69% 8%, 84% 2%, 100% 8%, 100% 100%, 0 100%);
}

.site-footer__water {
  position: absolute;
  top: 0;
  right: -7%;
  z-index: -1;
  width: 44%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  opacity: 0.95;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 34%);
  mask-image: linear-gradient(90deg, transparent, #000 34%);
}

.site-footer > .section-number {
  position: absolute;
  top: 79px;
  left: clamp(18px, 3.2vw, 50px);
}

.contacts {
  position: relative;
  z-index: 2;
}

.contacts h2 {
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.contacts address {
  display: grid;
  gap: 5px;
  margin-top: 21px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.contacts address a {
  width: max-content;
  border-bottom: 1px solid rgba(223, 189, 123, 0.46);
}

.contacts address p {
  margin: 4px 0 0;
  color: rgba(255, 253, 247, 0.68);
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-icons span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(223, 189, 123, 0.75);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 12px;
}

.social-icons svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.footer-brand > svg {
  width: 80px;
  margin-bottom: 9px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 0.8;
}

.footer-brand__needle {
  fill: var(--gold-light);
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 253, 247, 0.72);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.18em;
}

.footer-brand .footer-brand__name {
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.13em;
}

@media (min-width: 1280px) {
  body {
    font-size: 18px;
  }

  .hero {
    min-height: 670px;
  }

  .hero__photo {
    height: 600px;
  }

  .hero__copy {
    top: 170px;
  }

  .booking {
    bottom: -55px;
    width: 360px;
  }

  .experiences {
    min-height: 500px;
    padding-top: 108px;
  }

  .fleet {
    min-height: 565px;
    margin-top: -500px;
  }

  .fleet-stack {
    height: 330px;
  }

  .yacht-card--primary {
    height: 305px;
    grid-template-rows: 170px 1fr;
  }

  .yacht-card--primary img {
    height: 170px;
  }

  .yacht-card--secondary,
  .yacht-card--tertiary {
    height: 235px;
  }

  .routes {
    min-height: 535px;
  }

  .route-fan {
    height: auto;
  }

  .route-card {
    height: 325px;
  }
}

@media (min-width: 960px) and (max-width: 1199px) {
  body {
    zoom: 0.8;
  }
}

@media (max-width: 959px) {
  .site-header {
    grid-template-columns: 150px 1fr 64px;
    min-height: 94px;
  }

  .primary-nav {
    display: none;
  }

  .hero {
    min-height: 685px;
  }

  .hero__photo {
    width: 76%;
    height: 470px;
  }

  .hero__wash {
    width: 69%;
  }

  .hero__copy {
    top: 140px;
    width: 63vw;
  }

  .booking {
    right: 6vw;
    bottom: -76px;
    width: min(340px, 48vw);
  }

  .experiences {
    width: 100%;
    min-height: 470px;
    padding: 105px 52% 54px 10%;
    clip-path: polygon(0 4%, 20% 0, 42% 5%, 65% 1%, 83% 5%, 100% 1%, 100% 100%, 0 100%);
  }

  .experiences__body {
    margin-left: 40px;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-block: 23px;
  }

  .fleet {
    width: 60%;
    min-height: 520px;
    margin-top: -470px;
    padding: 70px 7vw 42px 9vw;
    clip-path: polygon(13% 0, 100% 4%, 100% 96%, 70% 100%, 40% 95%, 0 100%, 4% 56%);
  }

  .fleet__intro .section-number {
    left: -52px;
  }

  .fleet-stack {
    height: 270px;
  }

  .yacht-card--primary {
    width: 57%;
  }

  .yacht-card--secondary,
  .yacht-card--tertiary {
    width: 54%;
  }

  .routes {
    grid-template-columns: 100%;
    min-height: 765px;
    margin-top: -24px;
    padding: 95px 9vw 55px;
  }

  .routes__intro {
    width: 42%;
  }

  .route-fan {
    height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 40px;
  }

  .route-card {
    width: 100%;
    height: 320px;
  }

  .site-footer {
    grid-template-columns: 52% 30% 18%;
    min-height: 380px;
  }

  .site-footer__water {
    width: 35%;
  }
}

@media (max-width: 639px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr 56px;
    min-height: 82px;
    padding: 12px 18px;
    background: var(--ivory);
  }

  .weather {
    display: none;
  }

  .menu-button {
    width: 52px;
    height: 52px;
  }

  .menu-panel {
    align-content: start;
    justify-items: start;
    gap: 28px;
    padding: 126px 28px 60px;
  }

  .menu-panel a {
    font-size: clamp(23px, 8vw, 34px);
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
  }

  .hero__photo {
    position: relative;
    order: 1;
    width: 100%;
    height: 270px;
    object-position: 63% center;
  }

  .hero::after {
    top: 207px;
    bottom: auto;
    width: 100%;
  }

  .hero__wash {
    display: none;
  }

  .coordinates {
    top: 104px;
    left: 15px;
    z-index: 3;
    color: var(--gold-light);
  }

  .hero__copy {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: auto;
    padding: 34px 22px 30px;
    background:
      repeating-radial-gradient(ellipse at 12% 40%, transparent 0 29px, var(--paper-line) 30px 31px),
      var(--ivory);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 11.3vw, 50px);
  }

  .hero h1 span:nth-of-type(2) {
    margin-left: 0;
  }

  .hero h1 small {
    align-self: flex-start;
    margin-left: 63%;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .booking {
    position: relative;
    right: auto;
    bottom: auto;
    order: 3;
    width: calc(100% - 28px);
    margin: 0 14px -1px;
    padding: 24px;
  }

  .experiences,
  .fleet,
  .routes,
  .site-footer {
    width: 100%;
    min-height: 0;
    margin: 0;
    clip-path: none;
  }

  .experiences {
    padding: 70px 22px 55px;
  }

  .experiences > .section-number,
  .site-footer > .section-number {
    top: 28px;
    left: 22px;
  }

  .section-number::after {
    width: 45px;
    height: 1px;
  }

  .experiences__body {
    margin: 0;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 30px 0;
  }

  .service {
    grid-template-columns: 44px 1fr;
  }

  .service h3 {
    font-size: 17px;
  }

  .service p {
    font-size: 13px;
  }

  .fleet {
    padding: 70px 22px 62px;
  }

  .fleet__intro {
    max-width: none;
    padding-left: 0;
  }

  .fleet__intro .section-number,
  .routes__intro .section-number {
    top: -42px;
    left: 0;
  }

  .fleet-stack {
    display: grid;
    height: auto;
    gap: 18px;
    margin-top: 30px;
  }

  .yacht-card,
  .yacht-card--primary,
  .yacht-card--secondary,
  .yacht-card--tertiary {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-width: 0;
    transform: none;
  }

  .yacht-card--primary {
    grid-template-rows: 210px auto;
  }

  .yacht-card--primary img {
    height: 210px;
  }

  .yacht-card--secondary,
  .yacht-card--tertiary {
    height: 230px;
  }

  .yacht-card--secondary h3,
  .yacht-card--tertiary h3 {
    font-size: 20px;
  }

  .yacht-card__copy {
    padding: 18px;
  }

  .yacht-card__copy h3 {
    font-size: 24px;
  }

  .yacht-card__copy ul,
  .yacht-card__copy .text-link {
    font-size: 13px;
  }

  .fleet__all {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 29px;
  }

  .routes {
    display: block;
    padding: 75px 22px 62px;
  }

  .routes__intro {
    width: 100%;
    padding: 0;
  }

  .route-fan {
    display: grid;
    height: auto;
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 36px;
  }

  .route-card,
  .route-card--one,
  .route-card--two,
  .route-card--three,
  .route-card--four,
  .route-card--five {
    position: relative;
    inset: auto;
    width: 100%;
    height: 265px;
    transform: none;
  }

  .route-card h3 {
    font-size: 23px;
  }

  .route-card p {
    font-size: 13px;
  }

  .site-footer {
    display: block;
    padding: 80px 22px 310px;
  }

  .contacts h2 {
    font-size: clamp(31px, 9vw, 43px);
  }

  .contacts address {
    font-size: 15px;
  }

  .footer-brand {
    margin-top: 48px;
    align-content: start;
    justify-items: start;
    text-align: left;
  }

  .site-footer__water {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 285px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 26%);
    mask-image: linear-gradient(180deg, transparent, #000 26%);
  }
}

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

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