@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Cormorant+Garamond:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Sackers Gothic";
  src: url("assets/fonts/SackersGothic-Heavy.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --midnight: #101010;
  --navy: #141414;
  --sapphire: #1c1c1a;
  --sky: #cdc9c1;
  --aqua: #f2ede4;
  --ivory: #f5f1ea;
  --paper: #f5f1ea;
  --gold: #f2ede4;
  --gold-soft: #ffffff;
  --coral: #8a857b;
  --line: rgba(255, 255, 255, .18);
  --line-dark: rgba(10,10,10, .14);
  --shadow: 0 34px 90px rgba(0, 0, 0, .38);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font-display: "Audiowide", "Eurostile", "Helvetica Neue", Arial, sans-serif;
  --font-text: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-ui: "Audiowide", "Eurostile", "Helvetica Neue", Arial, sans-serif;
  --font-lux: "Audiowide", "Eurostile", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ivory);
  background: var(--ink);
  letter-spacing: 0;
  font-synthesis-weight: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(130% 90% at 50% -12%, rgba(255,255,255,.05), transparent 58%),
    linear-gradient(180deg, #0b0b0b 0%, #0a0a0a 52%, #070707 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(105deg, transparent 0%, rgba(255,255,255,.022) 50%, transparent 60%);
  background-size: 100% 100%;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.4), transparent 78%);
}

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

button,
input,
select,
textarea {
  font: inherit;
  accent-color: var(--ivory);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--gold-soft);
  border-radius: 999px;
  transition: top .2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.launch-veil {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: #060606;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}

.launch-veil.is-gone {
  opacity: 0;
  visibility: hidden;
}

.launch-core {
  width: min(540px, calc(100vw - 48px));
  text-align: center;
}

.launch-mark {
  width: min(230px, 54vw);
  margin: 0 auto 22px;
  filter: drop-shadow(0 22px 46px rgba(0,0,0,.55));
}

.launch-line {
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.16);
}

.launch-line span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.76), var(--gold), transparent);
  animation: sweep 1.4s var(--ease) infinite;
}

.launch-core p {
  margin: 14px 0 0;
  color: rgba(248,245,238,.7);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .26em;
}

@keyframes sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(16px, 4vw, 54px);
  color: var(--ivory);
  background: linear-gradient(to bottom, rgba(3, 10, 16, .84), rgba(3, 10, 16, .28), transparent);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand-lockup img {
  display: block;
  width: clamp(104px, 9vw, 148px);
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.28));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--ivory);
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  color: rgba(248,245,238,.78);
  font-family: var(--font-ui);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

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

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sound-toggle {
  min-width: 92px;
  padding: 10px 13px;
  color: var(--ivory);
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: .16em;
}

.sound-toggle.is-on {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ivory);
  background: rgba(255,255,255,.08);
  box-shadow: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.14);
}

.btn.primary {
  color: #0a0a0a;
  border-color: transparent;
  background: linear-gradient(135deg, #ffffff, var(--gold), #cfcabf);
}

.btn.dark {
  color: var(--ivory);
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media video,
.page-hero-media video,
.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 6, 9, .9) 0%, rgba(4, 6, 9, .58) 42%, rgba(4, 6, 9, .18) 78%),
    linear-gradient(0deg, rgba(7,9,13,.96), rgba(7,9,13,.12) 48%, rgba(7,9,13,.24));
}

.hero-inner {
  width: min(1480px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 104px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .62fr);
  gap: clamp(22px, 4vw, 70px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-family: var(--font-lux);
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 400;
}

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

h1 {
  max-width: 1050px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  font-size: clamp(30px, 4.2vw, 64px);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 710px;
  color: rgba(248,245,238,.82);
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.36;
  font-weight: 500;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.status-pill {
  padding: 10px 13px;
  color: rgba(248,245,238,.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .18em;
}

.booking-panel {
  border: 1px solid rgba(240,236,228,.22);
  border-radius: 8px;
  background: rgba(7, 9, 13, .7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(.88);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  color: rgba(248,245,238,.75);
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: .16em;
}

.panel-head strong {
  color: #fff;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.span-2 {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(248,245,238,.64);
  font-family: var(--font-ui);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ivory);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(240,236,228,.18);
  border-radius: 6px;
  padding: 12px 12px;
  outline: none;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(255,255,255,.16);
}

.field select option {
  color: var(--ink);
}

.quote-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.quote-strip div {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.quote-strip div:last-child {
  border-right: 0;
}

.quote-strip span {
  display: block;
  margin-bottom: 6px;
  color: rgba(248,245,238,.58);
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: .16em;
}

.quote-strip strong {
  font-size: 17px;
}

.panel-actions {
  padding: 0 18px 18px;
}

.section {
  width: min(1400px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 134px) 0;
}

.section.slim {
  padding: clamp(46px, 7vw, 90px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .5fr);
  gap: clamp(18px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.section-lede {
  color: rgba(248,245,238,.72);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

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

.media-tile,
.story-tile,
.tier,
.destination,
.fleet-spec,
.timeline-item,
.contact-block {
  border: 1px solid rgba(240,236,228,.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.052);
  box-shadow: 0 18px 58px rgba(0,0,0,.2);
}

.media-tile {
  min-height: 420px;
  position: relative;
}

.film-grid .media-tile {
  min-height: 340px;
}

.film-grid .media-tile.featured {
  grid-column: span 2;
  min-height: 460px;
}

.media-tile video,
.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: inherit;
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,6,9,.72), transparent 48%);
}

.tile-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.tile-copy h3 {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.5vw, 30px);
  font-weight: 400;
}

.tile-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(248,245,238,.74);
}

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

.render-card {
  position: relative;
  min-height: 328px;
  border: 1px solid rgba(240,236,228,.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.052);
  box-shadow: 0 18px 58px rgba(0,0,0,.2);
}

.render-card.is-wide {
  grid-column: span 2;
}

.render-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.render-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4,6,9,.82), rgba(4,6,9,.18) 58%, rgba(4,6,9,.08)),
    linear-gradient(110deg, rgba(255,255,255,.16), transparent 38%);
}

.render-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.04);
}

.render-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.render-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.render-copy h3 {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 400;
  line-height: 1;
}

.render-copy p {
  max-width: 460px;
  margin: 0;
  color: rgba(248,245,238,.72);
  line-height: 1.45;
}

.fullscreen-gallery {
  width: 100%;
  background: var(--ink);
}

.fullscreen-panel {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  isolation: isolate;
}

.fullscreen-panel.compact {
  min-height: 86svh;
}

.fullscreen-panel img,
.fullscreen-panel video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}

.fullscreen-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,6,9,.88), rgba(4,6,9,.4) 48%, rgba(4,6,9,.1)),
    linear-gradient(0deg, rgba(4,6,9,.92), rgba(4,6,9,.12) 54%, rgba(4,6,9,.22));
}

.fullscreen-panel:hover img,
.fullscreen-panel:hover video {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.04);
}

.fullscreen-copy {
  width: min(1400px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(88px, 12vw, 170px) 0 clamp(42px, 8vw, 86px);
}

.fullscreen-copy h2 {
  max-width: 920px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.02;
}

.fullscreen-copy p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(248,245,238,.82);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.28;
}

.fullscreen-meta {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-family: var(--font-lux);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .22em;
}

.fleet-reel {
  border-top: 1px solid rgba(240,236,228,.16);
  border-bottom: 1px solid rgba(240,236,228,.16);
}

.fleet-reel .fullscreen-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .005em;
  font-size: clamp(26px, 4vw, 62px);
}

.fullscreen-panel.align-right::after {
  background:
    linear-gradient(270deg, rgba(4,6,9,.88), rgba(4,6,9,.4) 48%, rgba(4,6,9,.1)),
    linear-gradient(0deg, rgba(4,6,9,.92), rgba(4,6,9,.12) 54%, rgba(4,6,9,.22));
}

.fullscreen-panel.align-right .fullscreen-copy {
  display: grid;
  justify-items: end;
  text-align: right;
}

.panam-reel {
  border-top: 1px solid rgba(240,236,228,.16);
  border-bottom: 1px solid rgba(240,236,228,.16);
}

.program-suite {
  background:
    linear-gradient(135deg, rgba(12,12,12, .96), rgba(16,16,15, .82)),
    var(--ink);
}

.program-grid,
.ticket-grid,
.menu-grid,
.detail-grid,
.ritual-grid,
.livery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card,
.ticket-render,
.menu-render,
.detail-card,
.route-board,
.livery-card,
.service-ledger {
  border: 1px solid rgba(240,236,228,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 20px 70px rgba(0,0,0,.24);
  overflow: hidden;
}

.program-card,
.detail-card,
.livery-card,
.service-ledger {
  padding: 24px;
}

.program-card h3,
.detail-card h3,
.livery-card h3,
.service-ledger h3,
.menu-render h3,
.ticket-render h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.05;
}

.program-card p,
.detail-card p,
.livery-card p,
.service-ledger p,
.menu-render p,
.ticket-render p {
  color: rgba(248,245,238,.75);
  line-height: 1.5;
}

.spec-list,
.menu-list,
.route-list,
.ticket-meta {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li,
.menu-list li,
.route-list li,
.ticket-meta li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(240,236,228,.14);
  color: rgba(248,245,238,.72);
}

.spec-list strong,
.menu-list strong,
.route-list strong,
.ticket-meta strong {
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  text-align: right;
}

.ticket-suite,
.menu-suite {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(235,252,255,.96)),
    #f5f1ea;
}

.ticket-suite .section-lede,
.ticket-suite p,
.menu-suite .section-lede,
.menu-suite p {
  color: rgba(10,10,10,.72);
}

.ticket-suite .eyebrow,
.menu-suite .eyebrow {
  color: #1a1a18;
}

.ticket-render {
  position: relative;
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff, #f7f3ec);
  border-color: rgba(18,18,17, .18);
  min-height: 360px;
}

.ticket-render::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(255,255,255,.28), transparent 18%),
    linear-gradient(135deg, transparent 0 68%, rgba(255,255,255,.16) 68% 100%);
  pointer-events: none;
}

.ticket-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  color: var(--ivory);
  background: linear-gradient(135deg, #0d0d0d, #141412);
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.ticket-body {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.ticket-route {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 3.1vw, 44px);
  line-height: .9;
}

.ticket-line {
  height: 1px;
  flex: 1;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(10,10,10,.18), var(--gold), rgba(10,10,10,.18));
}

.ticket-meta li,
.ticket-render p {
  color: rgba(10,10,10,.72);
}

.ticket-meta strong {
  color: var(--ink);
}

.baggage-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px dashed rgba(10,10,10,.24);
  border-radius: 999px;
  color: #121210;
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.menu-render {
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff, #f2ede4);
  border-color: rgba(18,18,17, .16);
}

.menu-cover {
  padding: 22px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 80% 15%, rgba(240,236,228,.22), transparent 24%),
    linear-gradient(135deg, #0a0a0a, #141412);
}

.menu-body {
  padding: 22px;
}

.menu-list li {
  color: rgba(10,10,10,.72);
  border-color: rgba(10,10,10,.14);
}

.menu-list strong {
  color: var(--ink);
}

.route-board {
  grid-column: span 2;
  padding: 24px;
  background: linear-gradient(135deg, rgba(3, 15, 28, .94), rgba(14,14,14, .82));
}

.route-board h3 {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.5vw, 36px);
}

.route-list li {
  display: grid;
  grid-template-columns: 1.1fr .7fr .7fr .7fr;
  align-items: center;
}

.route-list span {
  color: rgba(248,245,238,.68);
}

.route-list strong {
  text-align: left;
}

.meal-photo {
  position: relative;
  min-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(240,236,228,.18);
}

.meal-photo img,
.meal-photo video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.meal-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,6,9,.78), transparent 52%);
}

.meal-caption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.meal-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 36px);
}

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

.ritual-step {
  min-height: 240px;
  padding: 20px;
  border: 1px solid rgba(240,236,228,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.052);
}

.ritual-step span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.ritual-step h3 {
  font-family: var(--font-display);
  font-size: 28px;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr);
  gap: 18px;
  align-items: stretch;
}

.detail-hero-grid .menu-grid {
  grid-template-columns: 1fr;
}

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

.story-tile,
.tier,
.fleet-spec,
.destination,
.timeline-item,
.contact-block {
  padding: 22px;
}

.kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 800;
}

.story-tile h3,
.tier h3,
.fleet-spec h3,
.destination h3,
.timeline-item h3,
.contact-block h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}

.story-tile p,
.tier p,
.fleet-spec p,
.destination p,
.timeline-item p,
.contact-block p {
  color: rgba(248,245,238,.68);
  line-height: 1.55;
}

.contact-block a,
.story-tile a,
.tier a,
.destination a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,.45);
}

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

.metric-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: rgba(248,245,238,.72);
}

.metric-list strong {
  font-family: var(--font-ui);
  color: #fff;
}

.atlas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 18px;
  align-items: stretch;
}

.atlas-stage {
  min-height: 560px;
  position: relative;
  border: 1px solid rgba(240,236,228,.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(21,29,38,.76), rgba(7,9,13,.82));
  overflow: hidden;
}

.atlas-svg {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
}

.atlas-svg svg {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.coast {
  fill: none;
  stroke: rgba(255,255,255,.17);
  stroke-width: 1.4;
}

.coast.alt {
  stroke: rgba(240,236,228,.18);
}

.route-shadow {
  fill: none;
  stroke: rgba(0,0,0,.42);
  stroke-width: 12;
  stroke-linecap: round;
}

.route-line {
  fill: none;
  stroke: url(#routeGradient);
  stroke-width: 3;
  stroke-linecap: round;
  filter: url(#glow);
  stroke-dasharray: 16 14;
  animation: routeMarch 2.4s linear infinite;
}

.route-beacon {
  fill: var(--gold-soft);
  filter: url(#glow);
}

.map-node circle {
  fill: rgba(255,255,255,.72);
  stroke: rgba(10,10,10,.72);
  stroke-width: 2;
}

.map-node.active circle {
  fill: var(--gold-soft);
  stroke: #fff;
  filter: url(#glow);
}

.map-node text {
  fill: rgba(248,245,238,.7);
  font: 400 11px "Audiowide", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .04em;
}

@keyframes routeMarch {
  to { stroke-dashoffset: -30; }
}

.atlas-panel {
  border: 1px solid rgba(240,236,228,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.052);
  padding: 22px;
}

.atlas-panel h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
}

.route-readout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.route-readout div {
  border: 1px solid rgba(240,236,228,.16);
  border-radius: 6px;
  padding: 14px;
  background: rgba(0,0,0,.14);
}

.route-readout span {
  display: block;
  margin-bottom: 5px;
  color: rgba(248,245,238,.58);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0;
}

.page-hero {
  min-height: 70svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero-inner {
  width: min(1400px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 138px 0 58px;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  max-width: 780px;
  color: rgba(248,245,238,.78);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, .55fr);
  gap: 18px;
  align-items: start;
}

.dark-panel,
.light-panel {
  border-radius: 8px;
  border: 1px solid rgba(240,236,228,.16);
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255,255,255,.052);
}

.light-band {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.56), rgba(247,240,229,.95)),
    var(--paper);
}

.light-band .section-lede,
.light-band p {
  color: rgba(10,10,10,.72);
}

.light-band .eyebrow,
.light-band .kicker {
  color: #1a1a18;
}

.light-band .fleet-spec,
.light-band .tier,
.light-band .destination,
.light-band .story-tile,
.light-band .timeline-item,
.light-band .contact-block,
.light-band .dark-panel,
.light-band .light-panel {
  color: var(--ink);
  border-color: rgba(180,176,168,.16);
  background: rgba(255,255,255,.66);
  box-shadow: 0 18px 50px rgba(10,10,10,.08);
}

.light-band .metric-list li {
  color: rgba(10,10,10,.72);
  border-color: var(--line-dark);
}

.light-band .metric-list strong,
.light-band h2,
.light-band h3 {
  color: var(--ink);
}

.tab-row,
.segment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.tab-button,
.segment-button {
  padding: 10px 14px;
  color: inherit;
  background: rgba(255,255,255,.08);
  border: 1px solid currentColor;
  border-color: rgba(255,255,255,.2);
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0;
}

.light-band .tab-button,
.light-band .segment-button {
  border-color: var(--line-dark);
  background: rgba(10,10,10,.04);
}

.tab-button.is-active,
.segment-button.is-active {
  color: var(--ink);
  border-color: transparent;
  background: var(--gold-soft);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.boarding-pass {
  position: sticky;
  top: 112px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(247,240,229,.98), rgba(231,226,216,.94));
  color: var(--ink);
  box-shadow: var(--shadow);
}

.pass-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
  text-transform: uppercase;
}

.pass-body {
  padding: 20px;
}

.pass-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 40px;
}

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

.pass-grid div {
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
}

.pass-grid span {
  display: block;
  margin-bottom: 4px;
  color: rgba(10,10,10,.56);
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0;
}

.pass-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(10,10,10,.24);
}

.concierge-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(1, 6, 10, .72);
  backdrop-filter: blur(14px);
}

.concierge-modal.is-open {
  display: grid;
}

.modal-panel {
  width: min(620px, 100%);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-panel header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--ivory);
  background: var(--ink);
}

.modal-panel button {
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 22px;
}

.modal-panel div {
  padding: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 38px clamp(16px, 4vw, 54px);
  background: #070707;
}

.footer-grid {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(248,245,238,.62);
  font-size: 13px;
}

.fine-print {
  color: rgba(248,245,238,.46);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.page-simple {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--ink);
}

.simple-shell {
  width: min(760px, calc(100vw - 32px));
  text-align: center;
}

.simple-shell h1 {
  font-size: clamp(30px, 7vw, 68px);
}

.simple-shell .brand-lockup {
  margin-bottom: 30px;
}

@media (max-width: 1040px) {
  .hero-inner,
  .section-head,
  .media-grid,
  .atlas,
  .split {
    grid-template-columns: 1fr;
  }

  .film-grid .media-tile.featured,
  .render-card.is-wide {
    grid-column: auto;
  }

  .story-grid,
  .fleet-grid,
  .tier-grid,
  .destination-grid,
  .render-grid,
  .program-grid,
  .ticket-grid,
  .menu-grid,
  .detail-grid,
  .livery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ritual-grid,
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .route-board {
    grid-column: auto;
  }

  .booking-panel {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(3, 10, 16, .96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-inner {
    padding-top: 112px;
  }

  .booking-grid,
  .quote-strip,
  .pass-grid,
  .route-readout {
    grid-template-columns: 1fr;
  }

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

  .quote-strip div:last-child {
    border-bottom: 0;
  }

  .story-grid,
  .fleet-grid,
  .tier-grid,
  .destination-grid,
  .render-grid,
  .program-grid,
  .ticket-grid,
  .menu-grid,
  .detail-grid,
  .livery-grid,
  .ritual-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .brand-lockup span {
    font-size: 13px;
  }

  .sound-toggle {
    min-width: 72px;
    padding-inline: 10px;
  }

  .hero-status {
    display: none;
  }

  h1 {
    font-size: clamp(28px, 9.5vw, 50px);
  }

  .media-tile {
    min-height: 330px;
  }

  .fullscreen-panel,
  .fullscreen-panel.compact {
    min-height: 82svh;
  }

  .fullscreen-copy {
    padding-top: 118px;
  }

  .fullscreen-copy h2 {
    font-size: clamp(24px, 7vw, 40px);
  }

  .atlas-stage,
  .atlas-svg {
    min-height: 420px;
  }
}

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