/* ===== HRM MULTI SINERGY — DESIGN TOKENS ===== */
:root {
  /* Brand colors from logo */
  --navy: #0E1B3D;
  --navy-deep: #08112A;
  --navy-soft: #1A2A55;
  --gold: #C9A961;
  --gold-bright: #D9B872;
  --gold-soft: #E8D5A8;
  --ivory: #FAF7F2;
  --paper: #F4EFE6;
  --line: #E5DDC9;
  --ink: #0E1B3D;
  --ink-mute: #5A5F73;
  --white: #FFFFFF;

  /* Type */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter Tight", "Helvetica Neue", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 4px;
}

/* Override flag: avoid common AI-slop fonts. Switch to alternatives. */
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Space Grotesk", "Helvetica Neue", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.dark { color: var(--navy); }
.eyebrow.light { color: var(--gold-bright); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }
.display {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 180px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 400;
}
.italic { font-style: italic; }

.title-xl { font-family: var(--serif); font-size: clamp(48px, 7vw, 112px); line-height: 1; letter-spacing: -0.03em; }
.title-lg { font-family: var(--serif); font-size: clamp(36px, 5vw, 72px); line-height: 1.05; letter-spacing: -0.025em; }
.title-md { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 48px); line-height: 1.1; letter-spacing: -0.02em; }
.title-sm { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; letter-spacing: -0.015em; }

.body-lg { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: var(--ink-mute); font-weight: 400; }
.body { font-size: 16px; line-height: 1.6; color: var(--ink-mute); }
.small { font-size: 13px; line-height: 1.5; }

/* ===== LAYOUT ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(80px, 10vw, 160px) 0; }
.bleed { padding-left: 0; padding-right: 0; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.nav.dark { color: var(--ivory); }
.nav.dark.scrolled { background: rgba(8, 17, 42, 0.85); border-bottom-color: rgba(255,255,255,0.08); }

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 38px; height: 38px; }
.nav-brand-text { font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.nav-brand-sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.6; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 36px; }
.nav-menu a { font-size: 14px; font-weight: 500; opacity: 0.75; transition: opacity 0.2s; position: relative; }
.nav-menu a:hover, .nav-menu a.active { opacity: 1; }
.nav-menu a.active::after { content: ""; position: absolute; bottom: -6px; left: 0; right: 0; height: 1px; background: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.lang-toggle button { padding: 4px 10px; border-radius: 999px; color: inherit; transition: all 0.2s; }
.lang-toggle button.active { background: currentColor; }
.lang-toggle button.active span { color: var(--ivory); mix-blend-mode: difference; }
.nav.dark .lang-toggle button.active { background: var(--gold); border-color: var(--gold); }
.nav.dark .lang-toggle button.active span { color: var(--navy); mix-blend-mode: normal; }

.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  background: var(--navy);
  color: var(--ivory);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.2s;
}
.btn-cta:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.btn-cta .arrow { transition: transform 0.2s; }
.btn-cta:hover .arrow { transform: translateX(3px); }
.nav.dark .btn-cta { background: var(--gold); color: var(--navy); }
.nav.dark .btn-cta:hover { background: var(--ivory); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--navy); color: var(--ivory); }
.btn-primary:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,27,61,0.15); }
.btn-ghost { border: 1px solid currentColor; color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.btn-light { background: var(--ivory); color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); }

/* ===== UTILITIES ===== */
.divider { height: 1px; background: var(--line); width: 100%; }
.divider.dark { background: rgba(255,255,255,0.1); }
.divider.gold { background: var(--gold); height: 2px; width: 56px; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.tag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--gold); }

.numeral {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 100px var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; opacity: 0.7; transition: opacity 0.2s; }
.footer ul a:hover { opacity: 1; color: var(--gold); }
.footer-mark {
  font-family: var(--serif);
  font-size: clamp(60px, 12vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 80px auto 40px;
  max-width: var(--maxw);
  padding: 0 var(--gutter);
  color: var(--ivory);
  opacity: 0.95;
}
.footer-mark .gold { color: var(--gold); font-style: italic; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.5;
  font-family: var(--mono);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== SHARED COMPONENTS ===== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .lead .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-head .lead h2 { color: var(--navy); }
.section-head .body-lg { max-width: 540px; }

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-menu { display: none; }
}

/* ===== TWEAKS PANEL ===== */
.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  background: var(--navy);
  color: var(--ivory);
  border-radius: 12px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  font-family: var(--sans);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.tweaks-panel label { font-size: 12px; opacity: 0.7; display: block; margin-bottom: 6px; margin-top: 12px; }
.tweaks-panel input, .tweaks-panel textarea {
  width: 100%;
  background: var(--navy-soft);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ivory);
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
}
.tweaks-panel-close { position: absolute; top: 12px; right: 12px; color: var(--ivory); opacity: 0.6; }
.tweaks-panel-close:hover { opacity: 1; }

/* ===== TRAVEL SHOWCASE ===== */
.travel-showcase {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: clamp(80px, 9vw, 130px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.travel-showcase .ts-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.ts-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .ts-head { grid-template-columns: 1fr; gap: 24px; } }
.ts-head .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.ts-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.ts-head h2 em { font-style: italic; color: var(--gold); }
.ts-head .lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
}

/* World map with destination dots */
.ts-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.04) 0%, transparent 60%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 80px;
  overflow: hidden;
}
.ts-map svg.world {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.18;
}
.ts-map svg.world path { fill: rgba(201,169,97,0.4); }
.ts-map .grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ts-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.ts-pin .pulse {
  position: absolute;
  inset: 50% 50% auto auto;
  width: 10px; height: 10px;
  margin: -5px -5px 0 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,169,97,0.6);
  animation: ts-pulse 2.4s ease-out infinite;
}
.ts-pin .dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(217,184,114,0.8);
}
.ts-pin .label {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  white-space: nowrap;
  background: rgba(8,17,42,0.85);
  border: 1px solid rgba(201,169,97,0.3);
  padding: 5px 10px;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.ts-pin.active .label,
.ts-pin:hover .label { opacity: 1; transform: translateY(0); }
.ts-pin .meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
  display: block;
}

@keyframes ts-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,169,97,0.55); }
  70%  { box-shadow: 0 0 0 22px rgba(201,169,97,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,97,0); }
}

/* Flight arc paths */
.ts-arcs { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.ts-arcs path {
  fill: none;
  stroke: rgba(201,169,97,0.4);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  stroke-linecap: round;
}
.ts-arcs .plane {
  fill: var(--gold-bright);
}

/* Destination ticker */
.ts-ticker {
  display: flex;
  gap: 40px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  margin-bottom: 80px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ts-ticker-track {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
  animation: ts-ticker 40s linear infinite;
}
.ts-ticker-item {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 18px;
}
.ts-ticker-item::after {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
@keyframes ts-ticker {
  to { transform: translateX(-100%); }
}

/* Section break heading */
.ts-section-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ts-section-title::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
}
.ts-section-lead {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 56px;
  max-width: 820px;
}
.ts-section-lead em { font-style: italic; color: var(--gold); }

/* Budget tier cards */
.ts-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 100px;
}
@media (max-width: 980px) { .ts-tiers { grid-template-columns: 1fr; } }
.ts-tier {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 32px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.ts-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,97,0.4);
  background: rgba(255,255,255,0.05);
}
.ts-tier .ts-tier-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.7;
}
.ts-tier h3 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.ts-tier h3 em { font-style: italic; color: var(--gold); }
.ts-tier .ts-price {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}
.ts-tier .ts-price strong {
  color: var(--ivory);
  font-weight: 500;
}
.ts-tier p.desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.ts-tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.ts-tier ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.ts-tier ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--gold);
}
.ts-tier .domains {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ts-tier .domains span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
}
.ts-tier.featured {
  background: linear-gradient(180deg, rgba(201,169,97,0.08), rgba(201,169,97,0.02));
  border-color: rgba(201,169,97,0.35);
}
.ts-tier.featured::before {
  content: "Recommended";
  position: absolute;
  top: -10px; left: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Luxury hero block */
.ts-luxury {
  position: relative;
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: 6px;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,0.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.2));
  padding: clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.ts-luxury::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ts-luxury .lux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .ts-luxury .lux-grid { grid-template-columns: 1fr; gap: 40px; } }
.ts-luxury .lux-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.ts-luxury h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 24px;
}
.ts-luxury h3 em { font-style: italic; color: var(--gold); }
.ts-luxury .lux-lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}
.ts-luxury .lux-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.ts-luxury .lux-points li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.ts-luxury .lux-points li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-size: 13px;
}

/* Destination cards (luxury) */
.ts-lux-destinations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ts-lux-dest {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy-soft);
  cursor: pointer;
  transition: transform 0.4s;
}
.ts-lux-dest:hover { transform: translateY(-4px); }
.ts-lux-dest .dest-art {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(201,169,97,0.18);
  font-style: italic;
}
.ts-lux-dest .dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,17,42,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.ts-lux-dest .dest-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ts-lux-dest .dest-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.ts-lux-dest .dest-flag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  background: rgba(8,17,42,0.7);
  border: 1px solid rgba(201,169,97,0.4);
  color: var(--gold);
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* Background atmospheric layer */
.ts-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.ts-bg-glow.tl { top: -200px; left: -200px; }
.ts-bg-glow.br { bottom: -200px; right: -200px; }
