:root {
  --glacier: #f7f8f6;
  --ice: #ddebf0;
  --polar: #8fbac8;
  --ocean: #082133;
  --rock: #315163;
  --charcoal: #111820;
  --ivory: #f2eee6;
  --copper: #b97745;
  --copper-dark: #965d36;
  --line: rgba(13, 43, 62, 0.14);
  --white: #ffffff;
  --container: 1240px;
  --radius: 8px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Aptos", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--glacier);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
  object-fit: cover;
}

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

a:hover {
  color: var(--copper);
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(185, 119, 69, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ocean);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 40px, 860px);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.soft {
  background: var(--ice);
}

.dark-section {
  background: var(--ocean);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 24, 32, 0.9);
  color: var(--white);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.primary-nav {
  width: min(100% - 32px, 1360px);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 3px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: currentColor;
  opacity: 0.78;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: currentColor;
}

.brand-mark::before {
  top: 17px;
  transform: rotate(-12deg);
}

.brand-mark::after {
  top: 24px;
  transform: rotate(12deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.55vw, 24px);
  font-size: 0.88rem;
  font-weight: 750;
}

.nav-links .page-link {
  position: relative;
  color: currentColor;
  opacity: 0.86;
}

.nav-links .page-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--copper);
  transition: transform 220ms ease;
}

.nav-links .page-link:hover,
.nav-links .page-link.is-active {
  color: currentColor;
  opacity: 1;
}

.nav-links .page-link:hover::after,
.nav-links .page-link.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  padding: 12px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--copper);
  border-radius: 999px;
  background: var(--copper);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: var(--white);
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.86rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

.button-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(221, 235, 240, 0.25);
}

.button-secondary:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ocean);
  color: var(--white);
  padding: 128px 0 88px;
}

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

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 32, 0.92) 0%, rgba(7, 24, 32, 0.58) 45%, rgba(7, 24, 32, 0.28) 100%),
    linear-gradient(0deg, rgba(3, 12, 18, 0.62), rgba(3, 12, 18, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 900px);
  margin-inline: auto;
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
}

.eyebrow,
.tag {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ocean);
}

.hero h1 {
  max-width: 880px;
  color: var(--white);
  font-size: clamp(3.8rem, 8.2vw, 6rem);
  line-height: 0.94;
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.quick-facts {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1120px);
  margin: -42px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quick-facts dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}

.quick-facts div {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.quick-facts div:last-child {
  border-right: 0;
}

dt {
  color: var(--rock);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 0;
  color: var(--ocean);
  font-family: var(--serif);
  font-size: 1.58rem;
  line-height: 1.15;
}

.intro {
  text-align: center;
}

.intro h2,
.section-heading h2,
.route h2,
.expedition-band h2,
.included h2,
.life h2,
.crew h2,
.ship h2,
.insurance h2,
.cancellation h2,
.about h2,
.who h2,
.environment h2,
.contact h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 0.98;
  text-wrap: balance;
}

.intro p:not(.eyebrow) {
  margin: 24px auto 0;
  color: var(--ocean);
  font-size: 1.18rem;
}

.coordinates {
  display: inline-block;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--rock);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--glacier), rgba(221, 235, 240, 0.55) 52%, var(--glacier));
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 18px;
}

figure {
  margin: 0;
}

.gallery-grid figure {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivory);
  isolation: isolate;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  transition: transform 500ms ease;
}

.gallery-grid figure:hover img,
.image-card:hover img {
  transform: scale(1.035);
}

figcaption {
  padding: 13px 16px;
  color: var(--rock);
  font-size: 0.86rem;
  font-style: italic;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ocean);
  font-size: 1.08rem;
}

.highlight-grid,
.review-grid,
.why-grid,
.voyage-grid,
.crew-grid,
.faq-grid,
.included-grid,
.life-layout,
.route-layout,
.band-layout,
.ship-layout,
.policy-layout {
  display: grid;
  gap: 22px;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

.prose-block {
  display: grid;
  gap: 18px;
  color: var(--ocean);
  font-size: 1.08rem;
}

.prose-block p {
  margin: 0;
}

.highlight-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.voyage-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.voyage-card img {
  width: 100%;
  height: 250px;
}

.voyage-card div {
  padding: 24px;
}

.voyage-card p:not(.tag) {
  color: var(--ocean);
}

.info-card,
.quote-card,
.date-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 28px;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid rgba(13, 43, 62, 0.22);
  border-radius: 50%;
  color: var(--copper);
  font-weight: 800;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.1;
  color: var(--ocean);
}

.info-card p,
.quote-card footer,
.image-card p,
.included li,
.life p,
.route p,
.expedition-band p {
  color: var(--rock);
}

.info-card p,
.quote-card footer,
.included li,
.life p,
.route p {
  color: var(--ocean);
}

.expedition-band {
  position: relative;
  overflow: hidden;
  background: var(--ocean);
  color: var(--white);
}

.expedition-band h2,
.expedition-band p,
.expedition-band .text-link {
  color: var(--white);
}

.dark-section h2,
.dark-section h3,
.dark-section p,
.dark-section dd,
.dark-section .text-link {
  color: var(--white);
}

.dark-section .eyebrow,
.dark-section .tag {
  color: var(--copper);
}

.band-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
}

.band-layout img {
  width: 100%;
  max-height: 520px;
  border-radius: var(--radius);
  opacity: 0.82;
  transform: rotate(1.4deg);
}

.text-link,
.table-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--copper);
  font-weight: 800;
}

.route-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
  align-items: center;
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.route-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(13, 43, 62, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 43, 62, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 20% 15%, rgba(143, 186, 200, 0.34), transparent 28%),
    var(--ivory);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.map-line {
  position: absolute;
  left: 19%;
  top: 15%;
  width: 56%;
  height: 66%;
  border-left: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  border-radius: 50% 0 0 38%;
  transform: rotate(-24deg);
}

.map-point {
  position: absolute;
  max-width: 190px;
  padding-left: 18px;
  color: var(--ocean);
  font-size: 0.9rem;
  font-weight: 800;
}

.map-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper);
}

.ushuaia { left: 16%; top: 17%; }
.beagle { left: 29%; top: 26%; }
.drake { left: 41%; top: 45%; }
.shetland { left: 55%; top: 66%; }
.peninsula { left: 62%; top: 78%; }

.map-coord {
  position: absolute;
  right: 24px;
  top: 24px;
  color: rgba(13, 43, 62, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.map-coord.lower {
  top: auto;
  bottom: 24px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(13, 43, 62, 0.18);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  width: min(100%, 1040px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.timeline-item:nth-child(even) img {
  order: 2;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
}

.timeline-item img {
  width: 100%;
  height: 280px;
  border-radius: 6px;
  transform-origin: center;
}

.center-action {
  margin-top: 40px;
  text-align: center;
}

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

.quote-card blockquote {
  margin: 0;
  color: var(--ocean);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.3;
}

.stars {
  margin: 0 0 16px;
  color: var(--copper);
  letter-spacing: 0.16em;
}

.quote-card footer {
  margin-top: 22px;
  font-size: 0.9rem;
}

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

.crew-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: start;
}

.crew-layout > div:first-child p:not(.eyebrow) {
  color: var(--ocean);
  font-size: 1.08rem;
}

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

.crew-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.crew-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.crew-card.placeholder {
  background: rgba(255, 255, 255, 0.54);
}

.crew-photo {
  display: grid;
  place-items: center;
  min-height: 210px;
  border-radius: 6px;
  background: var(--ice);
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crew-card p {
  margin: 0;
  color: var(--ocean);
}

.crew-role {
  color: var(--copper);
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tag-list span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ocean);
  font-size: 0.76rem;
  font-weight: 800;
}

.image-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ocean);
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  transition: transform 500ms ease, opacity 220ms ease;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 43, 62, 0.86), rgba(13, 43, 62, 0.14));
}

.image-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px;
}

.image-card h3,
.image-card p {
  color: var(--white);
}

.image-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 220ms ease, opacity 220ms ease, margin 220ms ease;
}

.image-card:hover p,
.image-card:focus-within p {
  max-height: 160px;
  margin-top: 12px;
  opacity: 1;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--rock);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(143, 186, 200, 0.2);
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 800;
}

.status.limited {
  background: rgba(185, 119, 69, 0.16);
  color: var(--copper-dark);
}

.date-cards {
  display: none;
}

.provisional {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}

.provisional p {
  margin: 0;
  color: var(--rock);
}

.included {
  background: var(--ivory);
}

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

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

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  transform: rotate(-45deg);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 1px;
  background: rgba(13, 43, 62, 0.35);
}

.muted {
  color: var(--rock);
}

.life-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  align-items: center;
}

.ship-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  align-items: center;
}

.ship-layout > div > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--white);
  font-size: 1.08rem;
}

.ship-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0 0;
}

.ship-specs div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.ship-specs dt {
  color: rgba(255, 255, 255, 0.7);
}

.ship-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.ship-image img {
  width: 100%;
  height: 520px;
}

.ship-image figcaption {
  color: rgba(255, 255, 255, 0.78);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.specs-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.specs-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.specs-grid li {
  color: rgba(255, 255, 255, 0.86);
}

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

.policy-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: start;
}

.policy-layout > div > p:not(.eyebrow) {
  color: var(--ocean);
  font-size: 1.08rem;
}

.policy-list {
  margin-top: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.policy-steps {
  display: grid;
  gap: 14px;
}

.policy-steps article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.policy-steps p,
.cancellation .policy-layout > div > p:not(.eyebrow) {
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ocean);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--ocean);
}

.contact {
  background: var(--glacier);
}

.contact-layout > div p:not(.eyebrow) {
  color: var(--ocean);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form label {
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--glacier);
  color: var(--ocean);
  padding: 12px 14px;
}

.contact-form textarea {
  resize: vertical;
}

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

.module-grid span {
  padding: 13px 15px;
  border: 1px solid rgba(13, 43, 62, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ocean);
  font-weight: 700;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ocean);
  color: var(--white);
}

.video-card img {
  width: 100%;
  height: 520px;
  opacity: 0.78;
}

.video-card > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.video-card h3 {
  color: var(--white);
}

.video-card p,
.video-card .text-link {
  color: var(--white);
}

.play-button {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 1;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.site-footer {
  background: #081e2d;
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 28px;
}

.site-footer p,
.site-footer address,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a {
  display: block;
  margin: 9px 0;
}

address {
  margin-top: 24px;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

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

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

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

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

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

@media (max-width: 1100px) {
  .highlight-grid,
  .voyage-grid,
  .review-grid,
  .crew-grid,
  .faq-grid,
  .crew-card-grid,
  .specs-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 900px) {
  .section {
    padding: 76px 0;
  }

  .primary-nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 22px;
    padding: 92px 32px 40px;
    background: var(--ocean);
    color: var(--white);
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .nav-links .button {
    margin-top: 12px;
    font-size: 1rem;
  }

  .site-header.is-open .nav-links {
    transform: translateX(0);
  }

  .site-header.is-open .menu-toggle {
    color: var(--white);
  }

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

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

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

  .hero {
    min-height: 82svh;
    padding: 116px 0 84px;
  }

  .hero-content {
    margin-inline: auto;
  }

  .quick-facts dl,
  .gallery-grid,
  .route-layout,
  .band-layout,
  .crew-layout,
  .about-layout,
  .contact-layout,
  .included-grid,
  .life-layout,
  .ship-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts div:last-child {
    border-bottom: 0;
  }

  .highlight-grid,
  .voyage-grid,
  .review-grid,
  .crew-grid,
  .crew-card-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding-left: 36px;
  }

  .timeline-item:nth-child(even) img {
    order: 0;
  }

  .timeline-item::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 34px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--copper);
  }

  .table-wrap {
    display: none;
  }

  .date-cards {
    display: grid;
    gap: 14px;
  }

  .date-cards article {
    display: grid;
    gap: 10px;
  }

  .date-cards h3,
  .date-cards p {
    margin: 0;
  }

  .provisional,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow,
  .hero-content,
  .quick-facts {
    width: min(100% - 28px, var(--container));
  }

  .hero h1 {
    font-size: clamp(3.3rem, 18vw, 4.8rem);
  }

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

  .gallery-grid img,
  .timeline-item img,
  .video-card img {
    min-height: 260px;
    height: 300px;
  }

  .route-stats,
  .ship-specs,
  .specs-grid,
  .module-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 430px;
  }

  .map-point {
    font-size: 0.78rem;
  }

  .shetland,
  .peninsula {
    left: 45%;
  }
}

@media print {
  .site-header,
  .skip-link,
  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: auto;
  }

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