:root {
  --ink: #081b28;
  --ink-soft: #102c3b;
  --paper: #f2f0e8;
  --paper-bright: #faf9f5;
  --sand: #d9d3c5;
  --line: rgba(8, 27, 40, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --accent: #bf6f42;
  --white: #ffffff;
  --body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --container: min(88rem, calc(100vw - 3rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 2rem 5rem rgba(3, 22, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.concierge-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e3a780;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.96;
}

h3 {
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.lede {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    color 260ms var(--ease),
    background 260ms var(--ease),
    border-color 260ms var(--ease),
    transform 260ms var(--ease);
}

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

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-light {
  color: var(--ink);
  background: var(--paper-bright);
}

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

.button-dark {
  gap: 2rem;
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--accent);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.button-outline-light:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  padding-block: 0.2rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.text-link::after {
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1.35);
}

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

[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 850ms var(--ease),
    transform 850ms var(--ease);
}

[data-reveal][data-delay="1"] {
  transition-delay: 110ms;
}

[data-reveal][data-delay="2"] {
  transition-delay: 220ms;
}

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

/* Header */

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    color 320ms var(--ease),
    background 320ms var(--ease),
    border-color 320ms var(--ease),
    transform 320ms var(--ease);
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(242, 240, 232, 0.9);
  box-shadow: 0 0.5rem 2rem rgba(3, 22, 34, 0.05);
  backdrop-filter: blur(18px) saturate(120%);
}

.nav-shell {
  position: relative;
  z-index: 51;
  display: grid;
  width: var(--container);
  min-height: 5.8rem;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: minmax(14rem, 1fr) auto minmax(14rem, 1fr);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.93);
}

.brand-mark img {
  width: 2.25rem;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.88rem;
  font-weight: 600;
}

.brand-copy span {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  opacity: 0.68;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.8vw, 2.8rem);
}

.desktop-nav a {
  position: relative;
  padding-block: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
}

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

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 1rem;
  border: 1px solid currentColor;
  border-radius: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  transition:
    color 260ms var(--ease),
    background 260ms var(--ease),
    transform 260ms var(--ease);
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-cta:hover {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  min-height: 100dvh;
  overflow: hidden;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 18s ease-out both;
}

@keyframes hero-breathe {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 20, 31, 0.78) 0%, rgba(3, 20, 31, 0.32) 48%, rgba(3, 20, 31, 0.12) 74%),
    linear-gradient(0deg, rgba(3, 20, 31, 0.8) 0%, transparent 55%);
}

.hero-grain {
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: clamp(7.5rem, 11vh, 9.5rem);
}

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

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(5rem, 10.5vw, 10.5rem);
  font-weight: 600;
  line-height: 0.82;
}

.hero h1 em {
  display: block;
  margin-left: clamp(3rem, 10vw, 10rem);
  color: #f0c3a1;
  font-style: normal;
  font-weight: 600;
}

.hero-bottom {
  display: grid;
  max-width: 55rem;
  margin-top: clamp(3rem, 5vw, 5rem);
  margin-left: clamp(0rem, 10vw, 10rem);
  align-items: end;
  gap: 2.5rem;
  grid-template-columns: 1.25fr 1fr;
}

.hero-bottom > p {
  max-width: 40rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero-rail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 4.3rem;
  padding-inline: max(1.5rem, calc((100vw - min(88rem, calc(100vw - 3rem))) / 2));
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #7ec7a4;
  box-shadow: 0 0 0 0.25rem rgba(126, 199, 164, 0.15);
}

.hero-rail-line {
  height: 1px;
  flex: 1;
  margin-inline: 1.5rem;
  background: rgba(255, 255, 255, 0.25);
}

/* Intro */

.intro {
  overflow: hidden;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.75fr);
}

.intro-grid h2 {
  max-width: 13ch;
}

.intro-copy {
  padding-top: 2.25rem;
}

.intro-copy p:not(.lede) {
  max-width: 32rem;
  color: rgba(8, 27, 40, 0.67);
}

.intro-copy .text-link {
  margin-top: 1.7rem;
}

.metrics {
  display: grid;
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  display: flex;
  min-height: 9.5rem;
  padding: 1.4rem;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line);
}

.metric:first-child {
  border-left: 0;
}

.metric-value {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.metric-label {
  color: rgba(8, 27, 40, 0.58);
  font-size: 0.75rem;
}

/* Services */

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(47, 92, 109, 0.35), transparent 28rem),
    var(--ink);
}

.services::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 30%, black 75%, transparent);
  pointer-events: none;
}

.section-heading {
  position: relative;
  display: grid;
  align-items: end;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
}

.section-heading > p {
  max-width: 33rem;
  margin-bottom: 0.5rem;
}

.services-heading > p {
  color: rgba(255, 255, 255, 0.63);
}

.service-grid {
  position: relative;
  display: grid;
  margin-top: clamp(4rem, 7vw, 7rem);
  gap: 1px;
  background: var(--line-light);
  grid-template-columns: 1.25fr 0.75fr;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 26rem;
  padding: clamp(2rem, 4vw, 4rem);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--ink);
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.025);
  content: "";
  opacity: 0;
  transition: opacity 350ms var(--ease);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-featured {
  min-height: 35rem;
  background: #e8e3d8;
  color: var(--ink);
  grid-row: span 2;
}

.service-card-wide {
  min-height: 22rem;
  flex-direction: row;
  align-items: flex-end;
  grid-column: 1 / -1;
  background: var(--ink-soft);
}

.service-card-wide > div {
  max-width: 55rem;
}

.service-card-image {
  min-height: 24rem;
  padding: 0;
}

.service-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 900ms var(--ease);
}

.service-card-image:hover img {
  transform: scale(1.04);
}

.service-card-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 20, 31, 0.72), transparent 60%);
  content: "";
}

.service-image-caption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.service-image-caption span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
  text-transform: uppercase;
}

.service-image-caption strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}

.service-number {
  font-family: var(--display);
  font-size: 1.25rem;
  opacity: 0.55;
}

.service-card h3 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 600;
  line-height: 0.96;
}

.service-card p {
  max-width: 35rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.service-card-featured p {
  color: rgba(8, 27, 40, 0.68);
}

.service-kicker {
  margin-bottom: 1.1rem !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  margin: 2.5rem 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.service-card li {
  padding-block: 0.72rem;
  border-top: 1px solid rgba(8, 27, 40, 0.16);
  font-size: 0.82rem;
}

.circle-link {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 1.4rem;
  transition:
    color 280ms var(--ease),
    background 280ms var(--ease),
    transform 280ms var(--ease);
}

.circle-link:hover {
  color: var(--ink);
  background: var(--white);
  transform: rotate(45deg);
}

.service-list {
  position: relative;
  display: grid;
  padding-top: 3.5rem;
  gap: 2rem;
  grid-template-columns: 12rem 1fr;
}

.service-list > p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-list span {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

/* Real vessel archive */

.vessel-proof {
  overflow: hidden;
  background: #e8e3d8;
}

.vessel-proof-heading > div:last-child {
  max-width: 32rem;
  padding-bottom: 0.35rem;
}

.vessel-proof-heading > div:last-child > p {
  margin-bottom: 1.5rem;
  color: rgba(8, 27, 40, 0.64);
}

.vessel-gallery {
  display: grid;
  margin-top: clamp(4rem, 7vw, 7rem);
  gap: 1rem;
  grid-auto-rows: 8rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.vessel-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #9ba6aa;
  grid-column: 1 / 6;
  grid-row: 5 / 8;
}

.vessel-shot-featured {
  grid-column: 1 / 9;
  grid-row: 1 / 5;
}

.vessel-shot-tall {
  grid-column: 9 / 13;
  grid-row: 1 / 5;
}

.vessel-shot-wide {
  grid-column: 6 / 13;
  grid-row: 5 / 8;
}

.vessel-shot-detail {
  grid-column: 3 / 11;
  grid-row: 8 / 11;
}

.vessel-shot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 20, 31, 0.7), transparent 48%);
  content: "";
  pointer-events: none;
}

.vessel-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
  transition:
    filter 650ms var(--ease),
    transform 900ms var(--ease);
}

.vessel-shot:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.vessel-shot-tall img {
  object-position: 42% center;
}

.vessel-shot-wide img {
  object-position: center 46%;
}

.vessel-shot figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
}

.vessel-shot figcaption strong {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.vessel-shot figcaption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-credit {
  margin-top: 1.4rem;
  color: rgba(8, 27, 40, 0.48);
  font-size: 0.67rem;
}

/* Process */

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.process::before {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 30%, black 78%, transparent);
  pointer-events: none;
}

.process-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.process-track {
  position: relative;
  display: grid;
  margin-top: clamp(4rem, 7vw, 7rem);
  padding: 1px;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(2, 1fr);
}

.process-track article {
  position: relative;
  display: flex;
  min-height: 21rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  transition: background 300ms var(--ease);
}

.process-track article:hover {
  background: var(--ink-soft);
}

.process-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.process-track span {
  color: #e3a780;
  font-family: var(--display);
  font-size: 1.2rem;
}

.process-step small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-track h3 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 0.96;
}

.process-track p {
  max-width: 28rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

/* Destination */

.destination {
  display: grid;
  min-height: 56rem;
  color: var(--white);
  background: var(--ink-soft);
  grid-template-columns: minmax(0, 1.12fr) minmax(29rem, 0.88fr);
}

.destination-image-wrap {
  position: relative;
  min-height: 48rem;
  overflow: hidden;
}

.destination-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(16, 44, 59, 0.58));
  content: "";
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
}

.destination-coordinate {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 2rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(5, 27, 38, 0.3);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.destination-content {
  display: flex;
  padding: clamp(4rem, 7vw, 8rem) clamp(2rem, 5vw, 6rem);
  flex-direction: column;
  justify-content: center;
}

.destination-content h2 {
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.destination-content h2 em {
  color: #e3a780;
  font-style: normal;
  font-weight: 600;
}

.destination-lede {
  max-width: 38rem;
  margin: 2.5rem 0 3rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.destination-points {
  margin-bottom: 3.5rem;
}

.destination-points > div {
  display: grid;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  gap: 1.5rem;
  grid-template-columns: 2rem 1fr;
}

.destination-points span {
  color: #e3a780;
  font-family: var(--display);
}

.destination-points p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.destination-content .button {
  align-self: flex-start;
}

/* About */

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(4rem, 10vw, 11rem);
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
}

.about-copy h2 {
  max-width: 11ch;
}

.about-copy .lede {
  max-width: 43rem;
  margin-top: 3rem;
}

.about-copy > p:not(.lede, .eyebrow) {
  max-width: 38rem;
  color: rgba(8, 27, 40, 0.63);
}

.about-copy .text-link {
  margin-top: 1.8rem;
}

.founder-card {
  margin: 0;
}

.founder-image {
  position: relative;
  aspect-ratio: 0.95;
  overflow: hidden;
  background: #c7c1b3;
}

.founder-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  content: "";
  pointer-events: none;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03);
  transform: scale(1.01);
}

.founder-card figcaption {
  position: relative;
  width: calc(100% - 2rem);
  margin-top: -3.5rem;
  margin-left: 2rem;
  padding: 2rem;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.founder-card figcaption span {
  color: #e3a780;
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.founder-card figcaption strong {
  display: block;
  margin: 0.4rem 0 1rem;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
}

.founder-card figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

/* Proof */

.proof {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 80%, rgba(53, 95, 111, 0.28), transparent 30rem),
    #071722;
}

.proof-grid {
  display: grid;
  align-items: start;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 1.12fr);
}

.proof-intro h2 {
  max-width: 10ch;
}

.quote {
  position: relative;
  margin: 0;
  padding-top: 6rem;
}

.quote-mark {
  position: absolute;
  top: -1rem;
  left: -0.2rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: 11rem;
  line-height: 1;
}

.quote > p {
  position: relative;
  margin-bottom: 3rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.quote footer {
  display: flex;
  flex-direction: column;
}

.quote footer strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.quote footer span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.testimonial-strip,
.partner-strip {
  display: grid;
  margin-top: clamp(5rem, 9vw, 9rem);
  padding-top: 1.5rem;
  align-items: start;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 12rem 1fr;
}

.testimonial-strip > p,
.partner-strip > p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.testimonial-strip > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}

.testimonial-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 1.35rem;
}

.partner-strip {
  margin-top: 4rem;
}

.partner-logos {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: repeat(4, minmax(6rem, 1fr));
}

.partner-logos img {
  max-width: 9rem;
  max-height: 4rem;
  margin-inline: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.62;
  transition: opacity 260ms ease;
}

.partner-logos img:hover {
  opacity: 0.95;
}

/* Contact */

.contact {
  background: #e8e3d8;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: clamp(4rem, 8vw, 9rem);
  grid-template-columns: minmax(18rem, 0.7fr) minmax(28rem, 1.3fr);
}

.contact-intro {
  position: sticky;
  top: 8rem;
}

.contact-intro h2 {
  max-width: 9ch;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 30rem;
  margin-top: 2.5rem;
  color: rgba(8, 27, 40, 0.62);
}

.contact-direct {
  display: grid;
  margin-top: 4rem;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-direct a {
  display: flex;
  padding-block: 1.2rem;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.contact-direct a:hover strong {
  color: var(--accent);
}

.contact-direct span {
  margin-bottom: 0.25rem;
  color: rgba(8, 27, 40, 0.48);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-direct strong {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 220ms ease;
}

.contact-concierge {
  display: grid;
  width: 100%;
  min-height: 4.4rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(8, 27, 40, 0.2);
  border-radius: 0.35rem;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  grid-template-columns: auto 1fr auto;
  text-align: left;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.contact-concierge:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}

.contact-concierge-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
}

.contact-concierge-icon svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-concierge small,
.contact-concierge strong {
  display: block;
}

.contact-concierge small {
  margin-bottom: 0.15rem;
  color: rgba(8, 27, 40, 0.48);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-concierge:hover small {
  color: rgba(255, 255, 255, 0.56);
}

.contact-concierge strong {
  font-size: 0.84rem;
  font-weight: 600;
}

.contact-form {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--paper-bright);
  box-shadow: 0 2rem 6rem rgba(52, 45, 34, 0.1);
}

.form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: block;
  margin-bottom: 2rem;
}

.contact-form label > span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(8, 27, 40, 0.68);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(8, 27, 40, 0.25);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  transition: border-color 220ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #a6423e;
}

.contact-form small {
  display: block;
  min-height: 1rem;
  margin-top: 0.35rem;
  color: #a6423e;
  font-size: 0.68rem;
}

.form-submit {
  display: flex;
  margin-top: 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.form-submit p {
  max-width: 18rem;
  margin: 0;
  color: rgba(8, 27, 40, 0.47);
  font-size: 0.68rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 1.25rem 0 0;
  color: var(--accent);
  font-size: 0.78rem;
}

/* Footer */

.site-footer {
  padding-top: 5rem;
  color: var(--white);
  background: #06141e;
}

.footer-main {
  display: grid;
  padding-bottom: 5rem;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: 1.1fr 1fr 0.75fr;
}

.brand-footer .brand-mark {
  background: var(--paper-bright);
}

.footer-brand p {
  max-width: 21rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.2;
}

.footer-links {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-links span,
.site-footer address > span {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  transition: color 220ms ease;
}

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

.site-footer address {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.support-dock {
  position: fixed;
  z-index: 45;
  right: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  min-height: 4rem;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.55rem;
  color: var(--white);
  background: rgba(8, 27, 40, 0.94);
  box-shadow: 0 1.2rem 3.5rem rgba(3, 22, 34, 0.28);
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.concierge-open .support-dock {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}

.menu-open .support-dock {
  opacity: 0;
  pointer-events: none;
}

.support-dock button,
.support-dock a {
  min-height: 4rem;
}

.support-dock-concierge,
.support-dock-call {
  display: flex;
  padding: 0.65rem 0.9rem;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  transition: background 220ms ease;
}

.support-dock-concierge {
  padding-right: 1.05rem;
  cursor: pointer;
}

.support-dock-concierge:hover,
.support-dock-call:hover {
  background: var(--accent);
}

.support-dock-call {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.support-dock-icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-bright);
}

.support-dock-icon svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.support-dock small,
.support-dock strong {
  display: block;
  white-space: nowrap;
}

.support-dock small {
  margin-bottom: 0.08rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.support-dock strong {
  font-size: 0.76rem;
  font-weight: 600;
}

.support-dock-call .status-dot {
  flex: 0 0 auto;
}

/* Concierge */

.concierge-dialog {
  position: fixed;
  inset: auto 1.4rem 6.2rem auto;
  width: min(30rem, calc(100vw - 2rem));
  height: min(44rem, calc(100dvh - 8rem));
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.85rem;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 2.2rem 6rem rgba(3, 22, 34, 0.38);
  overflow: hidden;
}

.concierge-dialog[open] {
  display: block;
  animation: concierge-enter 360ms var(--ease) both;
}

.concierge-dialog::backdrop {
  background: rgba(2, 14, 23, 0.42);
  backdrop-filter: blur(3px);
}

@keyframes concierge-enter {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.concierge-shell {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto;
}

.concierge-header {
  display: flex;
  min-height: 5.2rem;
  padding: 0.9rem 1rem 0.9rem 1.15rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  background: var(--ink);
}

.concierge-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
}

.concierge-avatar {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-bright);
}

.concierge-avatar img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.concierge-identity p,
.concierge-identity h2 {
  margin: 0;
}

.concierge-identity p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concierge-identity h2 {
  margin-top: 0.12rem;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.concierge-close {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 200ms ease;
}

.concierge-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.concierge-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.95rem;
  height: 1px;
  background: currentColor;
}

.concierge-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.concierge-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.concierge-safety {
  margin: 0;
  padding: 0.65rem 1.15rem;
  border-bottom: 1px solid var(--line);
  color: rgba(8, 27, 40, 0.59);
  background: #e9e4d9;
  font-size: 0.62rem;
  line-height: 1.45;
}

.concierge-feed {
  display: flex;
  min-height: 0;
  padding: 1.15rem;
  flex-direction: column;
  gap: 0.8rem;
  background: #f4f1e9;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(8, 27, 40, 0.25) transparent;
}

.concierge-message {
  display: flex;
  max-width: 88%;
  flex-direction: column;
  align-self: flex-start;
  gap: 0.25rem;
}

.concierge-message-user {
  align-self: flex-end;
}

.concierge-message-label {
  padding-inline: 0.25rem;
  color: rgba(8, 27, 40, 0.42);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concierge-message-user .concierge-message-label {
  align-self: flex-end;
}

.concierge-message-bubble {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(8, 27, 40, 0.09);
  border-radius: 0.75rem 0.75rem 0.75rem 0.2rem;
  color: rgba(8, 27, 40, 0.82);
  background: var(--paper-bright);
  box-shadow: 0 0.4rem 1.4rem rgba(52, 45, 34, 0.06);
  font-size: 0.78rem;
  line-height: 1.55;
  white-space: pre-line;
}

.concierge-message-user .concierge-message-bubble {
  color: var(--white);
  border-color: var(--ink);
  border-radius: 0.75rem 0.75rem 0.2rem 0.75rem;
  background: var(--ink);
}

.concierge-summary {
  width: 100%;
  padding: 0.95rem;
  border: 1px solid rgba(8, 27, 40, 0.14);
  border-radius: 0.65rem;
  background: var(--paper-bright);
  box-shadow: 0 0.6rem 1.8rem rgba(52, 45, 34, 0.07);
}

.concierge-summary > p {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.concierge-summary dl {
  display: grid;
  margin: 0;
  gap: 0.65rem;
}

.concierge-summary dl > div {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(8, 27, 40, 0.08);
}

.concierge-summary dt {
  color: rgba(8, 27, 40, 0.45);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.concierge-summary dd {
  margin: 0.15rem 0 0;
  color: rgba(8, 27, 40, 0.82);
  font-size: 0.72rem;
  line-height: 1.45;
}

.concierge-summary-actions {
  display: grid;
  margin-top: 0.9rem;
  gap: 0.5rem;
  grid-template-columns: 1fr auto;
}

.concierge-summary-actions button,
.concierge-summary-actions a {
  display: inline-flex;
  min-height: 2.9rem;
  padding: 0.65rem 0.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
}

.concierge-summary-actions button {
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.concierge-summary-actions a {
  color: var(--ink);
  background: transparent;
}

.concierge-quick-actions {
  display: flex;
  min-height: 3.2rem;
  max-height: 6.25rem;
  padding: 0.65rem 1rem;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  border-top: 1px solid rgba(8, 27, 40, 0.08);
  background: var(--paper-bright);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.concierge-quick-actions::-webkit-scrollbar {
  display: none;
}

.concierge-quick-actions button {
  min-height: 2.2rem;
  padding: 0.48rem 0.7rem;
  flex: 0 0 auto;
  border: 1px solid rgba(8, 27, 40, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.concierge-quick-actions button:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.concierge-composer {
  display: grid;
  padding: 0.75rem;
  align-items: end;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
  grid-template-columns: minmax(0, 1fr) auto;
}

.concierge-composer textarea {
  width: 100%;
  max-height: 7.5rem;
  min-height: 2.9rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(8, 27, 40, 0.17);
  border-radius: 0.45rem;
  outline: 0;
  color: var(--ink);
  background: #f7f5ef;
  font-size: 0.76rem;
  line-height: 1.45;
  resize: none;
}

.concierge-composer textarea:focus {
  border-color: var(--accent);
}

.concierge-composer button {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0.45rem;
  color: var(--white);
  background: var(--accent);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.concierge-composer button:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.concierge-composer button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.concierge-composer button svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.concierge-footer {
  display: flex;
  min-height: 2.2rem;
  padding: 0.45rem 0.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(8, 27, 40, 0.42);
  background: var(--paper-bright);
  font-size: 0.56rem;
}

.concierge-footer a {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

/* Legal pages */

.legal-page {
  min-height: 100dvh;
  padding: 9rem 0 6rem;
  background: var(--paper-bright);
}

.legal-shell {
  max-width: 48rem;
}

.legal-shell h1 {
  margin-bottom: 3rem;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.legal-shell h2 {
  margin: 3rem 0 1rem;
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.legal-shell p,
.legal-shell li {
  color: rgba(8, 27, 40, 0.68);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 3rem;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 72rem) {
  :root {
    --container: min(100% - 2.5rem, 72rem);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .menu-toggle span {
    position: absolute;
    width: 1rem;
    height: 1px;
    background: currentColor;
    transition: transform 250ms var(--ease);
  }

  .menu-toggle span:first-child {
    transform: translateY(-0.2rem);
  }

  .menu-toggle span:last-child {
    transform: translateY(0.2rem);
  }

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

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

  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    padding: 8rem 1.5rem 3rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    visibility: hidden;
    transition:
      opacity 300ms var(--ease),
      transform 300ms var(--ease),
      visibility 0s linear 300ms;
  }

  .mobile-nav.is-open {
    z-index: 49;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-nav a {
    padding-block: 0.25rem;
    font-family: var(--display);
    font-size: clamp(3rem, 9vw, 5rem);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .site-header.menu-active {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--ink);
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-bottom {
    margin-left: 0;
  }

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

  .destination-image-wrap {
    min-height: 60vw;
    max-height: 48rem;
  }

  .destination-image-wrap::after {
    background: linear-gradient(0deg, rgba(16, 44, 59, 0.65), transparent 45%);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (max-width: 52rem) {
  :root {
    --container: calc(100% - 2rem);
  }

  .section {
    padding-block: 5.5rem;
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 50rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 20, 31, 0.68), rgba(3, 20, 31, 0.1)),
      linear-gradient(0deg, rgba(3, 20, 31, 0.87) 0%, rgba(3, 20, 31, 0.15) 65%);
  }

  .hero-content {
    padding-bottom: 7.5rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 17.5vw, 5.2rem);
    line-height: 0.9;
  }

  .hero h1 em {
    margin-left: 1rem;
  }

  .hero-bottom,
  .intro-grid,
  .section-heading,
  .about-grid,
  .proof-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-rail {
    font-size: 0.56rem;
  }

  .hero-rail span:last-child,
  .hero-rail-line {
    display: none;
  }

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

  .metric:nth-child(3) {
    border-left: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-card,
  .service-card-featured {
    min-height: 28rem;
    grid-row: auto;
  }

  .service-card-wide {
    min-height: 25rem;
    flex-direction: column;
    align-items: flex-start;
    grid-column: auto;
  }

  .service-card-wide .circle-link {
    margin-top: 2rem;
  }

  .service-list,
  .testimonial-strip,
  .partner-strip {
    grid-template-columns: 1fr;
  }

  .vessel-gallery {
    gap: 0.75rem;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .vessel-shot,
  .vessel-shot-featured,
  .vessel-shot-tall,
  .vessel-shot-wide,
  .vessel-shot-detail {
    aspect-ratio: 4 / 3;
    grid-column: 1;
    grid-row: auto;
  }

  .vessel-shot img,
  .vessel-shot-tall img,
  .vessel-shot-wide img {
    object-position: center;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .destination-image-wrap {
    min-height: 30rem;
  }

  .destination-content {
    padding: 5rem 1rem;
  }

  .founder-card {
    max-width: 30rem;
  }

  .contact-intro {
    position: static;
  }

  .footer-links {
    max-width: 28rem;
  }
}

@media (max-width: 36rem) {
  html {
    scroll-padding-top: 5rem;
  }

  .nav-shell {
    min-height: 4.9rem;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand-mark img {
    width: 1.9rem;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    min-height: 48rem;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .hero-bottom > p {
    font-size: 0.95rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .metrics,
  .process-track,
  .partner-logos,
  .form-row {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(3) {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .process-track article,
  .process-track article:nth-child(3) {
    min-height: auto;
    padding: 1.6rem;
  }

  .process-track h3 {
    margin-top: 4rem;
  }

  .service-card {
    padding: 1.6rem;
  }

  .service-card h3 {
    font-size: 2.8rem;
  }

  .destination-image-wrap {
    min-height: 24rem;
  }

  .founder-card figcaption {
    width: calc(100% - 1rem);
    margin-left: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

  .footer-bottom {
    padding-block: 1.4rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .support-dock {
    z-index: 51;
    top: max(0.95rem, env(safe-area-inset-top));
    right: 4.65rem;
    bottom: auto;
    left: auto;
    width: 3rem;
    min-height: 3rem;
    border-radius: 50%;
  }

  .support-dock-concierge {
    width: 3rem;
    min-height: 3rem;
    padding: 0;
    flex: 0 0 3rem;
    justify-content: center;
  }

  .support-dock-call {
    display: none;
  }

  .support-dock-concierge > span:not(.support-dock-icon) {
    display: none;
  }

  .support-dock-icon {
    width: 2.3rem;
    height: 2.3rem;
  }

  .concierge-dialog {
    inset: auto 0 0 0;
    width: 100%;
    height: min(88dvh, 46rem);
    border-radius: 1rem 1rem 0 0;
  }

  .concierge-shell {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .concierge-quick-actions {
    max-height: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .concierge-message {
    max-width: 92%;
  }

  .concierge-footer {
    gap: 0.5rem;
  }

  .concierge-footer span {
    max-width: 11rem;
  }

  .concierge-summary-actions {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 22rem) {
  .site-header .brand-copy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Multi-page site */

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

.mobile-nav a[aria-current="page"] {
  color: #e3a780;
}

.service-card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.5rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card-featured .service-card-link {
  color: var(--white);
}

.service-card-link span {
  transition: transform 220ms var(--ease);
}

.service-card-link:hover span {
  transform: translate(0.2rem, -0.2rem);
}

.proof-action {
  margin-top: 2rem;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: clamp(36rem, 72vh, 54rem);
  overflow: hidden;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
}

.page-hero-compact {
  min-height: clamp(29rem, 58vh, 40rem);
}

.page-hero-image,
.page-hero-shade,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 19, 30, 0.86) 0%, rgba(3, 19, 30, 0.56) 48%, rgba(3, 19, 30, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 19, 30, 0.82) 0%, rgba(3, 19, 30, 0.08) 70%);
}

.page-hero::after {
  z-index: 2;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%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='.28'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  padding: 11rem 0 clamp(4rem, 7vw, 7rem);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
}

.page-hero-main {
  max-width: 67rem;
}

.page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.8rem, 6.8vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.page-hero-compact h1 {
  font-size: clamp(3.5rem, 6vw, 5.4rem);
}

.page-hero-lede {
  max-width: 33rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.6;
}

.page-hero-note {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.55;
}

.page-intro {
  background: var(--paper-bright);
}

.page-intro-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(16rem, 0.72fr) minmax(24rem, 1.28fr);
}

.page-intro-grid h2 {
  max-width: 10ch;
}

.page-intro-copy {
  max-width: 47rem;
}

.page-intro-copy > p:not(.lede) {
  max-width: 39rem;
  color: rgba(8, 27, 40, 0.62);
}

.boundary-note {
  display: grid;
  margin-top: 2.5rem;
  padding: 1.25rem 1.4rem;
  align-items: start;
  gap: 0.55rem;
  border: 1px solid var(--line);
  background: #eee9de;
  grid-template-columns: 1fr;
}

.boundary-note strong {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.boundary-note p {
  margin: 0;
  color: rgba(8, 27, 40, 0.66);
  font-size: 0.82rem;
}

.page-intro h2,
.scope-section h2,
.brief-section h2,
.related-section h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  letter-spacing: -0.04em;
}

.services-hero {
  min-height: clamp(34rem, 64vh, 46rem);
}

.services-hero .page-hero-image {
  object-position: center 48%;
}

.services-hero .page-hero-content {
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
}

.services-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 6.2vw, 6rem);
}

.services-kicker {
  margin: 0 0 1.2rem;
  color: #e3a780;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.services-kicker-dark {
  color: var(--accent);
}

.services-hero-actions {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.services-hero-phone {
  display: grid;
  gap: 0.15rem;
}

.services-hero-phone span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.services-hero-phone strong {
  font-size: 0.94rem;
}

.service-overview {
  padding-block: clamp(4.5rem, 7vw, 7rem);
  background: var(--paper-bright);
}

.service-overview-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(17rem, 0.78fr) minmax(24rem, 1.22fr);
}

.service-overview-grid h2 {
  max-width: 10ch;
  font-size: clamp(2.9rem, 4.7vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.service-overview-copy {
  max-width: 47rem;
}

.service-overview-copy > p:not(.lede) {
  max-width: 41rem;
  color: rgba(8, 27, 40, 0.62);
}

.service-directory {
  background: var(--paper);
}

.service-directory-layout {
  display: grid;
  align-items: start;
  gap: clamp(3.5rem, 7vw, 8rem);
  grid-template-columns: minmax(17rem, 0.58fr) minmax(34rem, 1.42fr);
}

.service-directory-aside {
  position: sticky;
  top: 8rem;
}

.service-directory-aside h2 {
  max-width: 9ch;
  margin-bottom: 1.7rem;
  font-size: clamp(2.8rem, 4.4vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.service-directory-aside > p:not(.services-kicker) {
  max-width: 28rem;
  color: rgba(8, 27, 40, 0.62);
}

.service-jump-list {
  display: grid;
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
}

.service-jump-list a {
  display: grid;
  min-height: 3.75rem;
  padding: 0.8rem 0;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 2rem 1fr;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 220ms var(--ease), padding-left 220ms var(--ease);
}

.service-jump-list a:hover {
  padding-left: 0.35rem;
  color: var(--accent);
}

.service-jump-list span {
  color: var(--accent);
  font-size: 0.68rem;
}

.service-quick-contact {
  display: grid;
  margin-top: 2rem;
  padding: 1.3rem;
  gap: 0.35rem;
  color: var(--white);
  border-radius: 0.25rem;
  background: var(--ink);
}

.service-quick-contact > span {
  margin-bottom: 0.3rem;
  color: #e3a780;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-quick-contact a {
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 600;
}

.service-quick-contact a:hover {
  color: #e3a780;
}

.service-phases {
  display: grid;
  gap: 1.25rem;
}

.service-phase {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  background: var(--paper-bright);
  scroll-margin-top: 7rem;
}

.service-phase-header {
  display: flex;
  padding-bottom: 1.7rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.service-phase-header > div > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-phase h3 {
  max-width: 13ch;
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-phase-link {
  display: inline-flex;
  padding-bottom: 0.35rem;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.service-phase-link:hover {
  color: var(--accent);
}

.service-directory-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-directory-list li + li {
  border-top: 1px solid var(--line);
}

.service-directory-list a {
  display: grid;
  min-height: 4.75rem;
  padding: 1rem 0;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 2.5rem minmax(0, 1fr) 1rem;
  transition: color 220ms var(--ease), padding-inline 220ms var(--ease), background 220ms var(--ease);
}

.service-directory-list a:hover {
  padding-inline: 0.8rem;
  color: var(--accent);
  background: #f0ece2;
}

.service-item-number {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
}

.service-directory-list strong {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-item-arrow {
  transition: transform 220ms var(--ease);
}

.service-directory-list a:hover .service-item-arrow {
  transform: translate(0.2rem, -0.2rem);
}

.services-brief-band {
  display: grid;
  min-height: 40rem;
  grid-template-columns: minmax(0, 1.12fr) minmax(26rem, 0.88fr);
}

.services-brief-media {
  min-height: 32rem;
  overflow: hidden;
  background: var(--sand);
}

.services-brief-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.services-brief-copy {
  display: flex;
  padding: clamp(3rem, 6vw, 7rem);
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
}

.services-brief-copy h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.services-brief-copy > p:not(.services-kicker) {
  max-width: 35rem;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.66);
}

.services-brief-actions {
  display: flex;
  margin-top: 2.2rem;
  margin-bottom: 4.5rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.services-brief-actions > a:not(.button) {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  font-weight: 600;
}

.services-brief-actions > a:not(.button):hover {
  border-color: #e3a780;
  color: #e3a780;
}

.service-family-section,
.scope-section,
.related-section {
  background: var(--paper);
}

.service-phase-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.service-phase-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-phase-strip a {
  display: grid;
  min-height: 5.25rem;
  padding: 1rem 1.2rem;
  align-content: center;
  gap: 0.25rem;
  border-left: 1px solid var(--line);
  transition: color 220ms var(--ease), background 220ms var(--ease);
}

.service-phase-strip a:last-child {
  border-right: 1px solid var(--line);
}

.service-phase-strip a:hover,
.service-phase-strip a[aria-current="location"] {
  color: var(--ink);
  background: #eee9de;
  box-shadow: inset 0 2px 0 var(--accent);
}

.service-phase-strip span {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
}

.service-phase-strip strong {
  font-size: 0.82rem;
  font-weight: 600;
}

.internal-heading {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  align-items: end;
  gap: 2rem;
  grid-template-columns: 1fr minmax(18rem, 0.42fr);
}

.internal-heading h2 {
  max-width: 11ch;
}

.internal-heading > p,
.internal-heading > div:last-child > p {
  margin: 0;
  color: rgba(8, 27, 40, 0.58);
}

.service-family-grid {
  display: grid;
  gap: 1px;
  background: rgba(8, 27, 40, 0.14);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-family-card {
  position: relative;
  display: flex;
  min-height: 31rem;
  padding: clamp(2rem, 4vw, 4rem);
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper-bright);
  transition:
    color 300ms var(--ease),
    background 300ms var(--ease);
}

.service-family-card:hover {
  color: var(--white);
  background: var(--ink);
}

.service-family-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-family-index span:last-child {
  font-size: 1.1rem;
}

.service-family-card h3 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.service-family-card p {
  max-width: 32rem;
  margin-bottom: 0;
  color: rgba(8, 27, 40, 0.58);
}

.service-family-card:hover p {
  color: rgba(255, 255, 255, 0.64);
}

.scope-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(17rem, 0.65fr) minmax(24rem, 1.35fr);
}

.scope-intro {
  position: sticky;
  top: 8rem;
}

.scope-intro h2 {
  max-width: 9ch;
}

.scope-intro > p:not(.eyebrow) {
  max-width: 27rem;
  margin-top: 2rem;
  color: rgba(8, 27, 40, 0.58);
}

.scope-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.scope-list li {
  display: grid;
  min-height: 6rem;
  padding: 1.4rem 0;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 2rem 1fr;
}

.scope-list span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
}

.scope-list strong {
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.brief-section {
  color: var(--white);
  background: var(--ink);
}

.brief-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
  grid-template-columns: minmax(18rem, 0.75fr) minmax(24rem, 1.25fr);
}

.brief-grid h2 {
  max-width: 9ch;
}

.brief-copy .lede {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

.brief-copy .boundary-note {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.brief-copy .boundary-note p {
  color: rgba(255, 255, 255, 0.63);
}

.brief-copy .button {
  margin-top: 2rem;
}

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

.related-card {
  display: flex;
  min-height: 17rem;
  padding: 1.6rem;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: rgba(250, 249, 245, 0.55);
  transition:
    color 250ms var(--ease),
    border-color 250ms var(--ease),
    background 250ms var(--ease),
    transform 250ms var(--ease);
}

.related-card:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-0.25rem);
}

.related-card span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.related-card h3 {
  max-width: 13ch;
  margin: 2.5rem 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.05;
}

.cta-band {
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background: var(--accent);
}

.cta-band-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-band h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.cta-band p {
  max-width: 32rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.archive-page {
  background: #e8e3d8;
}

.archive-page .vessel-gallery {
  margin-top: 0;
}

.archive-disclosure {
  display: grid;
  margin-top: 2rem;
  padding-top: 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(12rem, 0.4fr) 1fr;
  color: rgba(8, 27, 40, 0.56);
  font-size: 0.78rem;
}

.archive-disclosure strong {
  color: var(--ink);
}

.feature-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 25rem;
  padding: clamp(1.7rem, 3vw, 3rem);
  background: var(--paper-bright);
}

.feature-card span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
}

.feature-card h3 {
  max-width: 10ch;
  margin: 7rem 0 1.5rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.feature-card p {
  margin: 0;
  color: rgba(8, 27, 40, 0.58);
}

.image-story {
  display: grid;
  min-height: 44rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.image-story-media {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
}

.image-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-story-copy {
  display: flex;
  padding: clamp(3rem, 7vw, 8rem);
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--ink-soft);
}

.image-story-copy h2 {
  max-width: 9ch;
}

.image-story-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.66);
}

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

.value-card {
  min-height: 19rem;
  padding: 2rem;
  border-top: 2px solid var(--accent);
  background: var(--paper-bright);
}

.value-card span {
  color: rgba(8, 27, 40, 0.4);
  font-size: 0.68rem;
  font-weight: 700;
}

.value-card h3 {
  margin: 5rem 0 1rem;
  font-size: 1.7rem;
}

.value-card p {
  margin: 0;
  color: rgba(8, 27, 40, 0.56);
}

.leadership-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
  grid-template-columns: minmax(18rem, 0.72fr) minmax(22rem, 1.28fr);
}

.leadership-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 32rem;
  overflow: hidden;
  background: var(--sand);
}

.leadership-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-copy h2 {
  max-width: 10ch;
}

.leadership-role {
  margin: 1.25rem 0 2rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-copy .lede {
  max-width: 37rem;
}

.testimonial-feature {
  color: var(--white);
  background: var(--ink);
}

.testimonial-feature blockquote {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.testimonial-feature blockquote > p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.3vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.testimonial-feature footer {
  display: flex;
  margin-top: 3rem;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-feature footer strong {
  font-size: 0.9rem;
}

.testimonial-feature footer span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.recommendation-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.recommendation-grid div {
  display: flex;
  min-height: 12rem;
  padding: 1.2rem;
  align-items: flex-end;
  background: var(--paper-bright);
}

.recommendation-grid strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-page-section {
  background: #e8e3d8;
}

.contact-page-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(18rem, 0.62fr) minmax(30rem, 1.38fr);
}

.contact-page-aside {
  position: sticky;
  top: 8rem;
}

.contact-page-aside h2 {
  max-width: 9ch;
}

.contact-page-aside > p:not(.eyebrow) {
  max-width: 31rem;
  margin-top: 2rem;
  color: rgba(8, 27, 40, 0.6);
}

.contact-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.contact-list a,
.contact-list div {
  display: grid;
  padding: 1.1rem 0;
  gap: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: rgba(8, 27, 40, 0.44);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong,
.contact-list address {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
}

.contact-page-form {
  box-shadow: 0 2rem 6rem rgba(52, 45, 34, 0.11);
}

.form-section-label {
  margin: 1rem 0 1.5rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 72rem) {
  .recommendation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  .page-hero-content,
  .page-intro-grid,
  .internal-heading,
  .scope-grid,
  .brief-grid,
  .leadership-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-content {
    gap: 2rem;
  }

  .page-hero-lede {
    max-width: 39rem;
  }

  .service-family-card {
    min-height: 26rem;
  }

  .scope-intro,
  .contact-page-aside {
    position: static;
  }

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

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

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

  .services-hero .page-hero-content,
  .service-overview-grid,
  .service-directory-layout,
  .services-brief-band {
    grid-template-columns: 1fr;
  }

  .services-hero .page-hero-content {
    padding-top: 9rem;
  }

  .service-directory-aside {
    position: static;
  }

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

  .service-jump-list a:nth-child(odd) {
    padding-right: 1rem;
  }

  .service-jump-list a:nth-child(even) {
    padding-left: 1rem;
  }

  .services-brief-media {
    min-height: 28rem;
  }

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

  .service-phase-strip a:nth-child(3),
  .service-phase-strip a:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 36rem) {
  .page-hero,
  .page-hero-compact {
    min-height: 42rem;
  }

  .page-hero-content {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .page-hero h1,
  .page-hero-compact h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .internal-heading h2 {
    font-size: clamp(2.25rem, 11vw, 2.65rem);
  }

  .service-family-grid,
  .related-grid,
  .feature-grid,
  .values-grid,
  .recommendation-grid,
  .archive-disclosure {
    grid-template-columns: 1fr;
  }

  .service-family-card {
    min-height: 24rem;
    padding: 1.6rem;
  }

  .service-family-card h3 {
    font-size: 2.55rem;
  }

  .related-card {
    min-height: 14rem;
  }

  .cta-band-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band-grid .button {
    width: 100%;
  }

  .feature-card {
    min-height: 20rem;
  }

  .feature-card h3 {
    margin-top: 4.5rem;
  }

  .image-story-media {
    min-height: 26rem;
  }

  .image-story-copy {
    padding: 4rem 1rem;
  }

  .value-card {
    min-height: 15rem;
  }

  .value-card h3 {
    margin-top: 3rem;
  }

  .leadership-portrait {
    max-width: none;
  }

  .contact-page-form {
    margin-inline: -0.25rem;
  }

  .services-hero {
    min-height: 36rem;
  }

  .services-hero .page-hero-content {
    padding-top: 7.5rem;
    padding-bottom: 3rem;
  }

  .services-hero h1 {
    font-size: clamp(3rem, 13.5vw, 4rem);
  }

  .services-hero-actions,
  .services-brief-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-brief-actions {
    margin-bottom: 0;
  }

  .services-hero-actions .button,
  .services-brief-actions .button {
    width: 100%;
  }

  .service-overview-grid h2,
  .service-directory-aside h2 {
    font-size: clamp(2.45rem, 11vw, 3rem);
  }

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

  .service-jump-list a:nth-child(odd),
  .service-jump-list a:nth-child(even) {
    padding-inline: 0;
  }

  .service-phase {
    padding: 1.25rem;
  }

  .service-phase-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .service-phase h3 {
    font-size: 2.25rem;
  }

  .service-directory-list a {
    min-height: 4.4rem;
    grid-template-columns: 2rem minmax(0, 1fr) 0.8rem;
  }

  .services-brief-band {
    min-height: 0;
  }

  .services-brief-media {
    min-height: 22rem;
  }

  .services-brief-copy {
    padding: 4rem 1.5rem;
  }

  .services-brief-copy h2 {
    font-size: clamp(2.7rem, 12vw, 3.4rem);
  }

  .page-hero-compact {
    min-height: 36rem;
  }

  .service-phase-strip {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .service-phase-strip .container {
    display: flex;
    width: max-content;
    min-width: 100%;
  }

  .service-phase-strip a {
    width: 13rem;
    min-height: 4.8rem;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .service-phase-strip a:nth-child(3),
  .service-phase-strip a:nth-child(4) {
    border-top: 0;
  }
}
