/* ════════════════════════════════════════════════════════════════
   TAILORED TRAIL TRAVEL — "golden-voyage-editorial"
   Parchment & sea-ink editorial with brass detailing.
   ════════════════════════════════════════════════════════════════ */

:root {
  /* palette */
  --bg:        #f4efe6;   /* warm parchment */
  --surface:   #fbf8f1;   /* lifted cream */
  --wash:      #ece5d6;   /* deeper parchment wash */
  --ink:       #15242e;   /* deep sea ink */
  --muted:     #6b6558;   /* driftwood grey */
  --accent:    #175d5f;   /* deep lagoon */
  --accent-dk: #10484a;
  --gold:      #b3873a;   /* brass — decorative rules, marks, dark-bg text */
  --bronze:    #7d5f26;   /* darker brass — small text on light bg (AA contrast) */
  --gold-soft: rgba(179, 135, 58, 0.35);
  --border:    rgba(21, 36, 46, 0.14);

  /* night band */
  --night-bg:   #12222b;
  --night-text: #f0e9da;
  --night-muted:#93a0a3;

  /* type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-label:   'Josefin Sans', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  --text-hero: clamp(2.9rem, 1.2rem + 7vw, 7rem);
  --text-h2:   clamp(2.1rem, 1.2rem + 3.4vw, 4rem);
  --text-h3:   clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
  --text-deck: clamp(1.05rem, 0.95rem + 0.45vw, 1.25rem);
  --text-base: clamp(0.98rem, 0.9rem + 0.3vw, 1.08rem);
  --text-label: 0.72rem;

  /* rhythm */
  --space-section: clamp(88px, 12vw, 160px);
  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

/* Lenis drives smooth scrolling — native scroll-behavior would fight its per-frame
   updates (rubber-band jank). JS enables the native fallback only when Lenis is absent. */
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3 { margin: 0; font-weight: 500; }

a { color: var(--accent); }

::selection { background: var(--gold-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── grain ─────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 60;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── shared atoms ──────────────────────────────────────── */
.label {
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.label em {
  font-style: normal;
  color: var(--bronze);
}
.label--gold { color: var(--gold); }

h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.section {
  padding: var(--space-section) var(--gutter);
  max-width: 1280px;
  margin: 0 auto;
}

.section__head { margin-bottom: clamp(40px, 6vw, 72px); }

.section__deck {
  font-size: var(--text-deck);
  color: var(--muted);
  max-width: 52ch;
  margin: 18px 0 0;
}
.section__deck a {
  color: var(--accent);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.fineprint {
  margin: 28px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* links grow an underline from the left */
.nav__links a, .footer__nav a, .footer__social a, .plan__direct a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.45s var(--ease);
  padding-bottom: 2px;
}
.nav__links a:hover, .footer__nav a:hover, .footer__social a:hover, .plan__direct a:hover {
  background-size: 100% 1px;
}

/* ─── buttons ───────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px 14px;
  border-radius: 2px;
  border: 1px solid var(--accent);
  overflow: hidden;
  cursor: pointer;
  transition: color 0.4s var(--ease);
}
.btn::before {              /* sweep fill */
  content: '';
  position: absolute; inset: 0;
  background: var(--accent-dk);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }
.btn--solid {
  background: var(--accent);
  color: var(--bg);
  z-index: 0;
}
.btn--ghost {
  color: var(--accent);
  background: transparent;
  z-index: 0;
}
.btn--ghost:hover { color: var(--bg); }
.btn:active { transform: scale(0.98); }

/* ─── nav ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 56; /* above the mobile overlay so the burger stays reachable */
  display: flex; align-items: center; gap: 32px;
  padding: 14px var(--gutter);
  background: rgba(244, 239, 230, 0.88);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); text-decoration: none;
  margin-right: auto;
}
.nav__mark { width: 34px; height: 34px; color: var(--gold); flex: none; }
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav__wordmark em { color: var(--accent); }
.nav__links {
  display: flex; gap: 28px;
  font-family: var(--font-label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__burger { display: none; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible;
  transition: opacity 0.45s var(--ease);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.2rem);
  color: var(--ink); text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 16px;
  transform: translateY(24px); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.mobile-menu.is-open a { transform: none; opacity: 1; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.06s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.24s; }
.mobile-menu a small {
  font-family: var(--font-label);
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--bronze);
}
.mobile-menu__foot {
  font-family: var(--font-label);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: 40px;
}

/* ─── hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 9vh, 110px) var(--gutter) 0;
  min-height: calc(100vh - 64px);
  min-height: calc(100svh - 64px);
  display: flex; flex-direction: column;
}
.hero__inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  flex: 1;
}
.hero__label { color: var(--muted); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 10px 0 26px;
  max-width: 12ch;
}
.hero__title .word { display: inline-block; }
.hero__title em, .hero__title .word-wrap:last-of-type .word { font-style: italic; color: var(--accent); }
.hero__deck {
  font-size: var(--text-deck);
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 34px;
}
.hero__deck strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__assurance {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 36px;
  font-family: var(--font-label);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.hero__assurance-dot { color: var(--gold); font-size: 0.55rem; }

/* postcards */
.hero__art {
  position: relative;
  min-height: 420px;
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}
.postcard {
  position: absolute;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 14px 10px;
  box-shadow: 0 24px 60px -30px rgba(21, 36, 46, 0.35);
}
.postcard figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  padding-top: 10px;
  text-align: center;
}
.postcard--photo {
  width: min(320px, 72%);
  transform: rotate(-2.5deg);
  z-index: 2;
}
.postcard--photo .postcard__frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--wash);
}
.postcard--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
  transform: scale(1.04);
  transition: filter 0.8s var(--ease), transform 0.8s var(--ease);
}
.postcard--photo:hover img { filter: saturate(1); transform: scale(1); }
.postcard__stamp {
  position: absolute; top: -26px; right: -26px;
  width: 84px; height: 84px;
  color: var(--gold);
  background: var(--bg);
  border-radius: 50%;
  padding: 4px;
  transform: rotate(8deg);
  font-family: var(--font-label);
}
.postcard--compass {
  width: min(270px, 60%);
  transform: rotate(3.5deg) translate(38%, -30%);
  color: var(--gold);
  z-index: 1;
}
.postcard--compass .compass { display: block; animation: compass-drift 26s ease-in-out infinite; }
@keyframes compass-drift {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(4deg); }
}

/* horizon waves */
.hero__horizon { margin-top: auto; }
.hero__horizon svg { display: block; width: 100%; height: clamp(50px, 8vw, 110px); }
.wave--far  { fill: var(--wash); }
.wave--near { fill: #e3dac6; }

/* ─── marquee ───────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #e3dac6;
  overflow: hidden;
  padding: 16px 0 13px;
}
.marquee__track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  font-family: var(--font-label);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink);
  animation: marquee 36s linear infinite;
}
.marquee__track span { white-space: nowrap; }
.marquee__track i { color: var(--gold); font-style: normal; font-size: 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── voyages ───────────────────────────────────────────── */
.voyage-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto auto;
  gap: clamp(20px, 3vw, 40px);
}
.voyage { position: relative; }
.voyage--tall { grid-row: 1 / 3; }
.voyage--wide { grid-column: 1 / -1; }

.voyage__media {
  position: relative;
  overflow: hidden;
  background: var(--wash);
  border: 1px solid var(--border);
}
.voyage .voyage__media       { aspect-ratio: 3 / 2; }
.voyage--tall .voyage__media { aspect-ratio: 3 / 4; }
.voyage--wide .voyage__media { aspect-ratio: 21 / 9; }
.voyage__media::after {           /* warm soft-light wash, lifts on hover */
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  mix-blend-mode: soft-light;
  opacity: 0.45;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
}
.voyage:hover .voyage__media::after { opacity: 0; }
.voyage__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transform: scale(1.05);
  transition: filter 0.8s var(--ease), transform 1.1s var(--ease);
}
.voyage:hover .voyage__media img { filter: saturate(1.05); transform: scale(1); }

.voyage__body { padding: 18px 4px 0; }
.voyage__route {
  font-family: var(--font-label);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 8px;
}
.voyage h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  line-height: 1.12;
}
.voyage__desc { color: var(--muted); margin: 10px 0 0; max-width: 46ch; }
.voyage__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin: 12px 0 0;
}
.voyage__price small {
  font-family: var(--font-label);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 4px;
}

/* ─── packages menu ─────────────────────────────────────── */
.packages { position: relative; }
.menu { list-style: none; margin: 0; padding: 0; }
.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr) auto;
  gap: clamp(16px, 3vw, 48px);
  align-items: baseline;
  padding: 30px 8px;
  border-top: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease);
}
.menu > .menu-row:last-child { border-bottom: 1px solid var(--border); }
.menu-row::before {                /* gold rule that draws on hover */
  content: '';
  position: absolute; top: -1px; left: 0;
  height: 1px; width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.menu-row:hover::before { transform: scaleX(1); }
.menu-row:hover { background: rgba(179, 135, 58, 0.05); padding-left: 20px; }
.menu-row h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  transition: color 0.4s var(--ease);
}
.menu-row:hover h3 { color: var(--accent); }
.menu-row p { margin: 0; color: var(--muted); }
.menu-row__price {
  font-family: var(--font-label);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
}
.menu-preview {
  position: fixed; z-index: 40;
  width: 240px; height: 300px;
  background-size: cover; background-position: center;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -25px rgba(21, 36, 46, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: rotate(2deg);
}

/* ─── how it works ──────────────────────────────────────── */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0;
}
.step {
  display: grid;
  grid-template-columns: minmax(90px, 180px) 1fr;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(32px, 4vw, 56px) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step__num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--bronze);
}
.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  margin-bottom: 10px;
}
.step p { margin: 0; color: var(--muted); max-width: 58ch; }
.how__note {
  margin-top: 40px;
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
  max-width: 62ch;
}
.how__note p { margin: 0; color: var(--ink); }
.how__note em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25em;
  color: var(--accent);
  margin-right: 6px;
}

/* ─── night crossing ────────────────────────────────────── */
.night {
  max-width: none;
  background: var(--night-bg);
  color: var(--night-text);
  background-image: radial-gradient(ellipse 90% 60% at 70% 0%, #1a3340 0%, var(--night-bg) 65%);
}
.night__inner { max-width: 1280px; margin: 0 auto; }
.night h2 { color: var(--night-text); max-width: 22ch; }
.night__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px) clamp(32px, 6vw, 96px);
  max-width: 900px;
}
.night-point:nth-child(even) { transform: translateY(clamp(0px, 3vw, 36px)); }
.night-point h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.night-point p { margin: 0; color: var(--night-muted); }
.night__quote {
  margin: clamp(56px, 8vw, 96px) 0 0;
  max-width: 30ch;
  margin-left: auto;
  margin-right: clamp(0px, 4vw, 48px);
}
.night__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem);
  line-height: 1.3;
  margin: 0 0 18px;
  text-indent: -0.45em;
}
.night__quote cite {
  font-family: var(--font-label);
  font-style: normal;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.night__lines {
  margin: clamp(56px, 8vw, 88px) 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(240, 233, 218, 0.15);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--night-muted);
}
.night__lines span {
  font-family: var(--font-label);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-left: 10px;
  white-space: nowrap;
}

/* ─── about / agents ────────────────────────────────────── */
.agents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  max-width: 940px;
}
.agent {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
}
.agent:nth-child(2) { transform: translateY(clamp(0px, 3vw, 40px)); }
.agent__monogram {
  display: grid; place-items: center;
  width: 72px; height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 22px;
}
.agent h3 { font-family: var(--font-display); font-size: var(--text-h3); }
.agent__role {
  font-family: var(--font-label);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  margin: 8px 0 14px;
}
.agent p:last-child { margin: 0; color: var(--muted); }

/* ─── plan / enquiry ────────────────────────────────────── */
.plan {
  max-width: none;
  background: var(--wash);
  border-top: 1px solid var(--border);
}
.plan__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.plan h2 { font-style: italic; }
.plan__direct {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  margin-top: 34px;
  font-family: var(--font-label);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em;
}

.enquiry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 48px);
}
.field { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 8px; }
.field--half { grid-column: span 1; }
.field label {
  font-family: var(--font-label);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink);
}
.field label span { color: var(--muted); text-transform: none; letter-spacing: 0.05em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 8px 2px;
  border-radius: 0;
  transition: border-color 0.35s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field input.is-invalid { border-bottom-color: #a33a2a; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.enquiry__submit { grid-column: 1 / -1; justify-self: start; }
.enquiry__status {
  grid-column: 1 / -1;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  min-height: 1.4em;
}

/* ─── footer ────────────────────────────────────────────── */
.footer {
  background: var(--night-bg);
  color: var(--night-muted);
  padding: clamp(48px, 7vw, 80px) var(--gutter) 36px;
}
.footer__top {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(240, 233, 218, 0.12);
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--night-text);
  margin: 0;
}
.footer__wordmark em { color: var(--gold); }
.footer__nav, .footer__social {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-family: var(--font-label);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.footer__nav a, .footer__social a { color: var(--night-muted); }
.footer__legal {
  max-width: 1280px; margin: 28px auto 0;
  font-size: 0.75rem;
  line-height: 1.7;
}
.footer__legal p { margin: 0 0 10px; }

/* ─── trail rail (signature) ────────────────────────────── */
.trail-rail {
  position: fixed;
  left: 26px; top: 50%;
  transform: translateY(-50%);
  height: min(52vh, 480px);
  z-index: 45;
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: center;
}
.trail-rail__line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(to bottom, var(--border) 0 3px, transparent 3px 9px);
}
.trail-rail__progress {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
}
.trail-port {
  position: relative; z-index: 1;
  width: 11px; height: 11px;
  background: var(--bg);
  border: 1px solid var(--muted);
  transform: rotate(45deg);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.trail-port span {
  position: absolute; left: 24px; top: 50%;
  transform: translateY(-50%) rotate(-45deg) translateX(6px);
  transform-origin: left center;
  font-family: var(--font-label);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.trail-port:hover span, .trail-port.is-active span {
  opacity: 1;
  transform: translateY(-50%) rotate(-45deg) translateX(0);
}
.trail-port.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg) scale(1.25);
}
.trail-port.is-active span { color: var(--gold); }

/* ─── responsive ────────────────────────────────────────── */
@media (max-width: 1250px) {
  .trail-rail { display: none; }
}

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: none; cursor: pointer;
    padding: 10px 4px;
    z-index: 56;
  }
  .nav__burger span {
    display: block; width: 26px; height: 1.5px;
    background: var(--ink);
    transition: transform 0.4s var(--ease);
  }
  .nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.2px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:last-child  { transform: translateY(-4.2px) rotate(-45deg); }

  .hero { min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art {
    min-height: 0;
    height: clamp(340px, 60vw, 460px);
    margin-top: 8px;
  }
  .voyage-grid { grid-template-columns: 1fr; }
  .voyage--tall { grid-row: auto; }
  .voyage--tall .voyage__media { aspect-ratio: 3 / 2; }
  .voyage--wide .voyage__media { aspect-ratio: 3 / 2; }
  .menu-row { grid-template-columns: 1fr auto; }
  .menu-row p { grid-column: 1 / -1; }
  .menu-preview { display: none; }
  .night__points { grid-template-columns: 1fr; }
  .night-point:nth-child(even) { transform: none; }
  .night__quote { margin-left: 0; max-width: 40ch; }
  .agents { grid-template-columns: 1fr; }
  .agent:nth-child(2) { transform: none; }
  .plan__grid { grid-template-columns: 1fr; }
  .enquiry { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .hero__actions .btn { width: 100%; text-align: center; }
  .postcard--compass { transform: rotate(3.5deg) translate(30%, -34%); width: 52%; }
  .step { grid-template-columns: 1fr; gap: 12px; }
}

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