/* ============================================================
   Sale Scuola Viaggi — Editorial Luxury Refactor
   Plus Jakarta Sans · Fraunces · Double-bezel · Choreographed
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Editorial Luxury palette */
  --paper:    #FDFBF7;
  --paper-2:  #F4EEDF;
  --paper-3:  #EBE3CF;
  --surface:  #FFFFFF;
  --espresso: #2C1F18;
  --ink:      #1A1410;
  --ink-2:    #3A2E26;
  --muted:    #7B6E64;
  --muted-2:  #A89B8E;
  --hairline: rgba(26, 20, 16, 0.06);
  --hairline-2: rgba(26, 20, 16, 0.10);

  --brand:    #1A1A18;     /* Viaggi dell'Elefante dark coffee — sampled from their CSS */
  --brand-2:  #000000;
  --brand-3:  #EFECE3;     /* warm cream tint of brand for soft fills */
  --accent:   #968976;     /* their signature muted taupe-gold */
  --accent-2: #6E624F;
  --gold:     #968976;
  --gold-2:   #6E624F;
  --sage:     #6E8973;

  /* Type */
  --serif: 'Fraunces', 'PP Editorial New', Georgia, serif;
  --sans:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii — exaggerated squircles per skill */
  --r-xs: 10px;
  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 44px;

  /* Bezel constants */
  --bezel-pad: 6px;

  /* Shadows */
  --shadow-soft:   0 1px 2px rgba(26, 20, 16, 0.04), 0 8px 24px -10px rgba(26, 20, 16, 0.10);
  --shadow-medium: 0 1px 2px rgba(26, 20, 16, 0.04), 0 24px 48px -16px rgba(26, 20, 16, 0.16);
  --shadow-deep:   0 1px 2px rgba(26, 20, 16, 0.04), 0 40px 72px -24px rgba(26, 20, 16, 0.24);
  --shadow-inset:  inset 0 1px 1px rgba(255, 255, 255, 0.6);

  /* Motion curves — per skill, no linear/ease-in-out */
  --ease-out:      cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-emphasis: cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ============================================================
   Reset / Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
::selection { background: var(--accent); color: var(--paper); }

/* Film grain overlay — fixed, pointer-events-none per skill */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ============================================================
   Typography
   ============================================================ */
.serif { font-family: var(--serif); }
.italic { font-style: italic; font-weight: 300; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--hairline-2), var(--shadow-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.eyebrow.gold .dot   { background: var(--gold); }
.eyebrow.brand .dot  { background: var(--brand); }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7.6vw, 112px); line-height: 0.95; }
h2 { font-size: clamp(36px, 5.4vw, 76px); line-height: 1.0; }
h3 { font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1; }
h4 { font-size: clamp(20px, 2vw, 26px); line-height: 1.2; font-weight: 500; }
h5 { font-size: 18px; line-height: 1.3; font-weight: 500; }

h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand);
}
h1 .muted, h2 .muted, h3 .muted { color: var(--muted-2); }

p { margin: 0; }
.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.section          { padding-block: clamp(80px, 12vw, 168px); }
.section.tight    { padding-block: clamp(56px, 8vw, 96px); }

/* ============================================================
   Buttons — Magnetic, Button-in-Button
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition:
    transform 700ms var(--ease-out),
    background-color 500ms var(--ease-out),
    color 500ms var(--ease-out),
    box-shadow 500ms var(--ease-out);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn .icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 700ms var(--ease-out), background-color 500ms var(--ease-out);
}
.btn:hover .icon-bubble {
  transform: translate(2px, -2px) scale(1.06);
}
.btn .icon-bubble svg {
  width: 14px; height: 14px;
  color: currentColor;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--brand);
  box-shadow: var(--shadow-medium);
}
.btn-coral {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-coral:hover {
  background: var(--accent-2);
  box-shadow: var(--shadow-medium);
}
.btn-coral .icon-bubble { background: rgba(255, 255, 255, 0.18); }

.btn-ghost {
  background: rgba(26, 20, 16, 0.04);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hairline-2);
}
.btn-ghost:hover { background: rgba(26, 20, 16, 0.08); }
.btn-ghost .icon-bubble { background: rgba(26, 20, 16, 0.06); }

.btn-light {
  background: rgba(255, 255, 255, 0.10);
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.18); }
.btn-light .icon-bubble { background: rgba(255, 255, 255, 0.16); }

.btn-link {
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.btn-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 600ms var(--ease-out);
}
.btn-link:hover { color: var(--brand); }
.btn-link:hover::after { transform: scaleX(0); transform-origin: right; }

/* ============================================================
   Editorial numerals + big letters (replaces 3D icon tiles)
   ============================================================ */
.numeral {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand);
  display: inline-block;
}
.numeral.lg { font-size: 80px; }
.numeral.gold { color: var(--gold); }

.big-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 120px;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--brand);
  margin: 0;
  display: block;
}

.thin-tick {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-3);
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(26, 26, 24, 0.18);
}
.thin-tick svg { width: 14px; height: 14px; stroke-width: 1.6; }

/* ============================================================
   Real 3D icons (gpt-image-2 generated PNGs on blank bg)
   ============================================================ */
.icon-3d {
  display: block;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  object-fit: contain;
  /* Multiply blends the white background with the cream paper, while keeping
     the colored 3D-rendered glyph fully saturated. */
  mix-blend-mode: multiply;
  transition: transform 700ms var(--ease-spring);
}
.icon-3d:hover { transform: rotate(-4deg) translateY(-2px) scale(1.04); }
.icon-3d.sm  { width: 40px;  height: 40px; }
.icon-3d.md  { width: 56px;  height: 56px; }
.icon-3d.lg  { width: 96px;  height: 96px; }
.icon-3d.xl  { width: 128px; height: 128px; }
.icon-3d.xxl { width: 168px; height: 168px; }

.dot-marker {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 8px;
}

.avatar-letter {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--brand-3);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(26, 26, 24, 0.18);
}
.avatar-letter.gold {
  background: rgba(184, 137, 62, 0.14);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(184, 137, 62, 0.18);
}
.avatar-letter.ink {
  background: rgba(26, 20, 16, 0.06);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--hairline-2);
}

/* legacy .icon-tile rules — kept neutral for backward compat in case any HTML
   still references them; renders as a tiny orange dot. Real 3D icons (Airbnb
   style) require the gpt-image / nano-banana pipeline (currently quota-blocked). */
.icon-tile, .icon-tile.large {
  display: none;
}

/* ============================================================
   Double-Bezel Card
   ============================================================ */
.bezel {
  background: rgba(26, 20, 16, 0.05);
  border-radius: var(--r-lg);
  padding: var(--bezel-pad);
  box-shadow: inset 0 0 0 1px var(--hairline-2);
  transition: transform 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
}
.bezel-inner {
  background: var(--surface);
  border-radius: calc(var(--r-lg) - var(--bezel-pad));
  box-shadow: var(--shadow-inset);
  overflow: hidden;
}
.bezel:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px var(--hairline-2), var(--shadow-medium);
}

/* dark variant */
.bezel-dark {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: var(--bezel-pad);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}
.bezel-dark .bezel-inner {
  background: rgba(255, 255, 255, 0.02);
  border-radius: calc(var(--r-lg) - var(--bezel-pad));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

/* ============================================================
   Scroll Reveal (IntersectionObserver-driven)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out),
    filter 900ms var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }
.reveal.delay-5 { transition-delay: 400ms; }
.reveal.delay-6 { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* ============================================================
   Header — Floating Glass Pill
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding-top: 18px;
  padding-inline: var(--gutter);
  pointer-events: none;
  transition: padding-top 600ms var(--ease-out);
}
.site-header.scrolled { padding-top: 12px; }
.site-header .pill {
  pointer-events: auto;
  max-width: var(--container);
  margin-inline: auto;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background: rgba(253, 251, 247, 0.78);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    0 1px 2px rgba(26, 20, 16, 0.04),
    0 12px 32px -12px rgba(26, 20, 16, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: box-shadow 600ms var(--ease-out), padding 600ms var(--ease-out);
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 16px;
}
.brand-mark .mark {
  width: 38px; height: 38px;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  flex-shrink: 0;
  transition: transform 600ms var(--ease-spring);
}
.brand-mark:hover .mark { transform: rotate(-6deg) scale(1.06); }
.brand-mark .word {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
}
.brand-mark .word small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color 400ms var(--ease-out);
}
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;        /* never collapse, keep CTA full size */
  white-space: nowrap;   /* never wrap button text */
}
.nav-cta .btn {
  padding: 6px 6px 6px 16px;
  font-size: 13px;
  white-space: nowrap;
}
.nav-cta .btn .icon-bubble { width: 28px; height: 28px; }

/* Compact language switcher — globe icon + current code, no overflow */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: rgba(26, 20, 16, 0.04);
  box-shadow: inset 0 0 0 1px var(--hairline-2);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: pointer;
  transition: background 400ms var(--ease-out);
  white-space: nowrap;
}
.lang-switch:hover { background: rgba(26, 20, 16, 0.08); }
.lang-switch svg { width: 14px; height: 14px; opacity: 0.7; flex-shrink: 0; }
.lang-switch .chev { width: 10px; height: 10px; opacity: 0.45; }

@media (max-width: 980px) { .nav { display: none; } .nav-cta .lang-switch { display: none; } }

/* ============================================================
   Hero — Editorial Split + Parallax
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(120px, 14vh, 180px);
  padding-bottom: clamp(80px, 10vw, 120px);
  overflow: hidden;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.hero .copy { padding-block: 24px; }
.hero h1 { letter-spacing: -0.035em; }
.hero h1 .row1 { display: block; }
.hero h1 em { display: inline-block; }
.hero .lead {
  margin-top: 36px;
  max-width: 48ch;
}
.hero .ctas {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 480px;
}
.hero .meta .stat .num {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.hero .meta .stat .num em { font-style: italic; color: var(--brand); font-weight: 300; }
.hero .meta .stat .lbl {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero .visual-wrap { position: relative; }
.hero .visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-deep);
  will-change: transform;
}
.hero .visual img {
  position: absolute;
  inset: -8% -4% -4% -4%;
  width: 108%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}
.hero .visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

/* hero floating chip */
.hero .chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-medium);
  /* Each chip has a baseline transform applied by hover. We define the
     transition here so the chip always animates smoothly back to rest. */
  transition:
    transform 700ms var(--ease-spring),
    box-shadow 600ms var(--ease-out);
  will-change: transform;
}

/* Hover the hero visual → chips pop out + tilt slightly. Each chip moves
   away from the image center in its own direction, with a small rotation.
   (We don't scale the photo itself: it's driven by parallax JS and would
    get visibly overridden.) */
.hero .visual-wrap:hover .chip { box-shadow: var(--shadow-deep); }
.hero .visual-wrap:hover .chip-1 { transform: translate(-10px, -6px) rotate(-3deg) scale(1.04); }
.hero .visual-wrap:hover .chip-4 { transform: translate(12px, -6px) rotate( 3deg) scale(1.04); }
.hero .visual-wrap:hover .chip-2 { transform: translate(12px,  0px) rotate( 2deg) scale(1.04); }
.hero .visual-wrap:hover .chip-5 { transform: translate(-12px, 4px) rotate(-2deg) scale(1.04); }
.hero .visual-wrap:hover .chip-3 { transform: translate(0, 6px) scale(1.015); }
.hero .chip .live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s var(--ease-out) infinite;
}
.hero .chip-1 { top: 28px; left: -32px; }
.hero .chip-2 { top: 44%; right: -36px; padding-left: 10px; }
.hero .chip-2 img.icon-3d { width: 32px; height: 32px; mix-blend-mode: multiply; }
.hero .chip-4 { top: 92px; right: -28px; padding: 8px 16px 8px 8px; gap: 10px; }
.hero .chip-4 .flag { font-size: 18px; line-height: 1; }
.hero .chip-4 .price-mini {
  display: inline-flex; flex-direction: column; line-height: 1.2;
}
.hero .chip-4 .price-mini strong {
  font-family: var(--serif); font-weight: 400; font-size: 16px; letter-spacing: -0.01em;
  color: var(--ink);
}
.hero .chip-4 .price-mini small {
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.hero .chip-5 { top: 60%; left: -32px; padding-right: 18px; }
.hero .chip-5 .pulse-dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 1.6s var(--ease-out) infinite;
}
.hero .chip-3 {
  bottom: 24px;
  /* Extended past the photo edges (like the other chips) for more breathing room. */
  left: -16px;
  right: -16px;
  background: rgba(26, 20, 16, 0.72);
  color: var(--paper);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
/* The inner wrapping div must fill remaining width and allow children to wrap. */
.hero .chip-3 > div {
  flex: 1;
  min-width: 0;
}
.hero .chip-3 .quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.35;
  /* Wrap at word boundaries; allow long words to break if needed. */
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: auto;
}
.hero .chip-3 .who {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(253, 251, 247, 0.7);
  margin-top: 4px;
  font-style: normal;
  font-family: var(--sans);
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(26, 26, 24, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(26, 26, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 26, 24, 0); }
}

@media (max-width: 980px) {
  .hero .grid { grid-template-columns: 1fr; }
  .hero .visual { aspect-ratio: 4 / 5; max-height: 620px; }
  .hero .chip-1 { left: 16px; }
  .hero .chip-2 { right: 16px; }
}
@media (max-width: 600px) {
  .hero .meta { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero .meta .stat .num { font-size: 26px; }
}

/* ============================================================
   Marquee — Editorial cities + plane loop (front/back z-index trick)
   ============================================================ */
.marquee-wrap {
  position: relative;
  /* z-index 4 lifts the wrap (and its plane SVGs) above following sections,
     so the plane's bottom arc isn't covered by the next section's bg. */
  z-index: 4;
  /* Allow the plane loop SVGs to extend above + below the strip */
  overflow: visible;
  margin-block: clamp(48px, 5vw, 80px);
}
.plane-loop {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 220px;
  transform: translateY(-50%);
  pointer-events: none;
  overflow: visible;
}
.plane-loop-back  { z-index: 1; }
.plane-loop-front { z-index: 3; }
.plane-loop image {
  filter: drop-shadow(0 6px 10px rgba(26, 20, 16, 0.18));
}

.marquee {
  position: relative;
  z-index: 2;                           /* sits between the two plane SVGs */
  border-block: 1px solid var(--hairline);
  padding-block: 22px;
  background: var(--paper);             /* opaque — hides the back plane as it crosses */
  overflow: hidden;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--paper), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left, var(--paper), transparent); }
.marquee .row {
  display: flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 56s linear infinite;
}
.marquee .item {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.marquee .item .sep {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Pillars — Bento Style
   ============================================================ */
.pillars { background: var(--paper); }
.pillars .head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 6vw, 96px);
  margin-bottom: 80px;
  align-items: end;
}
.pillars .head .lead { max-width: 48ch; }
.pillars .grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.pillar {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 320px;
  transition: transform 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    var(--shadow-medium);
}
.pillar:nth-child(1) { grid-column: span 5; min-height: 360px; }
.pillar:nth-child(2) { grid-column: span 7; min-height: 360px; }
.pillar:nth-child(3) { grid-column: span 7; }
.pillar:nth-child(4) { grid-column: span 5; }

.pillar h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: auto;
}
.pillar h4 em { font-style: italic; color: var(--brand); font-weight: 300; }
.pillar p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 36ch;
}
.pillar .footnote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

@media (max-width: 1024px) {
  .pillars .grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { grid-column: span 1 !important; min-height: 280px !important; }
}
@media (max-width: 600px) {
  .pillars .grid { grid-template-columns: 1fr; }
  .pillars .head { grid-template-columns: 1fr; margin-bottom: 56px; }
}

/* ============================================================
   Audiences — Three Big Editorial Cards (3D icons)
   ============================================================ */
.audiences { background: var(--paper); }
.audiences .head {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 6vw, 96px);
  margin-bottom: 80px;
  align-items: end;
}
.audiences .head .lead { max-width: 48ch; }
.audiences .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 340px;
  transition: transform 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
}
.audience-card:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    var(--shadow-medium);
}
.audience-card .arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26,20,16,0.05);
  display: grid;
  place-items: center;
  transition: transform 700ms var(--ease-out), background 500ms var(--ease-out);
}
.audience-card:hover .arrow {
  transform: rotate(-12deg) scale(1.06);
  background: var(--ink);
  color: var(--paper);
}
.audience-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.02em;
}
.audience-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 32ch;
}
.audience-card .stat {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.audience-card .stat .num {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.audience-card .stat .lbl {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 980px) { .audiences .grid { grid-template-columns: 1fr; } .audiences .head { grid-template-columns: 1fr; } }

/* ============================================================
   Featured trip cards (homepage)
   ============================================================ */
.featured { background: var(--paper-2); border-block: 1px solid var(--hairline); }
.featured .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 64px;
  gap: 24px;
}
.featured .head h2 { max-width: 16ch; }
.featured .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trip-card {
  display: block;
  border-radius: var(--r-lg);
  padding: var(--bezel-pad);
  background: rgba(26, 20, 16, 0.05);
  box-shadow: inset 0 0 0 1px var(--hairline-2);
  transition: transform 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
  position: relative;
}
.trip-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    var(--shadow-deep);
}
.trip-card .inner {
  background: var(--surface);
  border-radius: calc(var(--r-lg) - var(--bezel-pad));
  box-shadow: var(--shadow-inset);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.trip-card .visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  overflow: hidden;
}
.trip-card .visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}
.trip-card:hover .visual img { transform: scale(1.06); }
.trip-card .badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.trip-card .badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.trip-card .badge.coral { background: var(--accent); color: #fff; }
.trip-card .badge.coral .dot { background: #fff; }

.trip-card .body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trip-card .meta-line {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.trip-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.025em;
}
.trip-card .desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 36ch;
}
.trip-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.trip-card .price {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
}
.trip-card .price small { font-size: 11.5px; color: var(--muted); margin-left: 4px; font-family: var(--sans); }
.trip-card .arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(26,20,16,0.06);
  display: grid; place-items: center;
  transition: transform 700ms var(--ease-out), background 500ms var(--ease-out), color 500ms var(--ease-out);
}
.trip-card:hover .arrow {
  transform: translate(2px, -2px) rotate(-8deg);
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 980px) { .featured .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .featured .grid { grid-template-columns: 1fr; }
  .featured .head { flex-direction: column; align-items: start; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--paper-3); border-block: 1px solid var(--hairline); }
.testimonials .head { max-width: 760px; margin: 0 auto 80px; text-align: center; }
.testimonials .head .eyebrow { margin-bottom: 22px; }
.testimonials .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 36px 32px 28px;
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--hairline-2), var(--shadow-medium); }
.testimonial .quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.testimonial .who {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial .name { font-weight: 600; font-size: 14px; }
.testimonial .meta-line { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testimonial .stars { font-size: 0; display: flex; gap: 2px; }
.testimonial .stars .star {
  width: 14px; height: 14px;
  background:
    radial-gradient(circle at 30% 30%, #E9C77B, #B8893E);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M12 2l2.95 6.7L22 9.7l-5.5 4.6L18.4 22 12 18l-6.4 4 1.9-7.7L2 9.7l7.05-1z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M12 2l2.95 6.7L22 9.7l-5.5 4.6L18.4 22 12 18l-6.4 4 1.9-7.7L2 9.7l7.05-1z'/></svg>") center / contain no-repeat;
}

@media (max-width: 980px) { .testimonials .grid { grid-template-columns: 1fr; } }

/* ============================================================
   INPSieme Dark Strip
   ============================================================ */
.inpsieme {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.inpsieme::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(184, 137, 62, 0.32), transparent 60%);
  pointer-events: none;
  filter: blur(8px);
}
.inpsieme::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(26, 26, 24, 0.22), transparent 60%);
  pointer-events: none;
  filter: blur(8px);
}
.inpsieme .grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.inpsieme .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
.inpsieme h2 { color: var(--paper); margin-top: 28px; max-width: 14ch; }
.inpsieme h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.inpsieme p {
  margin-top: 28px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: rgba(253, 251, 247, 0.74);
  max-width: 56ch;
}
.inpsieme .ctas { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }

.inpsieme .stats-card {
  padding: var(--bezel-pad);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}
.inpsieme .stats-card .inside {
  background: rgba(255, 255, 255, 0.02);
  border-radius: calc(var(--r-lg) - var(--bezel-pad));
  padding: 28px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
}
.inpsieme .stats-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.inpsieme .stats-card .row:last-child { border-bottom: 0; }
.inpsieme .stats-card .lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.5);
}
.inpsieme .stats-card .val {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
}
.inpsieme .stats-card .val small {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(253, 251, 247, 0.5);
  margin-left: 6px;
}

@media (max-width: 980px) { .inpsieme .grid { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--paper-2);
  padding-block: clamp(80px, 8vw, 120px) 36px;
  border-top: 1px solid var(--hairline);
}
.site-footer .top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.site-footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer ul a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 400ms var(--ease-out);
}
.site-footer ul a:hover { color: var(--brand); }
.site-footer .pitch h2 {
  font-size: clamp(32px, 3.4vw, 52px);
  margin-bottom: 20px;
  max-width: 14ch;
  letter-spacing: -0.025em;
}
.site-footer .pitch h2 em { font-style: italic; color: var(--brand); font-weight: 300; }
.site-footer .pitch p { color: var(--muted); font-size: 14.5px; max-width: 32ch; line-height: 1.55; }
.site-footer .legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer .legal-links { display: flex; gap: 24px; }
.site-footer .legal-links a:hover { color: var(--ink); }

@media (max-width: 980px) { .site-footer .top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .site-footer .top { grid-template-columns: 1fr; } }

/* ============================================================
   Catalog
   ============================================================ */
.catalog-hero {
  padding-top: clamp(120px, 14vh, 180px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.catalog-hero .grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.catalog-hero h1 {
  margin-top: 28px;
  letter-spacing: -0.035em;
}
.catalog-hero h1 em { font-style: italic; color: var(--brand); font-weight: 300; }
.catalog-hero .lead { margin-top: 32px; max-width: 52ch; }
.catalog-hero .meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.catalog-hero .meta-strip .stat .num {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.catalog-hero .meta-strip .stat .num em { font-style: italic; color: var(--brand); font-weight: 300; }
.catalog-hero .meta-strip .stat .lbl {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.catalog-hero .visual-wrap { position: relative; }
.catalog-hero .visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-deep);
}
.catalog-hero .visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.catalog-hero .visual .quote-chip {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(26, 20, 16, 0.65);
  color: var(--paper);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 18px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.4;
}
.catalog-hero .visual .quote-chip small {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(253, 251, 247, 0.65);
  margin-top: 8px;
}

@media (max-width: 980px) {
  .catalog-hero .grid { grid-template-columns: 1fr; }
  .catalog-hero .meta-strip { grid-template-columns: repeat(2, 1fr); }
}

.filters-bar {
  position: sticky;
  top: 88px;
  z-index: 30;
  margin-block: 8px 32px;
}
.filters-pill {
  background: rgba(253, 251, 247, 0.84);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-radius: 999px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  overflow-x: auto;
}
.filters-pill::-webkit-scrollbar { display: none; }
.filters-pill .chips {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background 500ms var(--ease-out), color 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.chip:hover { background: rgba(26, 20, 16, 0.05); }
.chip.is-active {
  background: var(--ink);
  color: var(--paper);
  transform: scale(1.02);
}
.chip small { opacity: 0.5; margin-left: 4px; font-weight: 400; }
.filters-pill .sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding-right: 8px;
  flex-shrink: 0;
}
.filters-pill .sort select {
  font: inherit;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 0;
  box-shadow: inset 0 0 0 1px var(--hairline-2);
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' stroke='currentColor' stroke-width='1.5' fill='none'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 32px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-block: clamp(24px, 4vw, 56px) clamp(64px, 8vw, 96px);
}
@media (max-width: 1024px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .catalog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Trip Detail
   ============================================================ */
.trip-hero {
  position: relative;
  height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  margin-top: 0;
}
.trip-hero img {
  position: absolute;
  inset: -10% -5% -5% -5%;
  width: 110%;
  height: 115%;
  object-fit: cover;
  will-change: transform;
}
.trip-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,20,16,0.05) 0%, rgba(26,20,16,0.2) 50%, rgba(26,20,16,0.7) 100%);
}
.trip-hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: clamp(64px, 8vw, 96px);
  padding-top: clamp(120px, 14vh, 180px);
}
.trip-hero .crumbs {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.78);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trip-hero .crumbs a { color: rgba(253, 251, 247, 0.78); transition: color 400ms var(--ease-out); }
.trip-hero .crumbs a:hover { color: #fff; }
.trip-hero .crumbs .sep { opacity: 0.4; }
.trip-hero h1 {
  color: var(--paper);
  max-width: 14ch;
  font-size: clamp(56px, 9vw, 132px);
}
.trip-hero h1 em { font-style: italic; color: #F4D9A8; font-weight: 300; }
.trip-hero .sub {
  margin-top: 24px;
  color: rgba(253, 251, 247, 0.86);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  max-width: 50ch;
  line-height: 1.45;
}

.trip-meta {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  margin-top: -2px;
}
.trip-meta .row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-block: 36px;
}
.trip-meta .cell {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trip-meta .cell .icon-tile { width: 44px; height: 44px; border-radius: 13px; }
.trip-meta .cell .icon-tile svg { width: 50%; height: 50%; }
.trip-meta .cell .body { display: flex; flex-direction: column; gap: 2px; }
.trip-meta .cell .lbl {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.trip-meta .cell .val {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.trip-meta .cell .val small {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .trip-meta .row { grid-template-columns: 1fr 1fr; }
}

.trip-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  padding-block: clamp(64px, 8vw, 112px);
}
.intro h2 { margin-bottom: 32px; max-width: 18ch; }
.intro h2 em { font-style: italic; color: var(--brand); font-weight: 300; }
.intro p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.intro p strong { font-weight: 500; color: var(--ink); }
.intro p em { font-style: italic; }

.itinerary { margin-top: 80px; }
.itinerary > .eyebrow { margin-bottom: 24px; }
.itinerary > h3 { margin-bottom: 40px; max-width: 18ch; }
.day {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding-block: 36px;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.day:last-child { border-bottom: 1px solid var(--hairline); }
.day .label {
  position: sticky;
  top: 100px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.day .label strong {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: none;
}
.day h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  max-width: 24ch;
}
.day p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 56ch;
}
.day ul {
  margin-top: 18px;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  max-width: 56ch;
}
.day li {
  font-size: 13.5px;
  color: var(--ink-2);
  display: flex;
  align-items: start;
  gap: 10px;
}
.day li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}
@media (max-width: 700px) {
  .day { grid-template-columns: 1fr; gap: 16px; }
  .day .label { position: static; }
  .day .label strong { font-size: 40px; }
  .day ul { grid-template-columns: 1fr; }
}

/* sidebar */
.trip-aside { position: relative; }
.trip-aside .card {
  position: sticky;
  top: 100px;
  padding: var(--bezel-pad);
  background: rgba(26,20,16,0.05);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--hairline-2);
}
.trip-aside .card-inner {
  background: var(--surface);
  border-radius: calc(var(--r-lg) - var(--bezel-pad));
  box-shadow: var(--shadow-inset);
  padding: 28px;
}
.trip-aside .price-block {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 22px;
}
.trip-aside .from {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.trip-aside .price {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 6px;
}
.trip-aside .price small {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
}
.trip-aside .all-in {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--brand-3);
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(26, 26, 24, 0.18);
}
.trip-aside .included {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trip-aside .included li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.trip-aside .included .icon-tile { width: 32px; height: 32px; border-radius: 10px; }
.trip-aside .included .icon-tile svg { width: 50%; height: 50%; }
.trip-aside .ctas { display: flex; flex-direction: column; gap: 10px; }
.trip-aside .ctas .btn { justify-content: center; }
.trip-aside .footnote {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.trip-aside .footnote .live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s var(--ease-out) infinite;
}
@media (max-width: 1024px) { .trip-body { grid-template-columns: 1fr; } .trip-aside .card { position: relative; top: 0; } }

/* highlights */
.highlights { background: var(--paper-2); border-block: 1px solid var(--hairline); }
.highlights .head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }
.highlights .head h2 { max-width: 18ch; margin-top: 18px; }
.highlights .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.highlight {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: inset 0 0 0 1px var(--hairline-2), var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  transition: transform 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
}
.highlight:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--hairline-2), var(--shadow-medium); }
.highlight h5 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  margin-top: auto;
  letter-spacing: -0.015em;
}
.highlight p { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 28ch; }
@media (max-width: 1024px) { .highlights .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .highlights .grid { grid-template-columns: 1fr; } }

/* faq */
.faq { background: var(--paper); }
.faq .grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.faq h2 { max-width: 14ch; margin-top: 22px; }
.faq h2 em { font-style: italic; color: var(--brand); font-weight: 300; }
.faq .lead { margin-top: 24px; max-width: 30ch; }
.faq .accordion { display: flex; flex-direction: column; }
.faq details {
  border-top: 1px solid var(--hairline);
  padding-block: 26px;
  transition: padding 600ms var(--ease-out);
}
.faq details:last-child { border-bottom: 1px solid var(--hairline); }
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 400;
  letter-spacing: -0.015em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  list-style: none;
  transition: color 500ms var(--ease-out);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(26,20,16,0.05) url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' stroke='%231A1410' stroke-width='1.4' fill='none'><path d='M12 5v14M5 12h14'/></svg>") center / 14px no-repeat;
  transition: transform 600ms var(--ease-out), background 500ms var(--ease-out);
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  background-color: rgba(26,20,16,0.10);
}
.faq details[open] summary { color: var(--brand); }
.faq details p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}
@media (max-width: 980px) { .faq .grid { grid-template-columns: 1fr; } }

/* ============================================================
   Mapbox — shared overrides
   ============================================================ */
.mapboxgl-canvas { outline: none; }
.mapboxgl-ctrl-attrib {
  background: rgba(255, 255, 255, 0.6) !important;
  font-size: 9px !important;
  letter-spacing: 0.02em;
}
.mapboxgl-ctrl-attrib a { color: var(--muted) !important; }
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right {
  z-index: 4 !important;
}

/* Custom marker — orange teardrop */
.mapbox-pin {
  width: 26px;
  height: 34px;
  cursor: pointer;
  pointer-events: auto;
  transform-origin: 50% 100%;
  transition: transform 600ms var(--ease-spring), filter 600ms var(--ease-out);
  filter: drop-shadow(0 6px 10px rgba(26, 26, 24, 0.45));
}
.mapbox-pin svg { width: 100%; height: 100%; display: block; color: var(--brand); }
.mapbox-pin:hover { transform: scale(1.10) translateY(-2px); }
.mapbox-pin.is-active {
  transform: scale(1.25) translateY(-3px);
  filter: drop-shadow(0 12px 18px rgba(26, 26, 24, 0.65));
}

/* Pulse halo (rendered as ::before pseudo on the marker) */
.mapbox-pin::before {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, 50%);
  opacity: 0;
  pointer-events: none;
}
.mapbox-pin.is-active::before { animation: pin-pulse 1.8s var(--ease-out) infinite; }

/* Globe pin — small dot */
.globe-pin {
  width: 12px; height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #FFB57E, var(--brand) 80%);
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.85),
    0 4px 8px rgba(26, 26, 24, 0.5);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 500ms var(--ease-spring);
}
.globe-pin:hover { transform: scale(1.4); }

/* ============================================================
   Catalog hero — single editorial photograph
   ============================================================ */
.catalog-hero .visual-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px var(--hairline-2);
}
.catalog-hero .visual-tag .live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.6s var(--ease-out) infinite;
}

/* ============================================================
   Catalog Map — split-screen world map + scrollable list
   ============================================================ */
.map-page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 100dvh;
  padding-top: clamp(96px, 12vh, 132px);
}
@media (max-width: 980px) {
  .map-page { grid-template-columns: 1fr; }
}

.map-stage {
  position: sticky;
  top: clamp(96px, 12vh, 132px);
  height: calc(100dvh - clamp(96px, 12vh, 132px));
  padding: clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--hairline);
  background: var(--paper);
}
@media (max-width: 980px) {
  .map-stage {
    position: relative;
    top: 0;
    height: 60dvh;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
}

.map-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(26, 26, 24, 0.10), transparent 60%),
    var(--brand-3);
  box-shadow:
    inset 0 0 0 1px rgba(26, 26, 24, 0.18),
    var(--shadow-deep);
}
.map-canvas #map {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.map-canvas .mapboxgl-canvas { border-radius: inherit; }

@keyframes pin-pulse {
  0%   { opacity: 0.4; transform: translate(-50%, 50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, 50%) scale(4.2); }
}

/* Mapbox marker label tooltip */
.map-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 20, 16, 0.92);
  color: var(--paper);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  pointer-events: none;
}
.mapbox-pin.is-active .map-tip,
.mapbox-pin:hover .map-tip { opacity: 1; }

/* Stage label / hint */
.map-hint {
  position: absolute;
  top: 24px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px var(--hairline-2);
  z-index: 5;
}
.map-hint .live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.6s var(--ease-out) infinite;
}

/* Right scrolling panel — independent scroll + snap */
.map-list {
  padding: 0 clamp(28px, 4vw, 56px);
  background: var(--paper);
  height: calc(100dvh - clamp(96px, 12vh, 132px));
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  /* Hide scrollbar (still scrollable) */
  scrollbar-width: none;
}
.map-list::-webkit-scrollbar { display: none; }
.map-list .head {
  scroll-snap-align: start;
  min-height: calc(100dvh - clamp(96px, 12vh, 132px));
  display: grid;
  align-content: center;
  padding-bottom: 0;
}
@media (max-width: 980px) {
  .map-list {
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }
  .map-list .head { min-height: 0; padding-block: 64px; }
}
.map-list .head h2 {
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  margin-top: 22px;
  max-width: 14ch;
}
.map-list .head h2 em { font-style: italic; color: var(--brand); font-weight: 300; }
.map-list .head .lead { margin-top: 22px; max-width: 36ch; }

.dest-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: calc(100dvh - clamp(96px, 12vh, 132px));
  display: grid;
  align-content: center;
  gap: 22px;
  padding-block: 32px;
  border-top: 1px solid var(--hairline);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  opacity: 0.45;
  transform: translateY(8px);
}
.dest-card.is-current {
  opacity: 1;
  transform: translateY(0);
}
.dest-card:last-child { border-bottom: 1px solid var(--hairline); }
@media (max-width: 980px) {
  .dest-card { min-height: 0; padding-block: 56px; opacity: 1; transform: none; }
}
.dest-card .head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.dest-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
}
.dest-card .country {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.dest-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.dest-card h3 em { font-style: italic; color: var(--brand); font-weight: 300; }
.dest-card p {
  color: var(--ink-2);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  max-width: 42ch;
}
.dest-card .meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.dest-card .meta .pill {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--hairline-2);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dest-card .meta .pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }
.dest-card .visual {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.dest-card .visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
}
.dest-card:hover .visual img { transform: scale(1.04); }
.dest-card .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.dest-card .price {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.025em;
}
.dest-card .price small { font-size: 12px; color: var(--muted); margin-left: 6px; font-family: var(--sans); font-weight: 500; }

/* Floating destination nav (bottom-center, fixed) */
.dest-nav {
  position: fixed;
  bottom: clamp(16px, 3vw, 32px);
  left: 50%;
  transform: translate(-50%, 100px);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    0 1px 2px rgba(26, 20, 16, 0.04),
    0 24px 48px -16px rgba(26, 20, 16, 0.18);
  opacity: 0;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-spring);
}
.dest-nav.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.dest-nav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink);
  transition: background 400ms var(--ease-out), transform 400ms var(--ease-out), color 400ms var(--ease-out);
}
.dest-nav-btn:hover { background: rgba(26, 26, 24, 0.10); color: var(--brand); }
.dest-nav-btn:active { transform: scale(0.92); }
.dest-nav-btn.is-disabled { opacity: 0.25; pointer-events: none; }
.dest-nav-btn svg { width: 18px; height: 18px; display: block; }
.dest-nav-counter {
  padding: 0 14px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  min-width: 84px;
  text-align: center;
}
.dest-nav-counter em { font-style: italic; color: var(--muted); margin-left: 2px; }

/* Skeleton shimmer loader */
.skeleton {
  background: linear-gradient(90deg,
    var(--paper-2) 0%,
    var(--paper-3) 50%,
    var(--paper-2) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
  border-radius: var(--r-sm);
  color: transparent !important;
  user-select: none;
}
@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ============================================================
   Live activity ticker (rotating)
   ============================================================ */
.live-feed {
  position: fixed;
  left: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px var(--hairline-2),
    var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  max-width: min(360px, calc(100vw - 32px));
  transform: translateY(100px);
  opacity: 0;
  transition:
    transform 700ms var(--ease-spring),
    opacity 600ms var(--ease-out);
}
.live-feed.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.live-feed .live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  animation: pulse 1.6s var(--ease-out) infinite;
}
.live-feed .text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.live-feed .text strong { color: var(--ink); font-weight: 600; }
.live-feed .text small { color: var(--muted); margin-left: 4px; font-weight: 500; font-size: 11px; }
@media (max-width: 600px) { .live-feed { font-size: 12px; padding: 10px 14px 10px 12px; } }

/* (Hero dotted-trail removed — Tommi disliked it. Plane lives at the marquee.) */

/* dark CTA strip */
.cta-strip { padding-block: clamp(80px, 10vw, 140px); position: relative; overflow: hidden; }
.cta-strip .inner { text-align: center; max-width: 720px; margin-inline: auto; position: relative; z-index: 2; }
.cta-strip h2 { color: var(--paper); margin-top: 24px; max-width: 18ch; margin-inline: auto; }
.cta-strip h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.cta-strip p {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: rgba(253, 251, 247, 0.78);
}
.cta-strip .ctas { margin-top: 40px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
