:root {
  --ink: #343333;
  --navy: #005565;
  --navy-soft: #004653;
  --navy-deep: #12343a;
  --sea: #83acab;
  --gold: #a08151;
  --gold-bright: #b9965e;
  --paper: #edece4;
  --white: #ffffff;
  --muted: #687681;
  --stone: #c6bcb1;
  --mist: #f1f1f1;
  --text-high: rgba(52, 51, 51, 0.87);
  --text-med: rgba(52, 51, 51, 0.72);
  --text-low: rgba(52, 51, 51, 0.48);
  --on-dark-high: rgba(255, 255, 255, 0.9);
  --on-dark-med: rgba(255, 255, 255, 0.68);
  --line: rgba(52, 51, 51, 0.13);
  --line-soft: rgba(160, 129, 81, 0.18);
  --shadow: 0 24px 70px rgba(0, 85, 101, 0.18);
  --shadow-soft: 0 18px 54px rgba(52, 51, 51, 0.09);
  --shadow-premium: 0 34px 110px rgba(0, 85, 101, 0.2);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --glass: rgba(255, 255, 255, 0.64);
  --space-page: min(1120px, calc(100% - 36px));
}

.service-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 46px;
}

.service-photo-strip figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}

.service-photo-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.service-photo-strip figcaption {
  position: absolute;
  inset: auto 10px 10px;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 3px;
  color: #fff;
  background: rgba(0, 67, 78, .88);
  font-size: 12px;
  font-weight: 700;
}

.service-photo-strip figure:hover img {
  transform: scale(1.035);
}

@media (max-width: 680px) {
  .service-photo-strip {
    grid-template-columns: 1fr;
    margin: 26px 0 38px;
  }

  .service-photo-strip img {
    aspect-ratio: 16 / 10;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text-high);
  background:
    radial-gradient(circle at 12% 6%, rgba(131, 172, 171, 0.16), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(160, 129, 81, 0.1), transparent 22%),
    linear-gradient(180deg, #f7f6f1 0%, var(--paper) 42%, #f8f8f6 100%);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(52, 51, 51, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 51, 51, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  right: auto;
  width: min(1180px, calc(100% - 28px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 14px;
  padding: 12px 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 85, 101, 0.82), rgba(18, 52, 58, 0.78)),
    rgba(0, 85, 101, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 54px rgba(0, 85, 101, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: 0;
}

.brand img {
  width: clamp(190px, 20vw, 278px);
  height: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.main-nav a,
.header-call,
.text-link,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--gold);
}

.main-nav a {
  position: relative;
  padding-block: 6px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  padding: 11px 16px;
  border: 1px solid rgba(160, 129, 81, 0.38);
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 34px rgba(160, 129, 81, 0.24);
}

.hero {
  position: relative;
  height: clamp(760px, 92svh, 980px);
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0f343d;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 -1px;
  height: 210px;
  background: linear-gradient(180deg, rgba(237, 236, 228, 0), var(--paper) 76%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background:
    radial-gradient(circle at 78% 30%, rgba(237, 236, 228, 0.24), transparent 18%),
    linear-gradient(115deg, transparent 0 62%, rgba(160, 129, 81, 0.26) 62.1% 62.32%, transparent 62.45%),
    linear-gradient(115deg, transparent 0 70%, rgba(131, 172, 171, 0.22) 70.1% 70.28%, transparent 70.45%);
}

.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  object-fit: cover;
  object-position: 50% 52%;
  opacity: 0;
  transition:
    opacity 900ms ease,
    transform 900ms ease;
  will-change: transform;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide[data-hero-image="superyacht"] {
  object-position: 50% 48%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 85, 101, 0.96) 0%, rgba(0, 85, 101, 0.72) 42%, rgba(0, 85, 101, 0.12) 100%),
    linear-gradient(0deg, rgba(52, 51, 51, 0.82) 0%, rgba(52, 51, 51, 0) 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 84px;
  color: var(--white);
}

.hero-content h1 {
  max-width: 900px;
  min-height: calc(1.02em * 3);
  font-size: clamp(44px, 6.2vw, 80px);
}

.hero-content .eyebrow {
  min-height: 1.2em;
}

.hero-copy {
  min-height: calc(1.55em * 2);
}

.hero-content::before {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--gold), rgba(237, 236, 228, 0));
  box-shadow: 0 0 28px rgba(160, 129, 81, 0.38);
}

.hero-content h1,
.hero-copy,
.hero-content .eyebrow,
.hero-actions {
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 500;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 690px;
  color: var(--on-dark-high);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(760px, 100%);
  margin-top: 42px;
  overflow: hidden;
  background: rgba(237, 236, 228, 0.12);
  border: 1px solid rgba(237, 236, 228, 0.24);
  border-radius: 22px;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.18);
}

.hero-metrics div {
  position: relative;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics div + div {
  border-left: 1px solid rgba(237, 236, 228, 0.16);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--on-dark-med);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(52, 51, 51, 0.1);
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.26) 48%, transparent 64% 100%);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  color: var(--navy-deep);
  background: var(--gold-bright);
  box-shadow: 0 18px 46px rgba(160, 129, 81, 0.28);
}

.secondary {
  color: var(--navy-deep);
  background: var(--sea);
  box-shadow: 0 18px 44px rgba(131, 172, 171, 0.22);
}

.ghost {
  color: var(--navy);
  border-color: rgba(237, 236, 228, 0.12);
  background: rgba(237, 236, 228, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

.ghost-light {
  color: var(--navy);
  border-color: rgba(237, 236, 228, 0.18);
  background: rgba(237, 236, 228, 0.9);
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: var(--space-page);
  margin: -42px auto 0;
  background: rgba(237, 236, 228, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px rgba(52, 51, 51, 0.1);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.trust-strip span {
  position: relative;
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.trust-strip span + span {
  border-left: 1px solid rgba(52, 51, 51, 0.08);
}

.trust-strip span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(160, 129, 81, 0.08);
}

.logo-marquee-section {
  position: relative;
  z-index: 2;
  width: var(--space-page);
  margin: 26px auto 0;
  padding: 22px 0 0;
  overflow: hidden;
}

.logo-marquee-section .eyebrow {
  text-align: center;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 34s linear infinite;
}

.logo-track span {
  display: inline-flex;
  min-width: 190px;
  height: 64px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(160, 129, 81, 0.28);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(52, 51, 51, 0.08);
  backdrop-filter: blur(10px);
}

.logo-track img {
  width: auto;
  max-width: 170px;
  max-height: 44px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.02);
  opacity: 0.92;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.logo-track span:hover img {
  filter: saturate(1.06) contrast(1.08);
  opacity: 1;
  transform: translateY(-1px);
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  width: var(--space-page);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) 0;
  scroll-margin-top: 112px;
}

.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 38px -18px auto;
  height: 170px;
  background: linear-gradient(180deg, rgba(131, 172, 171, 0.16), rgba(131, 172, 171, 0));
  opacity: 0;
  pointer-events: none;
}

.canal-feature::before,
.experience-band::before,
.coverage-band::before {
  opacity: 1;
}

.coverage-band {
  grid-template-columns: 1fr;
  gap: 28px;
}

.coverage-band > div:first-child {
  max-width: 760px;
}

.coverage-band .coverage-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.section.coverage-band {
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: clamp(46px, 6vw, 70px) clamp(18px, 3vw, 28px);
  border: 1px solid rgba(160, 129, 81, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(237, 236, 228, 0.84)),
    var(--paper);
  box-shadow: 0 24px 72px rgba(52, 51, 51, 0.07);
}

.section p {
  color: var(--text-med);
  font-size: 17px;
}

.feature-grid,
.coverage-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid div,
.coverage-list div,
.service-grid article,
.destination-grid article,
.destination-grid a {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(237, 236, 228, 0.66)),
    var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.coverage-list div {
  min-height: 188px;
}

.feature-grid div,
.coverage-list div {
  position: relative;
  overflow: hidden;
}

.feature-grid div::before,
.coverage-list div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 54px;
  height: 3px;
  background: var(--gold);
}

.feature-grid div:hover,
.coverage-list div:hover,
.service-grid article:hover,
.destination-grid article:hover,
.destination-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(160, 129, 81, 0.34);
  box-shadow: 0 26px 72px rgba(0, 85, 101, 0.12);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0, 85, 101, 0.98), rgba(18, 52, 58, 0.96)),
    var(--navy);
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-lg);
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -90px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(160, 129, 81, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 129, 81, 0.16), transparent 62%);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel p {
  color: var(--on-dark-med);
}

.cta-panel .panel-kicker {
  color: var(--gold);
  font-weight: 800;
}

.cta-panel .text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--white);
  font-weight: 750;
}

.dark {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 4vw, 56px);
  padding-block: clamp(44px, 5vw, 68px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(131, 172, 171, 0.18), transparent 26%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  overflow: hidden;
}

.dark::before,
.dark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 160px;
  pointer-events: none;
}

.dark::before {
  top: 0;
  background: linear-gradient(180deg, var(--paper), rgba(0, 85, 101, 0));
}

.dark::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--paper), rgba(0, 85, 101, 0));
}

.dark .section-heading,
.dark .service-grid {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin-inline: auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.dark p {
  color: var(--on-dark-med);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  position: relative;
  min-height: 0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  padding: 0;
  backdrop-filter: blur(16px);
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(18, 52, 58, 0.42));
  pointer-events: none;
}

.service-icon {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(237, 236, 228, 0.92);
  box-shadow: 0 12px 28px rgba(52, 51, 51, 0.12);
}

.service-icon img {
  max-width: 26px;
  max-height: 26px;
}

.service-grid article img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-grid article:hover > img {
  transform: scale(1.045);
}

.service-grid article h3,
.service-grid article p {
  position: relative;
  z-index: 2;
  padding-inline: 22px;
}

.service-grid article h3 {
  margin-top: 18px;
}

.service-grid article h3 a {
  text-decoration: none;
}

.service-grid article h3 a:hover {
  color: var(--gold);
}

.service-grid article p {
  padding-bottom: 22px;
  font-size: 15.5px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.services-band .section-heading {
  max-width: 720px;
}

.editorial {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.experience-band {
  padding-top: clamp(48px, 6vw, 76px);
}

.image-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.image-stack::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 10% 6% 16%;
  border-radius: 34px;
  background: rgba(0, 85, 101, 0.08);
  filter: blur(2px);
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 26px;
  box-shadow: 0 24px 74px rgba(52, 51, 51, 0.16);
}

.image-stack img:last-child {
  aspect-ratio: 3 / 4;
  margin-bottom: -18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 24px;
  position: relative;
  color: var(--text-high);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  background: var(--gold);
}

.destinations {
  border-top: 1px solid var(--line);
}

.destination-band {
  width: var(--space-page);
}

.itinerary-map-section {
  width: var(--space-page);
  text-align: center;
}

.itinerary-map-section .section-heading {
  margin-inline: auto;
}

.itinerary-map {
  position: relative;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(160, 129, 81, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 32px 96px rgba(52, 51, 51, 0.13);
}

.itinerary-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(237, 236, 228, 0.34), transparent 28%),
    linear-gradient(0deg, rgba(0, 85, 101, 0.12), transparent 40%);
}

.itinerary-map img {
  width: 100%;
  height: min(44vw, 420px);
  object-fit: contain;
  background: rgba(237, 236, 228, 0.72);
}

.itinerary-map figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 18px 22px 22px;
  color: var(--text-med);
}

.itinerary-map figcaption strong {
  color: var(--navy);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.destination-grid article,
.destination-grid a {
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 236, 228, 0.74)),
    var(--white);
  overflow: hidden;
  padding: 0;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.destination-grid a {
  position: relative;
}

.destination-grid a::after {
  content: "Explore";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(237, 236, 228, 0.9);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.destination-grid a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.destination-grid article img,
.destination-grid a img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    radial-gradient(circle at 72% 24%, rgba(131, 172, 171, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(0, 85, 101, 0.12), rgba(160, 129, 81, 0.16)),
    var(--paper);
  transition:
    filter 520ms ease,
    opacity 520ms ease;
  will-change: transform;
}

.destination-grid article:hover img,
.destination-grid a:hover img {
  filter: saturate(1.08) contrast(1.04);
  opacity: 0.96;
}

.destination-grid article span,
.destination-grid article h3,
.destination-grid article p,
.destination-grid a span,
.destination-grid a h3,
.destination-grid a p {
  margin-inline: 22px;
}

.destination-grid article p,
.destination-grid a p,
.coverage-list p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.destination-grid article p,
.destination-grid a p {
  font-size: 15.5px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
}

.coverage-list p {
  -webkit-line-clamp: 4;
}

.coverage-list h3,
.destination-grid h3,
.service-grid h3 {
  overflow-wrap: anywhere;
}

.destination-grid article span,
.destination-grid a span {
  display: block;
  margin-top: 20px;
}

.destination-grid h3 {
  font-size: 19px;
  line-height: 1.18;
}

.destination-grid span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.leadership {
  display: grid;
  grid-template-columns: 0.95fr 0.56fr 0.9fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  border-top: 1px solid rgba(160, 129, 81, 0.16);
}

.leadership-band {
  border-top: 0;
}

.leader-card {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 236, 228, 0.74)),
    var(--white);
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-preview {
  text-align: center;
}

.team-preview .section-heading {
  margin-inline: auto;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 28px;
}

.team-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(52, 51, 51, 0.12);
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.team-strip img:nth-child(even) {
  margin-top: 28px;
}

.team-strip img:hover {
  transform: translateY(-8px);
  filter: saturate(1.05) contrast(1.03);
}

.team-cta {
  gap: 10px;
  padding-inline: 24px;
  box-shadow: 0 18px 46px rgba(160, 129, 81, 0.2);
}

.team-cta::after {
  content: "→";
  display: inline-block;
  transition: transform 180ms ease;
}

.team-cta:hover::after {
  transform: translateX(4px);
}

.team-cta:hover {
  box-shadow: 0 24px 64px rgba(160, 129, 81, 0.3);
}

.resources-band {
  border-top: 1px solid var(--line);
}

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

.resource-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(260px, 30vw, 350px);
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.resource-card::before,
.resource-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.resource-card::before {
  background-position: center;
  background-size: cover;
  transition: transform 520ms ease;
}

.resource-card::after {
  background: linear-gradient(0deg, rgba(18, 52, 58, 0.9), rgba(0, 85, 101, 0.16));
}

.gallery-card::before {
  background-image: url("assets/img/hero-superyacht.webp");
}

.blog-card::before {
  background-image: url("assets/img/hero-canal.webp");
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.resource-card:hover::before {
  transform: scale(1.045);
}

.resource-card span {
  color: #d5b477;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-card h3 {
  max-width: 390px;
  margin: 10px 0 0;
  font-family: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
}

.gallery-page,
.blog-page {
  width: var(--space-page);
  margin: 0 auto;
  padding: clamp(50px, 7vw, 84px) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.gallery-grid figure:first-child,
.gallery-grid figure:nth-child(6) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-grid figure:first-child img,
.gallery-grid figure:nth-child(6) img {
  aspect-ratio: 2 / 1;
}

.gallery-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--text-med);
  font-size: 14px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  display: grid;
  min-height: 280px;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.article-card .eyebrow {
  align-self: start;
}

.article-card h2 {
  margin: auto 0 18px;
  font-size: clamp(26px, 2.6vw, 34px);
}

.article-card strong {
  color: var(--navy);
}

.article-layout {
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.article-lead {
  color: rgba(42, 42, 41, 0.86);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.article-callout {
  margin-top: var(--space-7);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(175, 136, 78, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(238, 240, 232, 0.72));
  box-shadow: var(--shadow-soft);
}

.article-callout strong {
  display: block;
  color: var(--teal);
  font-size: 1.12rem;
  margin-bottom: 0.55rem;
}

.article-callout .btn {
  margin-top: 0.75rem;
}

.leader-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.leader-card figcaption {
  display: grid;
  gap: 2px;
  padding: 18px;
  color: var(--text-med);
}

.leader-card strong {
  color: var(--ink);
}

.sustainability-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-block: clamp(52px, 7vw, 82px);
  border-top: 1px solid var(--line);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pillar-grid div {
  min-height: 142px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 24px 18px;
  border: 1px solid rgba(160, 129, 81, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(237, 236, 228, 0.64)),
    var(--white);
  box-shadow: 0 20px 54px rgba(52, 51, 51, 0.08);
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.pillar-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 85, 101, 0.24);
  box-shadow: 0 26px 68px rgba(0, 85, 101, 0.12);
}

.pillar-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.9), transparent 34%),
    rgba(0, 85, 101, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 85, 101, 0.12);
}

.pillar-icon img {
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
}

.pillar-grid strong {
  max-width: 180px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.flavors-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
}

.flavors-band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(52, 51, 51, 0.14);
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.principles span {
  display: grid;
  min-height: 118px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 22px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(160, 129, 81, 0.2);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(52, 51, 51, 0.07);
  text-align: center;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.principles span:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 85, 101, 0.22);
  box-shadow: 0 22px 62px rgba(0, 85, 101, 0.1);
}

.principles img {
  max-width: 34px;
  max-height: 34px;
}

.principles strong {
  font-size: 15px;
  line-height: 1.25;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 34px;
  align-items: center;
  width: var(--space-page);
  margin: clamp(32px, 5vw, 56px) auto 0;
  padding: clamp(30px, 4.5vw, 50px) clamp(22px, 4vw, 44px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(160, 129, 81, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(0, 85, 101, 0.98), rgba(18, 52, 58, 0.96)),
    var(--navy-soft);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.contact-section h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 55%, rgba(237, 236, 228, 0.12) 55.12% 55.34%, transparent 55.48%),
    linear-gradient(90deg, rgba(160, 129, 81, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(237, 236, 228, 0.16), transparent 32%);
  pointer-events: none;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  max-width: 900px;
}

.contact-section p {
  color: var(--on-dark-med);
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  position: relative;
  overflow: hidden;
  width: var(--space-page);
  margin: 24px auto 24px;
  display: grid;
  grid-template-columns: minmax(280px, 1.18fr) minmax(150px, 0.72fr) minmax(250px, 0.92fr);
  gap: clamp(22px, 3.4vw, 44px);
  padding: clamp(26px, 3.6vw, 42px);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 8% 8%, rgba(131, 172, 171, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(0, 85, 101, 0.96), rgba(18, 52, 58, 0.98)),
    var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(52, 51, 51, 0.18);
  font-size: 14px;
  scroll-margin-top: 112px;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 129, 81, 0.62), transparent);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  width: min(238px, 100%);
  filter: brightness(0) invert(1);
}

.footer-brand .footer-statement {
  display: grid;
  gap: 8px;
  max-width: 360px;
  margin: 27px 0 0;
  padding: 4px 0 4px 18px;
  color: var(--on-dark-med);
  border-left: 2px solid rgba(160, 129, 81, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.footer-statement span {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links::before,
.footer-contact::before {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links::before {
  content: "Service pages";
}

.footer-contact::before {
  content: "Contact";
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact p {
  margin: 0;
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
}

.footer-bottom .back-to-top {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
}

.footer-bottom .back-to-top span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
}

.footer-bottom .back-to-top:hover {
  border-color: rgba(160, 129, 81, 0.7);
  background: rgba(160, 129, 81, 0.12);
}

.js-ready .reveal {
  opacity: 1;
  transform: none;
  transition:
    transform 520ms ease;
}

.js-ready .reveal.is-visible {
  transform: none;
}

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

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

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

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 62vh, 660px);
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

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

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

.page-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 85, 101, 0.95), rgba(0, 85, 101, 0.58), rgba(52, 51, 51, 0.16)),
    linear-gradient(0deg, rgba(52, 51, 51, 0.78), rgba(52, 51, 51, 0));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--space-page);
  margin: 0 auto;
  padding: clamp(128px, 14vw, 168px) 0 clamp(54px, 7vw, 76px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: none;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 76px);
}

.page-intro {
  max-width: 760px;
  color: var(--on-dark-high);
  font-size: clamp(18px, 2vw, 23px);
}

.page-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: clamp(28px, 4vw, 54px);
  width: var(--space-page);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 84px) 0;
  scroll-margin-top: 112px;
}

.page-layout::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: clamp(28px, 5vw, 54px) -22px auto;
  height: min(460px, 56%);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 8%, rgba(131, 172, 171, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(237, 236, 228, 0));
  pointer-events: none;
}

.page-main {
  min-width: 0;
}

.page-main h2 {
  max-width: 780px;
  font-size: clamp(32px, 3.8vw, 50px);
}

.page-main h3 {
  margin-top: 30px;
}

.page-main p,
.page-main li,
.faq p {
  color: var(--text-med);
  font-size: 17px;
}

.page-main > p:first-of-type {
  max-width: 820px;
  color: var(--text-high);
  font-size: clamp(18px, 2vw, 21px);
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.two-column-list li {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 20px 58px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 236, 228, 0.64)),
    var(--white);
  border: 1px solid rgba(160, 129, 81, 0.16);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(52, 51, 51, 0.06);
  font-weight: 700;
}

.two-column-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 38%, transparent 42%),
    rgba(160, 129, 81, 0.12);
  box-shadow: 0 0 0 6px rgba(160, 129, 81, 0.08);
}

.side-card {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(160, 129, 81, 0.18), transparent 26%),
    linear-gradient(145deg, var(--navy), var(--navy-deep));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.side-card p {
  color: rgba(255, 255, 255, 0.74);
}

.side-card .btn {
  width: 100%;
  margin-top: 10px;
}

.side-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.side-list li {
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-grid,
.related-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.process-grid article,
.related-grid a,
.faq details,
.team-grid article {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 236, 228, 0.66)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.process-grid article::before,
.related-grid a::before,
.faq details::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(160, 129, 81, 0));
}

.process-grid article h3,
.related-grid a h3 {
  margin-top: 8px;
  font-size: 18px;
}

.process-grid article p,
.related-grid a p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 15.5px;
  line-height: 1.45;
}

.process-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(160, 129, 81, 0.14);
  box-shadow: inset 0 0 0 1px rgba(160, 129, 81, 0.18);
  font-weight: 800;
}

.related-grid a {
  text-decoration: none;
}

.related-grid a:hover h3 {
  color: var(--gold);
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.team-grid article {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

.team-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.team-page-hero > img {
  object-position: 65% 45%;
}

.team-field-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-field-grid article:nth-child(5) {
  grid-column: 2;
}

.team-field-grid img {
  aspect-ratio: 4 / 5;
}

.team-photo-nydia {
  object-position: 62% 48%;
}

.team-photo-leo {
  object-position: 34% 50%;
}

.team-photo-ericka {
  object-position: 45% 52%;
}

.team-photo-ana {
  object-position: 30% 62%;
}

.team-photo-angelica {
  object-position: 47% 60%;
}

.team-photo-yariel {
  object-position: 64% 50%;
}

.team-photo-omar {
  object-position: 30% 60%;
}

.team-grid h3,
.team-grid p {
  padding-inline: 18px;
}

.team-grid h3 {
  margin: 16px 0 4px;
}

.team-grid p {
  padding-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 236, 228, 0.7)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  border-radius: 12px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

@media (max-height: 840px) and (min-width: 681px) {
  .hero {
    height: 720px;
    min-height: 720px;
  }

  .hero-content {
    padding: 110px 0 88px;
  }

  .hero-content h1 {
    max-width: 800px;
    min-height: calc(1.02em * 3);
    margin-bottom: 18px;
    font-size: clamp(46px, 5vw, 66px);
  }

  .hero-copy {
    min-height: calc(1.55em * 2);
    max-width: 650px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-metrics {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .trust-strip,
  .feature-grid,
  .service-grid,
  .destination-grid,
  .coverage-band .coverage-list,
  .process-grid,
  .related-grid,
  .team-grid,
  .team-strip,
  .resource-grid,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .split,
  .editorial,
  .leadership,
  .contact-section,
  .page-layout,
  .sustainability-band,
  .flavors-band {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .service-grid article:nth-child(1),
  .service-grid article:nth-child(4) {
    grid-column: auto;
  }

  .team-field-grid article:nth-child(5) {
    grid-column: auto;
  }

  .side-card {
    position: static;
  }

  .page-layout::before {
    inset-inline: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 168px;
  }

  .header-call {
    padding: 10px 12px;
  }

  .hero {
    height: 840px;
    min-height: 840px;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-content h1 {
    min-height: calc(1.02em * 4);
    font-size: clamp(39px, 10.5vw, 46px);
  }

  .hero-copy {
    min-height: calc(1.55em * 3);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .feature-grid,
  .service-grid,
  .destination-grid,
  .coverage-band .coverage-list,
  .leadership,
  .principles,
  .contact-section,
  .page-layout,
  .two-column-list,
  .process-grid,
  .related-grid,
  .team-grid,
  .team-strip,
  .sustainability-band,
  .flavors-band,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid,
  .article-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure:first-child,
  .gallery-grid figure:nth-child(6) {
    grid-column: auto;
  }

  .hero-metrics div + div,
  .trust-strip span + span {
    border-left: 0;
    border-top: 1px solid rgba(52, 51, 51, 0.08);
  }

  .team-strip img:nth-child(even) {
    margin-top: 0;
  }

  .side-card {
    position: static;
  }

  .trust-strip span {
    min-height: 62px;
  }

  .trust-strip {
    margin-top: -18px;
  }

  .hero-metrics {
    display: none;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 28px 22px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom a {
    width: fit-content;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-inner {
    padding: 124px 0 52px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 10.8vw, 48px);
  }

  .page-intro {
    font-size: 17px;
  }
}

/* 2026 visual refresh */
:root {
  --shadow: 0 18px 48px rgba(18, 52, 58, 0.12);
  --shadow-soft: 0 12px 32px rgba(52, 51, 51, 0.07);
  --shadow-premium: 0 24px 64px rgba(18, 52, 58, 0.16);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --space-page: min(1180px, calc(100% - 40px));
}

body {
  background: linear-gradient(180deg, #f7f6f2 0%, var(--paper) 58%, #f8f7f4 100%);
}

body::before {
  opacity: 0.28;
  background-size: 56px 56px;
}

a,
button,
summary,
select {
  touch-action: manipulation;
}

a,
button,
summary {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  width: min(1200px, calc(100% - 32px));
  min-height: 70px;
  margin-top: 16px;
  padding: 10px 12px 10px 18px;
  gap: 24px;
  border-radius: 16px;
  background: rgba(0, 73, 86, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 38px rgba(18, 52, 58, 0.14);
  transition:
    min-height 220ms ease,
    margin-top 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  margin-top: 8px;
  background: rgba(0, 73, 86, 0.97);
  box-shadow: 0 12px 34px rgba(18, 52, 58, 0.2);
}

.brand img {
  width: 224px;
}

.main-nav {
  gap: 22px;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.main-nav a[aria-current="page"] {
  color: var(--white);
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
  transition:
    transform 200ms ease,
    opacity 160ms ease;
}

.hero {
  height: min(820px, 92dvh);
  min-height: 700px;
  align-items: center;
}

.hero::before {
  height: 150px;
}

.hero::after {
  opacity: 0.18;
  background:
    linear-gradient(116deg, transparent 0 64%, rgba(160, 129, 81, 0.34) 64.05% 64.2%, transparent 64.3%),
    linear-gradient(116deg, transparent 0 72%, rgba(131, 172, 171, 0.28) 72.05% 72.2%, transparent 72.3%);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 62, 74, 0.94) 0%, rgba(0, 69, 82, 0.76) 46%, rgba(18, 52, 58, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 52, 58, 0.66) 0%, transparent 56%);
}

.hero-content {
  width: var(--space-page);
  padding: 132px 0 88px;
}

.hero-content h1 {
  max-width: 780px;
  min-height: 0;
  margin-bottom: 20px;
  font-size: 66px;
  line-height: 1.01;
}

.hero-content .eyebrow,
.hero-copy {
  min-height: 0;
}

.hero-copy {
  max-width: 650px;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 26px;
}

.hero-metrics {
  width: min(680px, 100%);
  margin-top: 30px;
  border-radius: 12px;
  background: rgba(237, 236, 228, 0.1);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.hero-metrics div {
  padding: 14px 18px;
}

.hero-metrics strong {
  font-size: 32px;
}

.btn {
  min-height: 50px;
  padding: 13px 20px;
  box-shadow: 0 10px 28px rgba(52, 51, 51, 0.1);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.trust-strip {
  margin-top: -34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(52, 51, 51, 0.08);
}

.trust-strip span {
  min-height: 76px;
  padding: 13px 14px;
  background: transparent;
  font-size: 13px;
}

.trust-strip span::before {
  width: 7px;
  height: 7px;
  margin-bottom: 7px;
}

.logo-marquee-section {
  margin-top: 18px;
  padding-top: 16px;
}

.logo-track span {
  min-width: 176px;
  height: 58px;
  border-radius: 10px;
  box-shadow: none;
}

.section {
  padding: 76px 0;
}

.section::before {
  display: none;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

h1,
h2 {
  text-wrap: balance;
}

h2 {
  font-size: 48px;
}

.section p {
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.7;
}

.split {
  gap: 60px;
}

.feature-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.feature-grid div {
  min-height: 184px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.feature-grid div:hover {
  transform: none;
  background: var(--white);
  box-shadow: none;
}

.cta-panel,
.side-card {
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  box-shadow: var(--shadow);
}

.cta-panel::before {
  display: none;
}

.dark {
  padding-block: 86px;
  background: linear-gradient(145deg, #005565 0%, #12343a 100%);
}

.dark::before,
.dark::after {
  display: none;
}

.service-grid {
  gap: 16px;
}

.service-grid article {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.service-grid article::after {
  height: 46%;
}

.service-grid article img {
  aspect-ratio: 16 / 9;
}

.service-grid article h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-grid article:focus-within {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.editorial {
  gap: 64px;
}

.image-stack {
  gap: 10px;
}

.image-stack::before {
  display: none;
}

.image-stack img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.image-stack img:last-child {
  margin-bottom: 24px;
}

.itinerary-map {
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.destination-grid {
  gap: 14px;
}

.destination-grid article,
.destination-grid a {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.destination-grid article:hover,
.destination-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.destination-grid a::after {
  content: "View";
  top: 14px;
  right: 14px;
}

.section.coverage-band {
  padding: 76px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.coverage-list {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage-list div {
  min-height: 0;
  padding: 26px 28px 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.coverage-list div + div {
  border-left: 1px solid var(--line);
}

.coverage-list div::before {
  left: 28px;
  width: 42px;
  height: 2px;
}

.coverage-list div:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.leadership {
  gap: 38px;
}

.leader-card {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.principles {
  gap: 10px;
}

.principles span,
.pillar-grid div {
  border-radius: 12px;
  box-shadow: none;
}

.principles span:hover,
.pillar-grid div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.flavors-band img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.inline-cta span {
  transition: transform 180ms ease;
}

.inline-cta:hover span {
  transform: translateX(4px);
}

.team-strip {
  gap: 10px;
}

.team-strip img {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.team-strip img:nth-child(even) {
  margin-top: 0;
}

.resource-card,
.gallery-grid figure,
.article-card {
  border-radius: 12px;
}

.article-card {
  min-height: 250px;
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 129, 81, 0.38);
  box-shadow: var(--shadow-soft);
}

.article-callout {
  margin-top: 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark .eyebrow,
.contact-section .eyebrow,
.cta-panel .panel-kicker,
.side-card .panel-kicker {
  color: var(--stone);
}

.header-call {
  color: var(--navy-deep);
  background: var(--gold-bright);
}

.article-callout strong {
  color: var(--navy);
}

.contact-section {
  margin-top: 48px;
  padding: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: var(--shadow);
}

.contact-section::before {
  opacity: 0.45;
}

.contact-section h2 {
  font-size: 48px;
}

.site-footer {
  margin-top: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, #005565, #12343a);
  box-shadow: var(--shadow);
}

.page-hero {
  min-height: 540px;
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 69, 82, 0.94), rgba(0, 69, 82, 0.62), rgba(18, 52, 58, 0.2)),
    linear-gradient(0deg, rgba(18, 52, 58, 0.64), transparent 58%);
}

.page-hero-inner {
  padding: 132px 0 64px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: 64px;
}

.page-layout {
  padding: 72px 0;
}

.page-layout::before {
  display: none;
}

.page-main h2 {
  font-size: 44px;
}

.two-column-list {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.two-column-list li {
  min-height: 76px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.process-grid,
.related-grid,
.team-grid {
  gap: 12px;
}

.process-grid article,
.related-grid a,
.faq details,
.team-grid article,
.contact-form {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.faq details {
  padding: 18px 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
  border-radius: 8px;
}

@media (max-height: 840px) and (min-width: 981px) {
  .hero {
    height: 720px;
    min-height: 720px;
  }

  .hero-content {
    padding: 116px 0 70px;
  }

  .hero-content h1 {
    max-width: 760px;
    min-height: 0;
    font-size: 58px;
  }

  .hero-copy {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  :root {
    --space-page: min(100% - 32px, 760px);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    color: var(--white);
    background: rgba(0, 73, 86, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .main-nav a {
    padding: 10px 12px;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .site-header.is-menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    min-height: 760px;
  }

  .hero-content h1 {
    max-width: 700px;
    font-size: 56px;
  }

  h2,
  .contact-section h2,
  .page-main h2 {
    font-size: 42px;
  }

  .coverage-list div + div {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --space-page: calc(100% - 28px);
  }

  body {
    background: #f6f5f1;
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 64px;
    margin-top: 10px;
    padding: 8px 9px 8px 12px;
    border-radius: 14px;
  }

  .brand img {
    width: 142px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .header-call {
    min-height: 44px;
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero {
    height: auto;
    min-height: 800px;
    align-items: end;
  }

  .hero-content {
    padding: 132px 0 56px;
  }

  .hero-content::before {
    width: 58px;
    margin-bottom: 16px;
  }

  .hero-content h1 {
    min-height: 0;
    font-size: 42px;
    line-height: 1.02;
  }

  .hero-copy {
    min-height: 0;
    font-size: 17px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -22px;
  }

  .trust-strip span {
    min-height: 74px;
    font-size: 12px;
  }

  .trust-strip span:nth-child(5) {
    grid-column: 1 / -1;
  }

  .logo-marquee-section {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

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

  h2,
  .contact-section h2,
  .page-main h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .section p,
  .page-main p,
  .page-main li,
  .faq p {
    font-size: 16px;
  }

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

  .feature-grid div {
    min-height: 0;
    padding: 22px;
  }

  .dark {
    padding: 58px 14px;
  }

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

  .service-grid article img {
    aspect-ratio: 16 / 8.5;
  }

  .editorial {
    gap: 34px;
  }

  .image-stack {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .image-stack img:last-child {
    margin-bottom: 18px;
  }

  .itinerary-map img {
    height: 250px;
  }

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

  .destination-grid article,
  .destination-grid a {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    min-height: 190px;
  }

  .destination-grid article img,
  .destination-grid a img {
    grid-row: 1 / 4;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  .destination-grid article span,
  .destination-grid article h3,
  .destination-grid article p,
  .destination-grid a span,
  .destination-grid a h3,
  .destination-grid a p {
    margin-inline: 16px;
  }

  .destination-grid article span,
  .destination-grid a span {
    margin-top: 18px;
  }

  .destination-grid article p,
  .destination-grid a p {
    margin-bottom: 16px;
    -webkit-line-clamp: 3;
  }

  .destination-grid a::after {
    display: none;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-list div + div {
    border-top: 1px solid var(--line);
  }

  .leadership {
    gap: 28px;
  }

  .principles,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principles span,
  .pillar-grid div {
    min-height: 132px;
    padding: 18px 12px;
  }

  .team-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    width: calc(100% - 20px);
    margin-top: 26px;
    padding: 30px 22px;
  }

  .site-footer {
    width: calc(100% - 20px);
    margin-bottom: 10px;
    padding: 28px 22px;
    border-radius: 14px;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero-inner {
    padding: 122px 0 48px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-layout {
    padding: 56px 0;
  }

  .two-column-list,
  .process-grid,
  .related-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .article-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
