:root {
  --navy-950: #06171f;
  --navy-900: #09212b;
  --navy-800: #10313c;
  --navy-700: #194653;
  --cream: #f3efe5;
  --paper: #faf8f2;
  --white: #fff;
  --ink: #10242a;
  --muted: #657378;
  --line: rgba(16, 36, 42, 0.14);
  --warm: #d99c64;
  --warm-light: #efc79c;
  --green: #1b7d68;
  --shadow: 0 28px 80px rgba(3, 25, 34, 0.12);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-kicker::after {
  width: 72px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.4;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.55);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h2 {
  margin-bottom: 32px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h1 em,
h2 em {
  color: var(--warm);
  font-family: var(--serif);
  font-weight: 500;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.eyebrow-warm {
  color: var(--warm);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 24px;
  border: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--navy-950);
}

.button-warm {
  background: var(--warm);
  color: var(--navy-950);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
}

.text-link span {
  color: var(--warm);
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: background 220ms ease, height 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  height: 72px;
  background: rgba(6, 23, 31, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.brand > span > span {
  color: var(--warm);
}

.brand-mark {
  width: 39px;
  height: 39px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primary-nav > a {
  transition: color 180ms ease;
}

.primary-nav > a:hover {
  color: var(--warm-light);
}

.primary-nav .nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: inherit;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 18, 25, 0.9) 0%, rgba(3, 18, 25, 0.58) 40%, rgba(3, 18, 25, 0.08) 72%),
    linear-gradient(0deg, rgba(3, 18, 25, 0.64) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 34px;
  font-size: clamp(4.3rem, 10vw, 8.8rem);
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-meta {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(650px, calc(100% - 48px));
  grid-template-columns: repeat(3, 1fr);
  margin-right: max(24px, calc((100vw - 1180px) / 2));
  margin-left: auto;
  padding: 22px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-meta > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-meta strong {
  margin-bottom: 2px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-note {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 118px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

/* Intro */
.intro {
  padding-top: 140px;
}

.intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9%;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid > div {
  max-width: 520px;
  padding-top: 16px;
  color: var(--muted);
}

.intro-grid .lead {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.58;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-card {
  position: relative;
  display: flex;
  min-height: 400px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 30px 30px;
  border-left: 1px solid var(--line);
  background: transparent;
  transition: background 220ms ease, transform 220ms ease;
}

.experience-card:first-child {
  border-left: 0;
}

.experience-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.experience-card-featured {
  background: var(--navy-900);
  color: var(--white);
}

.experience-card-featured:hover {
  background: var(--navy-800);
}

.card-number,
.card-label,
.card-meta {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-number {
  color: var(--warm);
}

.card-label {
  margin-bottom: 10px;
  color: var(--warm);
}

.experience-card h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.experience-card p:not(.card-label, .card-meta) {
  max-width: 290px;
  color: var(--muted);
  font-size: 0.92rem;
}

.experience-card-featured p:not(.card-label, .card-meta) {
  color: rgba(255, 255, 255, 0.6);
}

.card-meta {
  margin: 0;
  color: var(--muted);
}

.fine-print,
.source-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Skipper training */
.training {
  padding-top: 0;
}

.training-panel {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8%;
  padding: 56px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 156, 100, 0.16), transparent 30%),
    var(--white);
  box-shadow: var(--shadow);
}

.training-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.training-copy {
  color: var(--muted);
}

.training-copy .lead {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.62;
}

.training-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.training-facts > div {
  padding: 22px 18px;
  border-left: 1px solid var(--line);
}

.training-facts > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.training-facts strong,
.training-facts span {
  display: block;
}

.training-facts strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.training-facts span {
  font-size: 0.76rem;
  line-height: 1.5;
}

/* Yacht */
.yacht {
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.yacht-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 10%;
}

.yacht-heading h2 {
  margin-bottom: 0;
}

.yacht-heading > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
}

.specs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-block: 80px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.specs > div {
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.specs > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.specs strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.specs span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yacht-image-panel {
  position: relative;
}

.yacht-image-panel img {
  width: 100%;
  height: min(58vw, 650px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.04);
}

.yacht-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
}

.yacht-caption a {
  color: var(--warm-light);
}

.yacht .source-note {
  color: rgba(255, 255, 255, 0.38);
}

/* Calendar */
.availability {
  background: var(--paper);
}

.availability-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9%;
}

.availability-copy p {
  max-width: 430px;
  color: var(--muted);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 0.72rem;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-free {
  border: 1px solid var(--navy-700);
  background: transparent;
}

.legend-selected {
  background: var(--warm);
}

.legend-unavailable {
  background: #c7cdca;
}

.calendar-card {
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.calendar-toolbar {
  display: grid;
  align-items: center;
  grid-template-columns: 44px 1fr 44px;
  margin-bottom: 24px;
}

.calendar-toolbar h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

.calendar-nav {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.calendar-nav:hover:not(:disabled) {
  background: var(--navy-900);
  color: var(--white);
}

.calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-weekdays span {
  padding-block: 8px 14px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  position: relative;
  min-width: 0;
  aspect-ratio: 1;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  transition: background 150ms ease, color 150ms ease;
}

.calendar-day:hover:not(:disabled) {
  background: var(--cream);
}

.calendar-day.is-other-month {
  color: #b7bfbd;
}

.calendar-day.is-past,
.calendar-day.is-blocked {
  cursor: not-allowed;
  color: #c2c8c6;
  text-decoration: line-through;
}

.calendar-day.is-selected,
.calendar-day.is-range {
  background: var(--warm);
  color: var(--navy-950);
}

.calendar-day.is-range {
  background: rgba(217, 156, 100, 0.25);
}

.calendar-day.is-selected {
  font-weight: 600;
}

.calendar-day.is-today::after {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: translateX(-50%);
}

.calendar-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--cream);
  font-size: 0.78rem;
}

.calendar-selection a {
  color: var(--navy-700);
  font-weight: 600;
  white-space: nowrap;
}

/* Location */
.location {
  padding: 0;
  overflow: hidden;
  background: #e7e2d6;
}

.location-grid {
  display: grid;
  min-height: 720px;
  align-items: center;
  grid-template-columns: 1fr 0.85fr;
  gap: 10%;
}

.location-map {
  align-self: stretch;
  margin-left: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.7), transparent 35%),
    #d8d2c3;
}

.location-map svg {
  width: 100%;
  height: 100%;
}

.river {
  fill: none;
  stroke: rgba(255, 255, 255, 0.74);
  stroke-width: 95;
}

.shore {
  fill: none;
  stroke: rgba(16, 49, 60, 0.13);
  stroke-width: 2;
}

.route {
  fill: none;
  stroke: var(--warm);
  stroke-dasharray: 8 9;
  stroke-width: 3;
}

.map-pin-ring {
  fill: rgba(217, 156, 100, 0.18);
  stroke: var(--warm);
}

.map-pin {
  fill: var(--warm);
}

.location-map text {
  fill: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

.location-map .map-city {
  fill: rgba(16, 36, 42, 0.4);
  font-size: 11px;
  letter-spacing: 4px;
}

.location-copy {
  padding-block: 100px;
}

.location-copy > p:not(.eyebrow) {
  max-width: 490px;
  color: var(--muted);
}

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

.location-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.location-list span {
  color: var(--warm);
  font-size: 0.67rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10%;
}

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

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 500;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--warm);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 640px;
  padding: 0 50px 25px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Inquiry */
.inquiry {
  background: var(--navy-950);
  color: var(--white);
}

.inquiry-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 10%;
}

.inquiry-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.57);
}

.contact-hint {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  padding-left: 20px;
  border-left: 2px solid var(--warm);
}

.contact-hint span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hint strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
}

.inquiry-form {
  display: grid;
  gap: 22px;
  padding: 42px;
  background: var(--white);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.inquiry-form label:not(.checkbox-label) {
  display: grid;
  gap: 7px;
}

.inquiry-form label > span:first-child {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-bottom-color: var(--warm);
}

.checkbox-label {
  display: grid;
  align-items: start;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.checkbox-label input {
  min-height: 0;
  margin-top: 3px;
}

.checkbox-label a {
  text-decoration: underline;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-submit {
  width: 100%;
  justify-content: space-between;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.78rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #e1f2ed;
  color: #145b4c;
}

.form-status.is-error {
  background: #f8e4de;
  color: #8a2f25;
}

/* Footer */
.site-footer {
  padding-top: 64px;
  background: #031116;
  color: var(--white);
}

.footer-top {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 54px;
}

.brand-footer {
  font-size: 1.2rem;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
}

.footer-mail {
  color: var(--warm-light);
  font-family: var(--display);
  font-size: 1.15rem;
  text-align: right;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

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

/* Legal pages */
.legal-page {
  min-height: 100vh;
  padding: 150px 0 100px;
  background: var(--paper);
}

.legal-page .shell {
  max-width: 820px;
}

.legal-page h1 {
  margin-bottom: 44px;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.legal-page h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-notice {
  padding: 18px 20px;
  border-left: 3px solid var(--warm);
  background: var(--cream);
}

/* Responsive */
@media (max-width: 980px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.nav-cta) {
    display: none;
  }

  .intro-grid,
  .yacht-heading,
  .training-panel,
  .availability-layout,
  .faq-layout,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .yacht-heading,
  .training-panel,
  .availability-layout,
  .faq-layout,
  .inquiry-grid {
    gap: 50px;
  }

  .experience-card {
    min-height: 350px;
  }

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

  .specs > div:nth-child(4) {
    border-left: 0;
  }

  .location-grid {
    grid-template-columns: 0.9fr 1fr;
    gap: 6%;
  }

  .inquiry-copy h2 {
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding-block: 82px;
  }

  .section-kicker {
    margin-bottom: 34px;
  }

  .site-header {
    height: 68px;
    padding-inline: 16px;
  }

  .site-header.scrolled,
  .site-header.menu-visible {
    height: 68px;
  }

  .brand {
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    height: calc(100svh - 68px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    padding: clamp(42px, 11vh, 96px) 36px 36px;
    background: var(--navy-950);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .primary-nav > a:not(.nav-cta) {
    display: block;
  }

  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-family: var(--display);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-nav .nav-cta {
    margin-top: 22px;
    padding: 14px 18px;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 720px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 18, 25, 0.84) 0%, rgba(3, 18, 25, 0.38) 100%),
      linear-gradient(0deg, rgba(3, 18, 25, 0.82) 0%, transparent 62%);
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 19vw, 6rem);
  }

  .hero-copy {
    font-size: 0.95rem;
  }

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

  .hero-meta {
    width: calc(100% - 32px);
    margin-inline: 16px;
  }

  .hero-meta > div {
    padding-left: 12px;
  }

  .hero-meta strong {
    font-size: 0.85rem;
  }

  .hero-meta span {
    font-size: 0.56rem;
  }

  .image-note {
    display: none;
  }

  .intro {
    padding-top: 88px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .training-panel {
    padding: 34px 24px;
  }

  .training-facts {
    grid-template-columns: 1fr;
  }

  .training-facts > div,
  .training-facts > div:first-child {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .training-facts > div:first-child {
    border-top: 0;
  }

  .experience-card,
  .experience-card:first-child {
    min-height: 330px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .specs {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 52px;
  }

  .specs > div,
  .specs > div:nth-child(4) {
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .specs > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .yacht-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .calendar-card {
    margin-inline: -8px;
    padding: 22px 14px;
  }

  .calendar-selection {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 430px;
    margin-left: 0;
  }

  .location-copy {
    width: calc(100% - 32px);
    margin-inline: auto;
    padding: 74px 0 84px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 28px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-mail {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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