/* ============================================================
   MERIDIAN — The Art of the Voyage
   Design system: restrained, editorial, oceanic
   ============================================================ */

:root {
  --ink: #0d1b24;
  --ink-deep: #081118;
  --ink-soft: #16262f;
  --ivory: #f4efe5;
  --paper: #faf7f0;
  --paper-dim: #efe9dc;
  --brass: #a5854f;
  --brass-bright: #c2a161;
  --sea: #2e4a57;
  --mist: #8ba0a8;
  --text: #2b3b44;
  --text-soft: #5c6f77;
  --hairline: rgba(13, 27, 36, 0.16);
  --hairline-light: rgba(244, 239, 229, 0.22);
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --ease-lux: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --header-h: 84px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--brass); color: var(--paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.display {
  font-size: clamp(2.9rem, 7.2vw, 6.4rem);
  line-height: 1.02;
  font-weight: 300;
}
.display em, h1 em, h2 em { font-style: italic; font-weight: 300; }
.h-xl { font-size: clamp(2.3rem, 4.6vw, 4rem); font-weight: 300; }
.h-lg { font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 300; }
.h-md { font-size: clamp(1.5rem, 2.4vw, 2.05rem); }
.h-sm { font-size: 1.32rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}
.eyebrow--bare::before { display: none; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--sea);
}
.lede em { font-style: italic; }
.small { font-size: 0.85rem; color: var(--text-soft); }
.serif-i { font-family: var(--serif); font-style: italic; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: 1560px; }
.container--narrow { max-width: 880px; }
.section { padding-block: clamp(5rem, 11vw, 9.5rem); position: relative; }
.section--tight { padding-block: clamp(3.2rem, 7vw, 5.5rem); }
.section--dark { background: var(--ink); color: var(--ivory); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ivory); }
.section--dark .lede { color: #b9c6c9; }
.section--ivory { background: var(--ivory); }
.section-head { max-width: 640px; margin-bottom: clamp(2.6rem, 6vw, 4.5rem); }
.section-head .eyebrow { margin-bottom: 1.3rem; }
.section-head p { margin-top: 1.4rem; color: var(--text-soft); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--split {
  max-width: none; display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 2rem;
}
.hr { border: 0; border-top: 1px solid var(--hairline); }
.rule {
  width: 100%; height: 1px; background: var(--hairline); border: 0;
}
.rule--light { background: var(--hairline-light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }

/* ---------- Header ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 300;
  background: var(--ink); color: var(--ivory);
  padding: 0.7rem 1.2rem; font-size: 0.8rem; letter-spacing: 0.1em;
  transition: top 0.3s var(--ease-soft);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 220;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: transform 0.55s var(--ease-lux), background 0.45s ease, box-shadow 0.45s ease;
  color: var(--ivory);
}
.site-header .container--wide {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.site-header.is-solid {
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--hairline);
}
.site-header.is-hidden { transform: translateY(-100%); }
.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  padding-left: 0.42em; /* optically recenter letterspaced wordmark */
  white-space: nowrap;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.53rem;
  letter-spacing: 0.5em;
  color: var(--brass-bright);
  margin-top: -0.2rem;
}
.main-nav { display: flex; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.main-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.4rem 0;
  position: relative;
  opacity: 0.92;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-lux);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase;
  border: 1px solid currentColor; padding: 0.85rem 1.7rem;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  white-space: nowrap;
}
.site-header:not(.is-solid) .header-cta:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.site-header.is-solid .header-cta:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px; position: relative; z-index: 210;
}
.menu-toggle span {
  position: absolute; left: 10px; width: 24px; height: 1.5px;
  background: currentColor; transition: transform 0.45s var(--ease-lux), opacity 0.3s;
}
.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 29px; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink-deep);
  color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.55s var(--ease-soft), visibility 0.55s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu a.mnav {
  font-family: var(--serif); font-size: clamp(2rem, 8vw, 3.2rem);
  padding: 0.35em 0; border-bottom: 1px solid var(--hairline-light);
  display: flex; justify-content: space-between; align-items: baseline;
  transform: translateY(24px); opacity: 0;
  transition: transform 0.7s var(--ease-lux), opacity 0.7s var(--ease-lux);
}
.mobile-menu a.mnav small { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass-bright); }
body.menu-open .mobile-menu a.mnav { transform: none; opacity: 1; }
.mobile-menu .menu-foot { margin-top: 2.5rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); }

/* ---------- Page transition veil ---------- */
.veil {
  position: fixed; inset: 0; z-index: 400; background: var(--ink-deep);
  pointer-events: none; opacity: 0;
  transition: opacity 0.45s var(--ease-soft);
}
body.page-leaving .veil { opacity: 1; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageIn 0.7s var(--ease-soft); }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 500; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--brass-bright); }
.cursor-ring {
  width: 38px; height: 38px; border: 1px solid rgba(165, 133, 79, 0.65);
  transition: width 0.35s var(--ease-soft), height 0.35s var(--ease-soft), border-color 0.35s, opacity 0.3s;
}
.cursor-ring.is-active { width: 62px; height: 62px; border-color: rgba(194, 161, 97, 0.95); }
.cursor-ring .cursor-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass-bright);
  opacity: 0; transition: opacity 0.3s;
}
.cursor-ring.is-labelled { width: 74px; height: 74px; background: rgba(8, 17, 24, 0.55); backdrop-filter: blur(2px); }
.cursor-ring.is-labelled .cursor-label { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--ivory); overflow: hidden;
  background: var(--ink-deep);
}
.hero--inner { min-height: 78vh; min-height: 78svh; }
.hero__media, .hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media img {
  animation: heroBreathe 26s var(--ease-soft) forwards;
  will-change: transform;
}
@keyframes heroBreathe { from { transform: scale(1.12); } to { transform: scale(1.0); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 17, 24, 0.66) 0%, rgba(8, 17, 24, 0.28) 22%, rgba(8, 17, 24, 0) 38%),
    linear-gradient(to top, rgba(8, 17, 24, 0.86) 0%, rgba(8, 17, 24, 0.52) 34%, rgba(8, 17, 24, 0.28) 62%, rgba(8, 17, 24, 0.22) 100%);
}
.hero__content {
  position: relative; z-index: 2; width: 100%;
  padding-bottom: clamp(4rem, 10vh, 7.5rem);
  padding-top: calc(var(--header-h) + 3rem);
}
.hero .eyebrow { color: var(--brass-bright); }
.hero .eyebrow::before { background: var(--brass-bright); }
.hero h1 { color: var(--ivory); margin-top: 1.6rem; max-width: 15ch; }
.hero .lede { color: rgba(244, 239, 229, 0.88); max-width: 46ch; margin-top: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 2.8rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 2.6rem; margin-top: 3.4rem;
  padding-top: 1.8rem; border-top: 1px solid var(--hairline-light);
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,239,229,0.75);
}
.hero__meta strong { display: block; font-weight: 400; color: var(--ivory); margin-top: 0.35rem; font-size: 0.82rem; }
.hero__caption {
  position: absolute; right: var(--gutter); bottom: 1.4rem; z-index: 3;
  font-size: 0.66rem; letter-spacing: 0.12em; color: rgba(244,239,229,0.55);
  writing-mode: vertical-rl; text-orientation: mixed;
}
.scroll-hint {
  position: absolute; left: 50%; bottom: 0; z-index: 3; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(244, 239, 229, 0.65); padding-bottom: 1.2rem;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 54px;
  background: linear-gradient(to bottom, var(--brass-bright), transparent);
  animation: scrollPulse 2.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse { 0%, 100% { transform: scaleY(0.35); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 1.15rem 2.3rem; border: 1px solid transparent;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color 0.45s ease, border-color 0.45s ease;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.5s var(--ease-lux);
}
.btn .arr { transition: transform 0.45s var(--ease-lux); }
.btn:hover .arr { transform: translateX(5px); }
.btn--light { color: var(--ivory); border-color: rgba(244,239,229,0.55); }
.btn--light::before { background: var(--ivory); }
.btn--light:hover { color: var(--ink); border-color: var(--ivory); }
.btn--light:hover::before { transform: scaleY(1); }
.btn--dark { color: var(--ink); border-color: rgba(13,27,36,0.45); }
.btn--dark::before { background: var(--ink); }
.btn--dark:hover { color: var(--ivory); border-color: var(--ink); }
.btn--dark:hover::before { transform: scaleY(1); }
.btn--brass { color: var(--ink); border-color: var(--brass); }
.aside-card--dark .btn--brass { color: var(--ivory); border-color: var(--brass-bright); }
.section--dark .btn--brass { color: var(--ivory); border-color: var(--brass-bright); }
.btn--brass::before { background: var(--brass); }
.btn--brass:hover { color: var(--paper); }
.btn--brass:hover::before { transform: scaleY(1); }
.btn--solid { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--solid::before { background: var(--brass); }
.btn--solid:hover { border-color: var(--brass); }
.btn--solid:hover::before { transform: scaleY(1); }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

.link-quiet {
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink);
  border-bottom: 1px solid var(--brass); padding-bottom: 0.45rem;
  transition: color 0.3s, border-color 0.3s;
}
.link-quiet:hover { color: var(--brass); }
.link-quiet .arr { transition: transform 0.4s var(--ease-lux); }
.link-quiet:hover .arr { transform: translateX(5px); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 2.8rem) clamp(1.2rem, 2.4vw, 2.2rem); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.dcard { position: relative; display: block; }
.dcard__media {
  position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink-soft);
}
.dcard--landscape .dcard__media { aspect-ratio: 16 / 10; }
.dcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-lux), opacity 1s ease;
  transform: scale(1.02);
}
.dcard:hover .dcard__media img { transform: scale(1.09); }
.dcard__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,17,24,0.35), transparent 55%);
  opacity: 0; transition: opacity 0.8s ease;
}
.dcard:hover .dcard__media::after { opacity: 1; }
.dcard__body { padding-top: 1.3rem; }
.dcard__region {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass);
  display: block; margin-bottom: 0.55rem;
}
.dcard__title { font-size: clamp(1.35rem, 1.8vw, 1.7rem); line-height: 1.15; }
.dcard__meta {
  margin-top: 0.7rem; font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-soft);
  display: flex; justify-content: space-between; gap: 1rem;
}
.dcard__meta .from { color: var(--sea); }
.dcard__view {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(250, 247, 240, 0.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-lux);
}
.dcard:hover .dcard__view { opacity: 1; transform: none; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.4rem, 7vw, 7rem); align-items: center; }
.split--media-first .split__text { order: 2; }
.split__media { position: relative; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--tall { aspect-ratio: 4 / 5; }
.split__media--wide { aspect-ratio: 16 / 11; }
.split__text .eyebrow { margin-bottom: 1.4rem; }
.split__text h2, .split__text h3 { margin-bottom: 1.6rem; }
.split__text p + p { margin-top: 1.2rem; }
.split__text .link-quiet, .split__text .btn { margin-top: 2.2rem; }
.img-caption {
  margin-top: 0.9rem; font-size: 0.72rem; color: var(--text-soft);
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  display: flex; justify-content: space-between; gap: 1rem;
}
.img-caption .credit { font-family: var(--sans); font-style: normal; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); white-space: nowrap; }

/* ---------- Editorial numbers / stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 4.5vw, 4.2rem); font-weight: 300; color: var(--brass-bright); }
.section--dark .stat__num { color: var(--brass-bright); }
.stat__label { font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-soft); margin-top: 0.6rem; }
.section--dark .stat__label { color: rgba(244,239,229,0.6); }

/* ---------- Quote ---------- */
.pull-quote { max-width: 900px; margin-inline: auto; text-align: center; }
.pull-quote blockquote {
  font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.32; font-weight: 300; font-style: italic; color: var(--ink);
}
.section--dark .pull-quote blockquote { color: var(--ivory); }
.pull-quote cite {
  display: block; margin-top: 2rem; font-style: normal;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass);
}

/* ---------- Filters ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center;
  padding-block: 1.6rem; border-block: 1px solid var(--hairline);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.filter-bar .filter-label { font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-soft); margin-right: 0.8rem; }
.chip {
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.7rem 1.35rem; border: 1px solid var(--hairline);
  transition: all 0.35s ease; color: var(--text-soft);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.filter-count { margin-left: auto; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); }
.filter-empty {
  display: none; text-align: center; padding: 5rem 1rem;
  font-family: var(--serif); font-size: 1.6rem; font-style: italic; color: var(--text-soft);
}
.filter-empty.is-visible { display: block; }
.card-grid .dcard.is-hidden { display: none; }
@keyframes cardIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.card-grid .dcard.is-entering { animation: cardIn 0.8s var(--ease-lux) both; }

/* ---------- Voyages table ---------- */
.voyage-list { border-top: 1px solid var(--hairline); }
.voyage-row {
  display: grid; grid-template-columns: 1.6fr 1fr 0.8fr 0.7fr auto;
  gap: 1.5rem; align-items: center;
  padding: 2.1rem 0; border-bottom: 1px solid var(--hairline);
  transition: background 0.4s ease, padding 0.4s var(--ease-lux);
  position: relative;
}
.voyage-row:hover { background: rgba(13,27,36,0.028); }
.voyage-row__name { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 1.9rem); color: var(--ink); line-height: 1.15; }
.voyage-row__name small { display: block; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.5rem; }
.voyage-row__cell { font-size: 0.8rem; color: var(--text-soft); letter-spacing: 0.06em; }
.voyage-row__cell strong { display: block; font-weight: 400; color: var(--ink); font-size: 0.92rem; }
.voyage-row__price { font-family: var(--serif); font-size: 1.35rem; color: var(--sea); white-space: nowrap; }
.voyage-row__price small { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); display: block; }
.voyage-row__go {
  width: 52px; height: 52px; border: 1px solid var(--hairline); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease; color: var(--ink);
}
.voyage-row:hover .voyage-row__go { background: var(--ink); color: var(--ivory); border-color: var(--ink); transform: rotate(-45deg); }
.voyage-row.is-hidden { display: none; }

/* ---------- Day by day itinerary ---------- */
.day-list { border-top: 1px solid var(--hairline); }
.day {
  display: grid; grid-template-columns: 110px 1fr; gap: clamp(1.4rem, 4vw, 3.5rem);
  padding: 2.4rem 0; border-bottom: 1px solid var(--hairline);
}
.day__num {
  font-family: var(--serif); font-size: 2.1rem; font-weight: 300; color: var(--brass);
  line-height: 1; padding-top: 0.35rem;
}
.day__num small { display: block; font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.5rem; }
.day__body h4 { font-size: 1.45rem; margin-bottom: 0.55rem; }
.day__times { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.8rem; }
.day__body p { color: var(--text-soft); max-width: 62ch; }
.day--sea h4 { font-style: italic; }

/* ---------- Detail page sidebar ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; }
.detail-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.aside-card { border: 1px solid var(--hairline); padding: 2.2rem; background: var(--paper); }
.aside-card--dark { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.aside-card h3 { font-size: 1.5rem; margin-bottom: 1.4rem; }
.aside-card--dark h3 { color: var(--ivory); }
.aside-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--hairline);
  font-size: 0.85rem;
}
.aside-card--dark .aside-row { border-color: var(--hairline-light); }
.aside-row span:first-child { color: var(--text-soft); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; padding-top: 0.2rem; }
.aside-card--dark .aside-row span:first-child { color: rgba(244,239,229,0.55); }
.aside-row span:last-child { text-align: right; }
.price-line { font-family: var(--serif); font-size: 2rem; color: var(--brass-bright); line-height: 1.1; }
.price-line small { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,239,229,0.6); display: block; margin-bottom: 0.4rem; }
.date-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 1.6rem; }
.date-pill {
  font-size: 0.66rem; letter-spacing: 0.14em; padding: 0.55rem 0.9rem;
  border: 1px solid var(--hairline-light); color: var(--ivory); cursor: pointer;
  transition: all 0.3s ease;
}
.date-pill:hover, .date-pill.is-selected { background: var(--brass); border-color: var(--brass); color: var(--ink-deep); }
.ship-note { font-size: 0.78rem; color: var(--text-soft); margin-top: 1.4rem; line-height: 1.7; }

/* ---------- Suite / tier cards ---------- */
.tier { border: 1px solid var(--hairline); padding: 2.4rem; display: flex; flex-direction: column; gap: 1.1rem; background: var(--paper); transition: transform 0.6s var(--ease-lux), box-shadow 0.6s ease; }
.tier:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(13,27,36,0.25); }
.tier__name { font-family: var(--serif); font-size: 1.65rem; }
.tier__size { font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass); }
.tier__desc { font-size: 0.92rem; color: var(--text-soft); flex: 1; }
.tier__price { font-family: var(--serif); font-size: 1.4rem; color: var(--sea); }
.tier__price small { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-soft); display: block; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(0.8rem, 1.6vw, 1.4rem); }
.gallery figure { position: relative; overflow: hidden; margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-lux); cursor: pointer; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .g-a { grid-column: span 7; aspect-ratio: 16/10; }
.gallery .g-b { grid-column: span 5; aspect-ratio: 4/3.35; }
.gallery .g-c { grid-column: span 5; aspect-ratio: 4/3.35; }
.gallery .g-d { grid-column: span 7; aspect-ratio: 16/10; }
.gallery figcaption {
  padding-top: 0.8rem; font-size: 0.68rem; color: var(--text-soft); letter-spacing: 0.06em;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 600; background: rgba(8, 17, 24, 0.94);
  display: flex; align-items: center; justify-content: center; padding: 4vw;
  opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; box-shadow: 0 40px 90px rgba(0,0,0,0.5); }
.lightbox__caption {
  position: absolute; bottom: 2rem; left: 0; right: 0; text-align: center;
  color: rgba(244,239,229,0.75); font-family: var(--serif); font-style: italic; font-size: 1.05rem;
}
.lightbox__close {
  position: absolute; top: 1.6rem; right: 2rem; color: var(--ivory);
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 0.8rem; border: 1px solid var(--hairline-light);
}
.lightbox__close:hover { background: var(--ivory); color: var(--ink); }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(244,239,229,0.6); display: flex; gap: 0.8rem; flex-wrap: wrap;
}
.crumbs a:hover { color: var(--ivory); }
.crumbs .sep { color: var(--brass-bright); }
.crumbs--dark { color: var(--text-soft); }
.crumbs--dark a:hover { color: var(--ink); }

/* ---------- Highlight list (destination) ---------- */
.hl-list { border-top: 1px solid var(--hairline); }
.hl {
  display: grid; grid-template-columns: 60px 1fr 1.1fr; gap: clamp(1.2rem, 3.5vw, 3rem);
  padding: 2rem 0; border-bottom: 1px solid var(--hairline); align-items: baseline;
}
.hl__idx { font-family: var(--serif); font-size: 1.3rem; color: var(--brass); font-style: italic; }
.hl__name { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); line-height: 1.2; }
.hl__name small { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-soft); margin-top: 0.4rem; }
.hl__desc { font-size: 0.94rem; color: var(--text-soft); }

/* ---------- Spec sheet ---------- */
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hairline-light); border-left: 1px solid var(--hairline-light); }
.spec { padding: 1.8rem 1.6rem; border-right: 1px solid var(--hairline-light); border-bottom: 1px solid var(--hairline-light); }
.spec b { display: block; font-family: var(--serif); font-weight: 300; font-size: 1.9rem; color: var(--ivory); }
.spec span { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244,239,229,0.55); }

/* ---------- Experience timeline ---------- */
.tline { border-top: 1px solid var(--hairline); }
.tline__row { display: grid; grid-template-columns: 150px 1fr; gap: clamp(1.5rem, 4vw, 4rem); padding: 2.3rem 0; border-bottom: 1px solid var(--hairline); }
.tline__time { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--brass); }
.tline__row h4 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.tline__row p { color: var(--text-soft); max-width: 60ch; }

/* ---------- FAQ accordion ---------- */
.faq { border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding: 1.7rem 0; text-align: left;
  font-family: var(--serif); font-size: 1.35rem; color: var(--ink);
  transition: color 0.3s;
}
.faq__q:hover { color: var(--brass); }
.faq__q .fx { position: relative; width: 14px; height: 14px; flex: none; }
.faq__q .fx::before, .faq__q .fx::after {
  content: ""; position: absolute; background: var(--brass); transition: transform 0.4s var(--ease-lux);
}
.faq__q .fx::before { left: 0; top: 6px; width: 14px; height: 1.5px; }
.faq__q .fx::after { left: 6px; top: 0; width: 1.5px; height: 14px; }
.faq__item.is-open .fx::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease-lux); }
.faq__a p { padding: 0 0 1.8rem; color: var(--text-soft); max-width: 68ch; }

/* ---------- Enquiry wizard ---------- */
.enquiry { max-width: 860px; margin-inline: auto; }
.wiz-progress { display: flex; gap: 0; margin-bottom: 3.5rem; border: 1px solid var(--hairline); }
.wiz-step-ind {
  flex: 1; padding: 1.1rem 0.5rem; text-align: center;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft);
  border-right: 1px solid var(--hairline); position: relative; transition: color 0.3s, background 0.3s;
}
.wiz-step-ind:last-child { border-right: 0; }
.wiz-step-ind b { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 300; margin-bottom: 0.2rem; }
.wiz-step-ind.is-current { background: var(--ink); color: var(--ivory); }
.wiz-step-ind.is-done { color: var(--brass); }
.wiz-pane { display: none; }
.wiz-pane.is-active { display: block; animation: cardIn 0.7s var(--ease-lux) both; }
.wiz-pane h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0.8rem; }
.wiz-pane > p { color: var(--text-soft); margin-bottom: 2.4rem; }
.wiz-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; }

.field { margin-bottom: 2rem; position: relative; }
.field label {
  display: block; font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 0.7rem;
}
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--hairline);
  font-family: var(--serif); font-size: 1.3rem; color: var(--ink);
  padding: 0.55rem 0; outline: none; border-radius: 0;
  transition: border-color 0.3s;
  appearance: none; -webkit-appearance: none;
}
.field textarea { min-height: 110px; resize: vertical; font-size: 1.15rem; line-height: 1.6; }
.field select { cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brass); }
.field.has-error input, .field.has-error select { border-bottom-color: #b0543f; }
.field .err {
  display: none; font-size: 0.7rem; letter-spacing: 0.1em; color: #b0543f; margin-top: 0.5rem;
}
.field.has-error .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.choice {
  border: 1px solid var(--hairline); padding: 1.5rem 1.6rem; cursor: pointer;
  transition: all 0.35s ease; position: relative;
}
.choice:hover { border-color: var(--ink); }
.choice.is-selected { border-color: var(--brass); background: rgba(165, 133, 79, 0.06); }
.choice.is-selected::after {
  content: ""; position: absolute; top: 1.2rem; right: 1.2rem; width: 8px; height: 8px;
  background: var(--brass); border-radius: 50%;
}
.choice b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.25rem; color: var(--ink); }
.choice span { font-size: 0.78rem; color: var(--text-soft); }
.choice .choice-price { display: block; margin-top: 0.7rem; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); }

.review-block { border: 1px solid var(--hairline); padding: 2.2rem; margin-bottom: 1.5rem; }
.review-block h4 { font-size: 0.66rem; font-family: var(--sans); letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }
.review-block .rv { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; font-size: 0.92rem; border-bottom: 1px dashed var(--hairline); }
.review-block .rv:last-child { border-bottom: 0; }
.review-block .rv span:first-child { color: var(--text-soft); }

.wiz-done { text-align: center; padding: 3rem 0 1rem; display: none; }
.wiz-done.is-active { display: block; animation: cardIn 0.9s var(--ease-lux) both; }
.wiz-done .ref {
  font-family: var(--serif); font-size: 2rem; color: var(--brass);
  margin: 1.4rem 0 0.6rem; letter-spacing: 0.06em;
}
.wiz-done .seal {
  width: 74px; height: 74px; margin: 0 auto 1.8rem; border: 1px solid var(--brass); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; color: var(--brass); font-style: italic;
}
.consent { display: flex; gap: 0.9rem; align-items: flex-start; font-size: 0.82rem; color: var(--text-soft); cursor: pointer; }
.consent input { width: 16px; height: 16px; margin-top: 0.25rem; accent-color: var(--brass); }
.consent.has-error { color: #b0543f; }

/* ---------- Journal ---------- */
.jcard { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2.4rem, 5vw, 4rem); border-bottom: 1px solid var(--hairline); }
.jcard:first-child { border-top: 1px solid var(--hairline); }
.jcard__media { overflow: hidden; aspect-ratio: 16/10; }
.jcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-lux); }
.jcard:hover .jcard__media img { transform: scale(1.07); }
.jcard__body .eyebrow { margin-bottom: 1rem; }
.jcard__body h3 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); margin-bottom: 1rem; }
.jcard__body p { color: var(--text-soft); }
.jcard__body .link-quiet { margin-top: 1.6rem; }
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 130; height: 2px; width: 100%;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
}
.article-body { font-size: 1.05rem; }
.article-body p { margin-bottom: 1.6rem; color: var(--text); max-width: 66ch; }
.article-body > p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 4.4rem; line-height: 0.8;
  float: left; padding: 0.45rem 0.8rem 0 0; color: var(--brass);
}
.article-body h3 { font-size: 1.7rem; margin: 2.8rem 0 1.2rem; }
.article-body ul { margin: 0 0 1.6rem 1.2rem; list-style: none; }
.article-body ul li { padding-left: 1.4rem; position: relative; margin-bottom: 0.7rem; color: var(--text-soft); }
.article-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }
.article-body blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.6rem; line-height: 1.4;
  color: var(--sea); border-left: 1px solid var(--brass); padding-left: 2rem; margin: 2.6rem 0;
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: var(--ivory); }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 120%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(8, 17, 24, 0.68); }
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: var(--ivory); max-width: 22ch; margin-inline: auto; }
.cta-band .eyebrow { color: var(--brass-bright); justify-content: center; }
.cta-band .eyebrow::before { background: var(--brass-bright); }
.cta-band .btn { margin-top: 2.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: var(--ivory); padding: clamp(4rem, 8vw, 6.5rem) 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3.5rem; border-bottom: 1px solid var(--hairline-light); }
.footer-brand .brand { font-size: 1.9rem; }
.footer-brand p { margin-top: 1.4rem; font-size: 0.85rem; color: rgba(244,239,229,0.6); max-width: 32ch; }
.footer-col h5 { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brass-bright); margin-bottom: 1.4rem; font-weight: 400; }
.footer-col a, .footer-col span { display: block; font-size: 0.85rem; color: rgba(244,239,229,0.72); padding: 0.28rem 0; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--ivory); padding-left: 0.4rem; }
.news-form { display: flex; border-bottom: 1px solid var(--hairline-light); margin-top: 0.4rem; }
.news-form input {
  flex: 1; background: transparent; border: 0; outline: none; color: var(--ivory);
  font-family: var(--serif); font-size: 1.1rem; padding: 0.7rem 0;
}
.news-form input::placeholder { color: rgba(244,239,229,0.35); font-style: italic; }
.news-form button {
  color: var(--brass-bright); font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 0 0.4rem; transition: color 0.3s;
}
.news-form button:hover { color: var(--ivory); }
.news-note { font-size: 0.72rem; color: rgba(244,239,229,0.45); margin-top: 0.9rem; min-height: 1.2em; transition: color 0.3s; }
.news-note.is-ok { color: var(--brass-bright); }
.news-note.is-err { color: #d08a77; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2.2rem; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,239,229,0.4); }
.footer-bottom a { color: rgba(244,239,229,0.55); }
.footer-bottom a:hover { color: var(--ivory); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1.1s var(--ease-soft), transform 1.1s var(--ease-lux); transition-delay: var(--reveal-delay, 0s); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--fade { transform: none; }
.reveal--scale { transform: scale(1.06); }
[data-parallax] { will-change: transform; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.maxw-56 { max-width: 56ch; }
.maxw-46 { max-width: 46ch; }
.mx-auto { margin-inline: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .voyage-row { grid-template-columns: 1.4fr 1fr 0.8fr auto; }
  .voyage-row__cell--dates { display: none; }
}
@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .grid-2, .split { grid-template-columns: 1fr; }
  .split--media-first .split__text { order: 0; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery .g-a, .gallery .g-b, .gallery .g-c, .gallery .g-d { grid-column: span 12; aspect-ratio: 16/10; }
  .jcard { grid-template-columns: 1fr; }
  .day { grid-template-columns: 64px 1fr; }
  .hl { grid-template-columns: 1fr; gap: 0.6rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .choice-grid { grid-template-columns: 1fr; }
  .voyage-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; }
  .voyage-row__cell { display: none; }
  .voyage-row__price { grid-column: 1; }
  .voyage-row__go { grid-column: 2; grid-row: 1 / span 2; }
  .filter-count { display: none; }
  .hero__caption { display: none; }
  .wiz-step-ind span.lbl { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { animation: none; transform: none; }
  body { animation: none; }
}

/* ---------- Focus ---------- */
:focus-visible { outline: 1.5px solid var(--brass); outline-offset: 3px; }
