:root {
  color-scheme: light;
  --ink: #172126;
  --paper: #fffdf7;
  --foam: #eef8f6;
  --sun: #f2b35d;
  --rust: #a74d35;
  --sea: #125f73;
  --navy: #112935;
  --muted: #5f6c70;
  --line: rgba(23, 33, 38, 0.16);
  --shadow: 0 18px 48px rgba(17, 41, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(1.05) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 29, 37, 0.86) 0%, rgba(13, 29, 37, 0.62) 43%, rgba(13, 29, 37, 0.14) 100%),
    linear-gradient(0deg, rgba(13, 29, 37, 0.64) 0%, rgba(13, 29, 37, 0.05) 38%);
}

.nav {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 900;
  font-size: 20px;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 800;
}

.nav__links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  border-color: var(--sun);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(78px, 13vh, 150px) 0 90px;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--sun);
}

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

h1 {
  margin-bottom: 18px;
  max-width: 790px;
  font-size: clamp(44px, 8vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2.5vw, 23px);
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid transparent;
}

.button--primary {
  color: #1d160a;
  background: var(--sun);
}

.button--ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.social-strip {
  width: 100%;
  padding: 22px max(16px, calc((100vw - 1160px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #1f1608;
  background: var(--sun);
}

.social-strip__copy {
  display: grid;
  gap: 6px;
}

.social-strip .eyebrow {
  margin: 0;
  color: rgba(31, 22, 8, 0.7);
}

.social-strip strong {
  font-size: clamp(28px, 4.6vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
}

.social-strip span {
  max-width: 720px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.35;
}

.social-strip__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-strip .button--primary {
  color: white;
  background: var(--navy);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: white;
  background: var(--sea);
}

.ticker span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.ship-dossier {
  padding: 74px 0 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.dossier-copy {
  max-width: 620px;
}

.dossier-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.dossier-copy p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--muted);
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 156px;
  gap: 12px;
}

.dossier-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dossier-grid__wide {
  grid-column: span 2;
}

.dossier-grid__tall {
  grid-row: span 2;
}

section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.crew-section,
.gallery-section {
  padding: 74px 0;
}

.reports-section {
  padding: 0 0 74px;
}

.instagram-section {
  width: 100%;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  margin-bottom: 74px;
  color: white;
  background: #0b1d25;
}

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

.section-heading h2,
.manifesto h2,
.log-callout h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

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

.crew-card {
  min-height: 380px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.crew-card h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
}

.crew-card p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
}

.crew-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  font-weight: 900;
}

.crew-card li::before {
  content: "->";
  margin-right: 8px;
  color: var(--rust);
}

.rank {
  margin-bottom: 44px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--rust);
}

.captain {
  background: linear-gradient(135deg, #fff8e8, #e5f5f4);
}

.minion {
  color: white;
  background: linear-gradient(135deg, #163340, #8b4435);
}

.minion .rank,
.minion li::before {
  color: var(--sun);
}

.kev-feature {
  padding: 0 0 74px;
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.kev-feature__copy {
  max-width: 620px;
}

.kev-feature__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.kev-feature__copy p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--muted);
}

.kev-feature__photos {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.82fr);
  gap: 16px;
  align-items: end;
}

.kev-feature__photos figure {
  min-width: 0;
}

.kev-feature__photos img {
  width: 100%;
  height: clamp(300px, 34vw, 500px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.kev-feature__primary img {
  object-position: center 45%;
}

.kev-feature__photos figure:not(.kev-feature__primary) img {
  height: clamp(250px, 29vw, 420px);
  object-position: center 35%;
}

.kev-feature__portrait img {
  object-position: center 42%;
}

.kev-feature__photos figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.duo-feature {
  width: 100%;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  color: white;
  background: #102c38;
}

.duo-feature__copy {
  max-width: 880px;
  margin-bottom: 28px;
}

.duo-feature__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.duo-feature__copy p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.duo-feature figure {
  min-width: 0;
}

.duo-feature img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.duo-feature figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.45;
}

.duo-feature__hero img {
  aspect-ratio: 16 / 9;
}

.duo-feature__socials {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.72fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.duo-feature__socials figure:first-child img {
  aspect-ratio: 1;
}

.duo-feature__socials figure:nth-child(2) img {
  aspect-ratio: 4 / 5;
}

.manifesto {
  width: 100%;
  padding: 72px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
  color: white;
  background: var(--navy);
}

.manifesto p:last-child {
  margin: 0;
  font-size: clamp(19px, 2.5vw, 26px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.captain-feature {
  padding: 74px 0 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.82fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.captain-feature img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.captain-copy {
  max-width: 680px;
}

.captain-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.captain-copy p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--muted);
}

.captain-shots {
  padding: 34px 0 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.captain-shots figure {
  min-width: 0;
}

.captain-shots img {
  width: 100%;
  height: clamp(300px, 38vw, 520px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.captain-shots figure:nth-child(2) img {
  object-position: center 34%;
}

.captain-shots figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.routing-brain {
  width: 100%;
  margin-top: 74px;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  color: white;
  background: #102c38;
}

.routing-copy {
  max-width: 620px;
}

.routing-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.routing-copy p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

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

.routing-steps article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.routing-steps article:last-child {
  grid-column: 1 / -1;
  min-height: auto;
  background: rgba(242, 179, 93, 0.18);
}

.routing-steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--sun);
  font-weight: 900;
}

.routing-steps h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
}

.routing-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.5;
}

.daily-weather {
  width: 100%;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background: #fff8ed;
}

.daily-weather h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.daily-weather p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.daily-weather-card {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.daily-weather-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.daily-weather-card h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.daily-weather-card .button {
  margin-top: 22px;
}

.shore-brain {
  padding: 74px 0 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.shore-brain h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.shore-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ed;
}

.shore-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.05;
}

.shore-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.port-intel {
  width: 100%;
  margin-top: 74px;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  background: #eef8f6;
}

.port-intel .section-heading {
  max-width: 900px;
}

.port-intel .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.port-hub-button,
.port-guide-button {
  margin-top: 22px;
}

.port-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 16px;
  margin-top: 32px;
}

.port-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 16px;
}

.port-photo-grid figure:first-child {
  grid-row: 1 / -1;
}

.port-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.port-photo-grid figcaption {
  color: var(--ink);
}

.port-map-card {
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.port-map-card iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
  border-radius: 6px;
}

.port-map-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--rust);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.port-map-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.port-guide {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.port-guide__intro {
  max-width: 860px;
}

.port-guide h3 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.port-guide h4 {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.port-guide p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.intel-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ed;
}

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

.intel-list,
.port-link-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intel-list li,
.port-link-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.intel-list li::before,
.port-link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sun);
}

.port-guide a {
  color: var(--sea);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.port-link-list span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

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

.port-card {
  min-height: 410px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.port-card--current {
  color: white;
  background: var(--sea);
}

.port-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.port-card--current span {
  color: var(--sun);
}

.port-card h3 {
  margin-bottom: 14px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.02;
}

.port-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.port-card--current p {
  color: rgba(255, 255, 255, 0.78);
}

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

.port-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.port-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sun);
}

.port-card--current .port-points li {
  color: rgba(255, 255, 255, 0.82);
}

.port-credit {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.port-page-hero,
.port-detail-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.port-page-hero {
  background:
    linear-gradient(90deg, rgba(17, 41, 53, 0.94), rgba(18, 95, 115, 0.7)),
    url("assets/hero-boat.jpg") center 58% / cover;
}

.port-detail-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.03);
}

.port-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 29, 37, 0.9) 0%, rgba(13, 29, 37, 0.6) 48%, rgba(13, 29, 37, 0.1) 100%),
    linear-gradient(0deg, rgba(13, 29, 37, 0.66), rgba(13, 29, 37, 0.08));
}

.port-page-hero .nav,
.port-detail-hero .nav {
  position: relative;
  z-index: 2;
}

.port-page-hero__content,
.port-detail-hero__content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 116px) 0 72px;
}

.port-page-hero h1,
.port-detail-hero h1 {
  max-width: 900px;
}

.port-directory,
.port-detail-layout {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.port-directory-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ed;
  box-shadow: var(--shadow);
}

.port-directory-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.port-directory-card h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
}

.port-directory-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.port-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.port-directory-grid article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.port-directory-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.port-directory-grid h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.04;
}

.port-directory-grid p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.port-directory-grid a,
.port-detail-main a {
  color: var(--sea);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.port-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.port-detail-main {
  display: grid;
  gap: 22px;
}

.port-detail-main h2 {
  margin: 18px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.port-detail-main p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.guide-link-grid a {
  display: block;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ed;
  text-decoration: none;
}

.guide-link-grid strong,
.guide-link-grid span {
  display: block;
}

.guide-link-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.08;
}

.guide-link-grid span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

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

.marina-facts div {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--foam);
}

.marina-facts span {
  display: block;
  margin-bottom: 16px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.marina-facts strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.08;
}

.marina-facts p {
  font-size: 15px;
  line-height: 1.45;
}

.protection-table {
  display: grid;
  gap: 10px;
}

.protection-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(210px, 0.36fr) minmax(240px, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ed;
}

.protection-table strong {
  font-size: 17px;
  line-height: 1.25;
}

.protection-table span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.port-detail-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 18px;
}

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

.weather-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.weather-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(1.03) contrast(1.04);
}

.weather-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 29, 37, 0.9) 0%, rgba(13, 29, 37, 0.62) 48%, rgba(13, 29, 37, 0.12) 100%),
    linear-gradient(0deg, rgba(13, 29, 37, 0.66), rgba(13, 29, 37, 0.08));
}

.weather-hero .nav,
.weather-hero__content {
  position: relative;
  z-index: 2;
}

.weather-hero__content {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 116px) 0 72px;
}

.weather-report {
  width: min(1160px, calc(100% - 32px));
  padding: 74px 0;
}

.weather-report__intro {
  max-width: 900px;
  margin-bottom: 28px;
}

.weather-report h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.weather-report p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.weather-status,
.weather-data-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8ed;
  box-shadow: var(--shadow);
}

.weather-status--go {
  color: white;
  background: var(--sea);
}

.weather-status span {
  display: block;
  margin-bottom: 22px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.weather-status--go span {
  color: var(--sun);
}

.weather-status h3,
.weather-data-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.04;
}

.weather-status p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.weather-status--go p {
  color: rgba(255, 255, 255, 0.8);
}

.passage-plan {
  margin: 28px 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
  background: #102c38;
  box-shadow: var(--shadow);
}

.passage-plan h2 {
  max-width: 940px;
}

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

.passage-steps li {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(260px, 0.54fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.passage-steps span {
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.passage-steps strong {
  font-size: 18px;
  line-height: 1.3;
}

.passage-steps p,
.weather-source-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.5;
}

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

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

.weather-data-list li {
  display: grid;
  grid-template-columns: minmax(86px, 0.22fr) 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(18, 95, 115, 0.08);
}

.weather-data-list strong {
  color: var(--sea);
}

.weather-data-list span {
  color: var(--muted);
  line-height: 1.45;
}

.weather-source-note {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
}

.weather-source-note p + p {
  margin-top: 12px;
}

.boat-feature {
  padding: 74px 0 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: center;
}

.boat-feature img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.boat-feature div {
  max-width: 650px;
}

.boat-feature h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.boat-feature p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--muted);
}

.route-section {
  width: 100%;
  margin-top: 74px;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  color: white;
  background: var(--sea);
}

.route-section h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.route-list li {
  display: grid;
  grid-template-columns: minmax(96px, 0.35fr) minmax(160px, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.route-list span {
  color: var(--sun);
  font-weight: 900;
}

.route-list strong {
  font-size: 16px;
  line-height: 1.25;
}

.video-section {
  width: 100%;
  margin-top: 74px;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(380px, 1.3fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  color: white;
  background: #102c38;
}

.video-copy {
  max-width: 700px;
}

.video-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.video-copy p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.video-stack {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  width: min(100%, 1040px);
}

.video-frame {
  justify-self: end;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 29 / 53;
  object-fit: cover;
  border-radius: 6px;
}

.video-frame figcaption {
  color: rgba(255, 255, 255, 0.76);
}

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

figure {
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  padding: 12px 2px 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--muted);
}

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

.report-card {
  min-height: 420px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8e8;
  box-shadow: var(--shadow);
}

.report-card:nth-child(2) {
  background: var(--foam);
}

.report-card:nth-child(3) {
  color: white;
  background: var(--sea);
}

.report-card:nth-child(4) {
  background: #f3efe6;
}

.report-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-card:nth-child(3) span {
  color: var(--sun);
}

.report-card h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
}

.report-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.report-card:nth-child(3) p {
  color: rgba(255, 255, 255, 0.78);
}

.report-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.report-card:nth-child(3) .report-points {
  color: rgba(255, 255, 255, 0.78);
}

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

.instagram-follow {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border: 1px solid rgba(253, 184, 73, 0.35);
  border-radius: 8px;
  color: #1f1608;
  background: var(--sun);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.instagram-grid a {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.instagram-grid span {
  min-height: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.log-callout {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--foam);
}

.log-callout img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

.log-callout p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 24px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.log-callout .button--primary {
  color: #1d160a;
}

.contact-section {
  width: 100%;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  color: white;
  background: var(--navy);
}

.contact-section h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-section p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

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

.contact-grid a {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-grid span {
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.contact-grid em {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(16px, calc((100vw - 1160px) / 2));
  color: white;
  background: #0b1d25;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
	  .ticker,
	  .crew-grid,
	  .manifesto,
	  .ship-dossier,
	  .kev-feature,
	  .kev-feature__photos,
	  .duo-feature__socials,
	  .captain-feature,
	  .captain-shots,
	  .routing-brain,
	  .shore-brain,
	  .shore-grid,
	  .port-visual,
	  .port-photo-grid,
	  .intel-columns,
	  .port-grid,
	  .port-directory-card,
	  .port-directory-grid,
	  .port-detail-layout,
	  .guide-link-grid,
	  .marina-facts,
	  .daily-weather,
	  .weather-status-grid,
	  .weather-data-grid,
	  .passage-steps li,
	  .boat-feature,
	  .route-section,
	  .video-section,
	  .gallery,
	  .instagram-grid,
	  .reports-grid,
	  .log-callout,
	  .contact-section,
	  .contact-grid {
	    grid-template-columns: 1fr;
	  }

  .video-stack {
    justify-self: start;
  }

  .route-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .routing-steps {
    grid-template-columns: 1fr;
  }

  .routing-steps article:last-child {
    grid-column: auto;
  }

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

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

  .port-photo-grid figure:first-child {
    grid-row: auto;
  }

  .dossier-grid {
    grid-auto-rows: 132px;
  }
}

@media (max-width: 620px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav__links {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero__content {
    padding-top: 52px;
  }

  h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .lede {
    font-size: 17px;
  }

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

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

  .port-photo-grid {
    grid-template-columns: 1fr;
  }

  .port-map-card iframe {
    height: 280px;
  }

  .protection-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .port-detail-side {
    position: static;
  }

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

  .dossier-grid__wide,
  .dossier-grid__tall {
    grid-column: auto;
    grid-row: auto;
  }

  .video-stack {
    grid-template-columns: 1fr;
    width: min(100%, 340px);
  }

  .crew-card {
    min-height: auto;
  }

  footer {
    flex-direction: column;
  }
}

/* --- Join the crew ------------------------------------------------------ */

.crew-pitch {
  width: 100%;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  background: var(--foam);
}

.crew-pitch__copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.crew-pitch__copy p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

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

.crew-pitch__facts > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.crew-pitch__facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crew-pitch__facts strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
}

.crew-pitch__facts p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.crew-apply {
  width: 100%;
  padding: 68px max(16px, calc((100vw - 1160px) / 2));
  background: var(--navy);
  color: white;
}

.crew-apply__intro {
  max-width: 720px;
  margin-bottom: 40px;
}

.crew-apply__intro h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 0.99;
}

.crew-apply__intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
}

.crew-form fieldset {
  margin: 0 0 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.crew-form > fieldset > legend {
  padding: 0 12px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.crew-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  min-width: 0;
}

.crew-form .field--wide {
  grid-column: 1 / -1;
}

.crew-form label,
.crew-form .field__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.crew-form .req {
  color: var(--sun);
}

.crew-form .field em {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.crew-form input[type="text"],
.crew-form input[type="email"],
.crew-form input[type="tel"],
.crew-form input[type="number"],
.crew-form select,
.crew-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
}

.crew-form textarea {
  resize: vertical;
}

.crew-form input:focus-visible,
.crew-form select:focus-visible,
.crew-form textarea:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

.crew-form input::placeholder,
.crew-form textarea::placeholder {
  color: #8b969a;
}

.crew-form .choices {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.crew-form .choices label,
.crew-form .checkboxes label,
.crew-form .consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
}

.crew-form input[type="checkbox"],
.crew-form input[type="radio"] {
  flex: none;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--sun);
}

.crew-form fieldset.checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 20px;
  margin: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.crew-form fieldset.checkboxes > legend {
  grid-column: 1 / -1;
  padding: 0;
  margin-bottom: 4px;
}

.crew-form .consent {
  gap: 6px;
}

.crew-form .consent em {
  padding-left: 30px;
}

.crew-form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.crew-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.crew-form__actions button {
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.crew-form__actions button:disabled {
  opacity: 0.55;
  cursor: progress;
}

.crew-form__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.crew-form__status--error {
  color: var(--sun);
  font-weight: 700;
}

.crew-form__done {
  max-width: 640px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.crew-form__done h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.crew-form__done p:not(.eyebrow) {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .crew-pitch,
  .crew-apply {
    padding-top: 48px;
    padding-bottom: 48px;
    grid-template-columns: 1fr;
  }

  .crew-form__grid {
    grid-template-columns: 1fr;
  }

  .crew-form fieldset {
    padding: 22px 18px;
  }
}

@media (max-width: 560px) {
  .crew-pitch__facts {
    grid-template-columns: 1fr;
  }
}
