@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/lora-400.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/lato-400.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/lato-700.woff2") format("woff2");
}

:root {
  --ink: #183337;
  --ink-soft: #5d6967;
  --paper: #fdfdfb;
  --mist: #f0f3ef;
  --sea: #a6beb8;
  --sea-deep: #386a63;
  --brass: #b28c55;
  --signal: #b5573c;
  --line: #d9dfda;
  --shadow: 0 24px 80px rgba(20, 34, 36, 0.16);
  --sans: "Lato", ui-sans-serif, system-ui, sans-serif;
  --serif: "Lora", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section[id],
footer[id] {
  scroll-margin-top: 78px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--sea);
  color: var(--paper);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 0 30px;
  background: #ffffff;
  border-bottom: 1px solid rgba(216, 225, 226, 0.55);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  box-shadow: 0 14px 45px rgba(31, 45, 53, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.1;
}

.brand--light {
  color: var(--paper);
}

.header-affiliation {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 44px;
}

.header-affiliation img {
  width: 122px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--sea-deep);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  justify-self: end;
  display: none;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.icon-button span:not(.close-mark) {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.icon-button span + span {
  margin-top: 6px;
}

.icon-button--light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--paper);
}

.icon-button--light:hover,
.icon-button--light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--paper);
}

.site-header .nav-toggle {
  display: none;
}

.close-mark {
  position: relative;
  width: 26px;
  height: 26px;
}

.close-mark::before,
.close-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 12px;
  height: 1px;
  background: currentColor;
}

.close-mark::before {
  transform: rotate(45deg);
}

.close-mark::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 140;
  min-height: 100vh;
  padding: 24px 16px 40px;
  background: var(--sea);
  color: var(--paper);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 260ms ease, opacity 260ms ease, visibility 260ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu nav {
  display: grid;
  max-width: 340px;
  margin: 68px auto 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.mobile-menu nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.mail-link {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 18px auto 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: clamp(640px, calc(100svh - 110px), 720px);
  margin: 78px 30px 0;
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: var(--ink);
}

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

.hero__image {
  object-fit: cover;
  object-position: center 58%;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(14, 24, 26, 0.78), rgba(14, 24, 26, 0.12) 68%), linear-gradient(180deg, rgba(14, 24, 26, 0.08), rgba(14, 24, 26, 0.5));
}

.hero__content {
  position: absolute;
  inset: 0 auto 0 7vw;
  z-index: 2;
  width: min(820px, calc(100% - 60px));
  display: grid;
  align-content: center;
  color: var(--paper);
  text-align: left;
  padding: 28px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sea-deep);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 5.35rem;
  line-height: 1.04;
}

h2 {
  font-size: 3.45rem;
}

h3 {
  font-size: 2.05rem;
}

.hero__lede {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero__action {
  justify-self: start;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 42px;
  padding: 10px 24px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--ghost {
  color: var(--paper);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.button--outline {
  color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible,
.button--solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--sea-deep);
  border-color: var(--sea-deep);
}

.section {
  padding: 82px 30px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 22px auto 0;
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.intro {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.service-statement {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(58px, 7vw, 92px);
  max-width: 1020px;
  margin: 0 auto;
  padding: 16px 0;
  align-items: start;
}

.service-statement__portrait {
  position: relative;
  width: 230px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid rgba(24, 51, 55, 0.16);
  justify-self: start;
}

.service-statement__portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.88) contrast(1.035);
}

.has-motion .service-statement__portrait {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 820ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.has-motion .service-statement__portrait img {
  transform: scale(1.045);
  transition: transform 1050ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.has-motion .service-statement.is-visible .service-statement__portrait {
  clip-path: inset(0);
}

.has-motion .service-statement.is-visible .service-statement__portrait img {
  transform: scale(1);
}

.service-statement__copy {
  align-self: start;
}

.service-statement__copy h2 {
  max-width: 520px;
  margin-bottom: 26px;
  font-size: 2.1rem;
}

.service-statement__copy p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
}

.service-statement__copy .service-statement__text {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.48;
}

.service-statement__copy p + p {
  margin-top: 20px;
}

.footer-main address a {
  border-bottom: 1px solid #dfe2e0;
}

.footer-main address a:hover,
.footer-main address a:focus-visible {
  border-bottom-color: #202526;
}

.yacht-edit {
  background: var(--paper);
}

.destination-page .destination-overview {
  padding-bottom: 42px;
}

.destination-page .yacht-edit {
  padding-top: 42px;
  padding-bottom: 50px;
}

.destination-page .itinerary-section {
  padding-top: 66px;
  padding-bottom: 66px;
}

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 52px;
  max-width: 1240px;
  margin: 0 auto 34px;
}

.editorial-heading .eyebrow {
  margin-bottom: 14px;
}

.yacht-rail-controls {
  display: flex;
  gap: 8px;
  padding-bottom: 5px;
}

.yacht-rail-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.yacht-rail-button:hover,
.yacht-rail-button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.yacht-rail-button:disabled {
  opacity: 0.3;
  cursor: default;
}

.yacht-rail-button:disabled:hover {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.yacht-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 34vw, 380px);
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 0 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.yacht-grid:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 8px;
}

.yacht-card {
  min-width: 0;
  border-top: 1px solid var(--line);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.yacht-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8edeb;
}

.yacht-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.yacht-card:hover .yacht-card__media img {
  transform: scale(1.025);
}

.yacht-card__media > span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(253, 253, 251, 0.94);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.yacht-card__body {
  padding: 18px 0 0;
}

.yacht-card__body h3 {
  font-size: 1.78rem;
}

.yacht-card__body p {
  margin: 8px 0 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.yacht-card__body p span {
  margin: 0 5px;
  color: var(--brass);
}

.yacht-card__body a,
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  border-bottom: 1px solid var(--line);
  color: var(--sea-deep);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.yacht-card__body a:hover,
.yacht-card__body a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  border-color: currentColor;
  color: var(--ink);
}

.regions {
  background: var(--mist);
}

.regions .section-heading {
  max-width: 980px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.region-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  min-height: 430px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.region-card > img,
.region-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.region-card > img {
  object-fit: cover;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.region-card:nth-child(1) > img {
  object-position: center 62%;
}

.region-card:nth-child(2) > img {
  object-position: 52% center;
}

.region-card__shade {
  background: linear-gradient(180deg, rgba(10, 19, 22, 0.08) 18%, rgba(10, 19, 22, 0.82) 100%);
}

.region-card__content {
  position: absolute;
  inset: auto 26px 26px;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.region-card__number {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 700;
}

.region-card__content strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
}

.region-card__content > span:not(.region-card__number, .region-card__link) {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
}

.region-card__link {
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.region-card:hover > img,
.region-card:focus-visible > img {
  transform: scale(1.035);
}

.region-card:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.regions__closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1240px;
  margin: 38px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.regions__closing p {
  margin: 0;
  color: var(--ink-soft);
}

.regions__closing--action {
  justify-content: center;
}

.destination-hero {
  position: relative;
  min-height: 620px;
  margin: 78px 30px 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.destination-hero > img,
.destination-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.destination-hero > img {
  object-fit: cover;
}

.destination-hero--mediterranean > img {
  object-position: center 56%;
}

.destination-hero__shade {
  background: linear-gradient(180deg, rgba(10, 19, 22, 0.08) 25%, rgba(10, 19, 22, 0.76) 100%);
}

.destination-hero__content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 80px));
  margin: 0 auto;
  padding: 52px 0;
}

.destination-hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.destination-hero h1 {
  max-width: 940px;
  font-size: 5rem;
}

.destination-hero__lede {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.image-credit {
  max-width: 1240px;
  margin: 10px auto 0;
  padding: 0 30px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-align: right;
}

.image-credit a {
  border-bottom: 1px solid var(--line);
}

.destination-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: 72px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.destination-intro h2 {
  font-size: 3.1rem;
}

.destination-intro__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.destination-facts {
  margin: 5px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.destination-facts div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.destination-facts dt {
  margin-bottom: 4px;
  color: var(--brass);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.destination-facts dd {
  margin: 0;
  color: var(--ink);
}

.itinerary-section {
  background: var(--mist);
}

.itinerary-list {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.itinerary-day {
  display: grid;
  grid-template-columns: 74px minmax(180px, 0.62fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.itinerary-day__number {
  color: var(--brass);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.itinerary-day h3 {
  font-size: 1.55rem;
}

.itinerary-day p {
  margin: 1px 0 0;
  color: var(--ink-soft);
}

.destination-enquiry {
  padding-top: 66px;
  padding-bottom: 66px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.destination-enquiry h2 {
  font-size: 3rem;
}

.destination-enquiry p {
  max-width: 560px;
  margin: 16px auto 24px;
  color: var(--ink-soft);
}

.site-footer {
  background: #ffffff;
  color: #202526;
}

.site-footer .brand {
  color: #202526;
}

label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 11px 0;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--sea);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--sea);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 38px 30px 34px;
}

.footer-identity {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.footer-portrait {
  width: 64px;
  height: 80px;
  object-fit: cover;
  object-position: center 32%;
}

.footer-identity p {
  margin: 5px 0 0;
}

.footer-affiliation {
  border-bottom: 1px solid #cfd4d2;
  transition: border-color 180ms ease, color 180ms ease;
}

.footer-affiliation:hover,
.footer-affiliation:focus-visible {
  border-bottom-color: currentColor;
  color: #202526;
}

.footer-main p,
.footer-main address {
  color: #656b6c;
  font-style: normal;
}

.footer-main address {
  justify-self: end;
  text-align: right;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 30px;
  border-top: 1px solid #e7e9e8;
  color: #767b7b;
  font-size: 0.84rem;
}

.footer-legal p {
  margin: 0;
}

.enquiry-modal {
  width: min(780px, 100%);
  max-width: 100%;
  height: 100dvh;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.enquiry-modal::backdrop {
  background: rgba(16, 25, 31, 0.66);
  opacity: 1;
  transition: opacity 380ms ease;
}

.enquiry-modal.is-closing::backdrop {
  opacity: 0;
}

@starting-style {
  .enquiry-modal[open]::backdrop {
    opacity: 0;
  }
}

.modal-close-form {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 2;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100%;
}

.modal-intro {
  padding: 64px 74px 18px 46px;
  background: var(--paper);
  color: var(--ink);
}

.modal-intro h2 {
  max-width: 560px;
  font-size: 3.25rem;
}

.modal-intro p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.enquiry-form {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 24px 46px 52px;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.has-motion .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

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

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

  .has-motion .reveal {
    opacity: 1;
    transform: none;
  }

  .has-motion .service-statement__portrait {
    clip-path: inset(0);
  }

  .has-motion .service-statement__portrait img {
    transform: none;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .desktop-nav {
    gap: 15px;
  }

  .service-statement {
    gap: 58px;
  }

  .yacht-grid {
    gap: 22px;
  }

  .region-card__content strong {
    font-size: 1.7rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 0 16px;
  }

  .desktop-nav {
    display: none;
  }

  .header-affiliation {
    display: none;
  }

  .site-header .nav-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 720px;
    margin: 76px 0 0;
  }

  .hero__content {
    inset: 0 auto 0 24px;
    text-align: left;
    width: min(520px, calc(100% - 48px));
    margin-left: 0;
    padding: 28px 0;
  }

  .section {
    padding: 64px 30px;
  }

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

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

  .service-statement {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 38px;
  }

  .service-statement__portrait {
    width: 220px;
  }

  .service-statement__copy h2 {
    font-size: 1.85rem;
  }

  .service-statement__copy .service-statement__text {
    font-size: 1.18rem;
    line-height: 1.52;
  }

  .editorial-heading {
    gap: 20px;
  }

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

  .region-card {
    aspect-ratio: 16 / 9;
    min-height: 360px;
  }

  .destination-hero {
    min-height: 600px;
    margin: 76px 0 0;
  }

  .destination-hero__content {
    width: calc(100% - 60px);
  }

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

  .itinerary-day {
    grid-template-columns: 60px minmax(150px, 0.62fr) minmax(0, 1.4fr);
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.05rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__content {
    inset: 0 auto 0 22px;
    width: calc(100% - 44px);
    margin-left: 0;
    padding: 24px 0;
  }

  .hero__lede {
    font-size: 0.96rem;
  }

  .section {
    padding: 56px 22px;
  }

  .destination-page .destination-overview {
    padding-bottom: 28px;
  }

  .destination-page .yacht-edit {
    padding-top: 28px;
    padding-bottom: 38px;
  }

  .destination-page .itinerary-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .service-statement {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 4px 0;
  }

  .service-statement__portrait {
    width: 174px;
  }

  .service-statement__copy {
    padding-top: 0;
  }

  .service-statement__copy h2 {
    margin-bottom: 24px;
    font-size: 1.9rem;
  }

  .service-statement__copy .service-statement__text {
    font-size: 1.18rem;
  }

  .yacht-grid {
    grid-auto-columns: min(78vw, 320px);
    gap: 18px;
  }

  .yacht-rail-button {
    width: 40px;
    height: 40px;
  }

  .region-card {
    aspect-ratio: 4 / 5;
    min-height: 390px;
  }

  .region-card__content {
    inset: auto 22px 22px;
  }

  .regions__closing {
    display: grid;
    justify-items: start;
  }

  .regions__closing--action {
    justify-items: center;
  }

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

  .destination-hero__content {
    width: calc(100% - 44px);
    padding: 36px 0;
  }

  .destination-hero h1 {
    font-size: 3.2rem;
  }

  .destination-hero__lede {
    font-size: 0.96rem;
  }

  .destination-intro h2 {
    font-size: 2.55rem;
  }

  .itinerary-day {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .destination-enquiry h2 {
    font-size: 2.4rem;
  }

  .image-credit {
    padding: 0 22px;
  }

  .footer-main,
  .footer-legal {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .footer-main address {
    justify-self: start;
    text-align: left;
  }

  .footer-legal {
    display: grid;
  }

  .field-pair {
    grid-template-columns: 1fr;
  }

  .modal-intro,
  .enquiry-form {
    padding: 42px 24px;
  }

  .modal-intro {
    padding-right: 70px;
  }

  .modal-intro h2 {
    font-size: 2.75rem;
  }
}
