/* ============================================================
   Smart Serbia Travel — Design Tokens (Fresco & Field)
   Palette grounded in monastery frescoes, Pirot kilim, Šumadija terracotta.
   ============================================================ */
:root {
  /* Palette — Bold Serbia v4 (layered navy stack) */
  --primary:      #C92A37;
  --primary-dark: #9F1F2B;
  --gold-leaf:    #F0CB6C;  /* Demoted to micro-accent */
  --secondary:    #E5B450;
  --accent:       #1F3554;
  --bg-base:      #0A0F1A;  /* Deepest base — booking hero */
  --bg-card:      #0F1B2D;  /* Card surface on dark sections */
  --bg-hover:     #16243B;  /* Card hover */
  --bg-deep:      #0F1B2D;  /* Alias kept for back-compat */
  --bg-deeper:    #07111E;  /* Footer */
  --surface:      #FFFFFF;
  --surface-2:    #F7F5F0;  /* Slightly warmer near-white for cards */
  --ink:          #0A0F1A;
  --ink-muted:    #5C6878;
  --muted:        #6B7A5A;
  --line:         #E8E4DA;
  --line-dark:    rgba(255,255,255,0.08);
  --live:         #7DD3FC;  /* Ice-blue for live indicators */

  /* Typography — Geist (Vercel) display + Inter body. Both have full Cyrillic. */
  --font-display: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "Geist Mono", ui-monospace, "JetBrains Mono", Menlo, monospace;

  /* Type scale (golden ratio, larger than before) */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.25rem;
  --fs-lg:   1.875rem;
  --fs-xl:   3rem;
  --fs-2xl:  4.5rem;
  --fs-3xl:  6rem;
  --lh-tight: 1.15;
  --lh-body:  1.6;

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Radii */
  --r-sm: 2px;
  --r-md: 6px;
  --r-lg: 12px;

  /* Shadows (warm, never pure black) */
  --shadow-sm: 0 1px 2px rgba(27, 26, 23, 0.06);
  --shadow-md: 0 6px 18px rgba(27, 26, 23, 0.08);
  --shadow-lg: 0 12px 32px rgba(27, 26, 23, 0.12);

  /* Layout */
  --container-max: 1200px;
  --header-h: 76px;

  color-scheme: light;
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  line-height: var(--lh-body);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body { min-height: 100dvh; display: flex; flex-direction: column; }
main { flex: 1; }

img, video, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-weight: 700; letter-spacing: -0.04em; line-height: 0.95; }
h2 { font-weight: 600; letter-spacing: -0.035em; }

input, select, textarea { font: inherit; }

:lang(sr-Cyrl), :lang(sr) { font-feature-settings: "locl" 1; }

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

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: var(--space-4);
  background: var(--ink);
  color: var(--surface);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--r-md);
  z-index: 1000;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: var(--space-2); }

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
@media (max-width: 720px) {
  .container { padding-inline: var(--space-4); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: var(--fs-sm);
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: var(--surface); }
.btn--primary:hover { background: var(--primary-dark); }
.btn--gold { background: var(--secondary); color: var(--ink); }
.btn--gold:hover { background: var(--gold-leaf); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--surface-2); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-bottom-color 0.32s ease;
}

/* Transparent over photo hero (home page only) — set server-side in header.php
   based on URL. Use position: fixed so the hero photo can extend behind it
   instead of revealing the body's white background. */
.site-header.is-transparent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-transparent .brand,
.site-header.is-transparent .nav-promo a,
.site-header.is-transparent .nav-promo__signin {
  color: var(--surface);
}
.site-header.is-transparent .brand__logo { color: var(--surface); }
.site-header.is-transparent .nav-promo a:hover { color: var(--gold-leaf); }
.site-header.is-transparent .lang-switcher__toggle {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: var(--surface);
}
.site-header.is-transparent .lang-switcher__toggle:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.32);
}

/* Solid state — re-applied when scrolled, even if .is-transparent is set.
   Stays position:fixed so layout doesn't shift when the class toggles. */
.site-header.is-transparent.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
}
.site-header.is-transparent.is-scrolled .brand,
.site-header.is-transparent.is-scrolled .nav-promo a,
.site-header.is-transparent.is-scrolled .nav-promo__signin {
  color: var(--ink);
}
.site-header.is-transparent.is-scrolled .brand__logo { color: var(--ink); }
.site-header.is-transparent.is-scrolled .nav-promo a:hover { color: var(--primary); }
.site-header.is-transparent.is-scrolled .lang-switcher__toggle {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none !important;
  color: var(--ink);
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.brand:hover { opacity: 0.78; }
.brand__logo {
  width: 36px;
  height: 36px;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__sun {
  fill: var(--primary);
  transition: fill 0.3s ease, transform 0.4s ease;
  transform-origin: 22px 12px;
}
.brand:hover .brand__sun {
  fill: var(--gold-leaf);
  transform: scale(1.2);
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand__accent {
  color: var(--primary);
  font-weight: 600;
}
@media (max-width: 600px) {
  .brand__name { font-size: var(--fs-base); }
}
.primary-nav {
  display: flex;
  gap: var(--space-6);
  margin-inline-start: auto;
}
.primary-nav a {
  color: var(--ink-muted);
  font-size: var(--fs-sm);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.primary-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--primary);
}
.utility-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
@media (max-width: 980px) {
  .primary-nav { display: none; }
  .utility-nav { margin-inline-start: auto; }
}

/* Language switcher */
.lang-switcher { position: relative; }
.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  border: 1px solid var(--line);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-md);
  font-size: var(--fs-xs);
  color: var(--ink);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.lang-switcher__toggle:hover { background: var(--surface-2); }
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-2);
  display: none;
}
.lang-switcher.is-open .lang-switcher__menu { display: block; }
.lang-switcher__menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  color: var(--ink);
  font-size: var(--fs-sm);
  border-radius: var(--r-sm);
  text-decoration: none;
}
.lang-switcher__menu a:hover { background: var(--surface-2); }
.lang-switcher__menu a[aria-current="true"] {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: var(--space-24) 0 var(--space-16);
  background:
    radial-gradient(circle at 78% 28%, rgba(229,180,80,0.22), transparent 55%),
    radial-gradient(circle at 18% 82%, rgba(31,53,84,0.16), transparent 55%),
    var(--surface);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M20 4 L36 20 L20 36 L4 20 Z' stroke='%23C92A37' stroke-width='0.5' fill='none' opacity='0.18'/></svg>");
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero__inner { position: relative; max-width: 760px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--primary);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, var(--fs-2xl));
  margin-bottom: var(--space-6);
}
.hero__tagline {
  font-size: var(--fs-md);
  color: var(--ink-muted);
  max-width: 600px;
  margin-bottom: var(--space-8);
}
.hero__search {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-2);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  gap: var(--space-2);
}
.hero__search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: var(--space-3) var(--space-4);
  color: var(--ink);
  outline: none;
}
.hero__search button {
  background: var(--primary);
  color: var(--surface);
  border: 0;
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-6);
  font-weight: 500;
  cursor: pointer;
}
.hero__search button:hover { background: var(--gold-leaf); }

/* ============================================================
   Section title
   ============================================================ */
.section__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-8);
}

/* ============================================================
   Categories
   ============================================================ */
.categories { padding: var(--space-16) 0 var(--space-12); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}
.category-card {
  display: flex;
  align-items: flex-end;
  aspect-ratio: 3 / 4;
  padding: var(--space-6);
  color: var(--surface);
  border-radius: var(--r-lg);
  text-decoration: none !important;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15,27,45,0.78) 100%);
  z-index: 1;
}
.category-card__label { position: relative; z-index: 2; }
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.category-card--monasteries { background: linear-gradient(135deg, #6E5635, var(--primary)); }
.category-card--fortresses  { background: linear-gradient(135deg, #2A3142, var(--secondary)); }
.category-card--spas        { background: linear-gradient(135deg, #2F4860, var(--accent)); }
.category-card--parks       { background: linear-gradient(135deg, #4F5E3F, var(--muted)); }
.category-card--gastro      { background: linear-gradient(135deg, #7A3325, var(--secondary)); }

@media (max-width: 980px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card { aspect-ratio: 16 / 9; }
}

/* ============================================================
   Passport teaser
   ============================================================ */
.passport-teaser {
  margin-top: var(--space-16);
  padding: var(--space-24) 0;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.passport-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(212,169,76,0.18), transparent 50%);
  pointer-events: none;
}
.passport-teaser__inner { position: relative; }
.passport-teaser__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--fs-xs);
  color: var(--gold-leaf);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.passport-teaser__title {
  color: var(--surface);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-4);
}
.passport-teaser__lede {
  max-width: 560px;
  margin: 0 auto var(--space-8);
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   Why grid
   ============================================================ */
.why { padding: var(--space-24) 0; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.why__item {
  padding: var(--space-8);
  background: var(--surface-2);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.why__item h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-3);
}
.why__item p {
  color: var(--ink-muted);
  font-size: var(--fs-sm);
}
@media (max-width: 980px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Placeholder + error pages
   ============================================================ */
.error, .placeholder {
  padding: var(--space-24) 0;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.error__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--primary);
  margin-bottom: var(--space-2);
  line-height: 1;
}
.error__heading, .placeholder__heading {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-4);
}
.error__lede, .placeholder__lede {
  color: var(--ink-muted);
  margin-bottom: var(--space-6);
}
.placeholder__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding-top: var(--space-16);
  background: var(--bg-deeper);
  color: var(--surface);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  margin-bottom: var(--space-2);
}
.footer__tagline {
  color: rgba(255,255,255,0.72);
  font-size: var(--fs-sm);
}
.footer__col h4 {
  color: var(--surface);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.footer__col a {
  color: rgba(255,255,255,0.72);
  font-size: var(--fs-sm);
  text-decoration: none;
  display: block;
  padding: var(--space-1) 0;
}
.footer__col a:hover { color: var(--gold-leaf); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-4) 0;
}
.footer__bar__inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
.btn--sm { padding: var(--space-2) var(--space-4); font-size: var(--fs-xs); }

/* ============================================================
   Forms
   ============================================================ */
.form { display: flex; flex-direction: column; gap: var(--space-4); }
.form__row { display: flex; flex-direction: column; gap: var(--space-2); }
.form__row label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
}
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 42, 55, 0.16);
}
.form__row input:disabled { background: var(--surface-2); color: var(--ink-muted); }
.form__hint  { font-size: var(--fs-xs); color: var(--ink-muted); }
.form__error { font-size: var(--fs-xs); color: var(--secondary); font-weight: 500; }
.form__submit { align-self: flex-start; margin-top: var(--space-2); }

/* ============================================================
   Auth pages
   ============================================================ */
.auth { padding: var(--space-16) 0; display: flex; justify-content: center; }
.auth__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-12);
  width: 100%;
  max-width: 480px;
}
.auth__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.auth__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
}
.auth__lede {
  color: var(--ink-muted);
  margin-bottom: var(--space-8);
}
.auth__alt {
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--ink-muted);
}
.auth__alt a { color: var(--accent); }
@media (max-width: 600px) {
  .auth__card { padding: var(--space-6); }
}

/* ============================================================
   User menu (header, logged-in)
   ============================================================ */
.user-menu { position: relative; }
.user-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3) var(--space-1) var(--space-1);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: var(--fs-sm);
  cursor: pointer;
}
.user-menu__toggle:hover { background: var(--surface-2); }
.user-menu__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.user-menu__name { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 720px) {
  .user-menu__name { display: none; }
}
.user-menu__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-2);
  display: none;
  z-index: 60;
}
.user-menu.is-open .user-menu__menu { display: block; }
.user-menu__item {
  display: block;
  padding: var(--space-2) var(--space-3);
  color: var(--ink);
  font-size: var(--fs-sm);
  border-radius: var(--r-sm);
  text-decoration: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.user-menu__item:hover { background: var(--surface-2); }
.user-menu__form { margin: 0; }
.user-menu__item--button { color: var(--secondary); }

/* ============================================================
   Flash + banner
   ============================================================ */
.flash-stack {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  pointer-events: none;
}
.flash {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--r-md);
  border: 1px solid;
  font-size: var(--fs-sm);
  pointer-events: auto;
  box-shadow: var(--shadow-sm);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}
.flash--success { background: #EAF2E7; color: #2A4D1F; border-color: #BCD3B0; }
.flash--error   { background: #F4DDD3; color: #6E2A1A; border-color: #D8B0A2; }

.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-sm);
  border-bottom: 1px solid;
}
.banner--warning { background: #F6EBD2; color: #5A3F0F; border-color: #E0CB95; }
.banner__link { margin-left: auto; color: inherit; text-decoration: underline; font-weight: 500; }

/* ============================================================
   Profile
   ============================================================ */
.profile {
  padding: var(--space-16) 0;
  max-width: 720px;
  margin-inline: auto;
}
.profile__header {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--line);
}
.profile__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  flex-shrink: 0;
}
.profile__name {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-1);
}
.profile__email,
.profile__handle {
  color: var(--ink-muted);
  font-size: var(--fs-sm);
}
.profile__handle { color: var(--accent); }
.profile__form { max-width: 480px; }
.profile__divider {
  margin: var(--space-12) 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.profile__meta dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-3) var(--space-6);
}
.profile__meta dt { color: var(--ink-muted); font-size: var(--fs-sm); }
.profile__meta dd { font-size: var(--fs-sm); }
.profile__meta-title { font-size: var(--fs-md); margin-bottom: var(--space-4); }
@media (max-width: 600px) {
  .profile__header { flex-direction: column; text-align: center; }
  .profile__meta dl { grid-template-columns: 1fr; gap: var(--space-1) 0; }
  .profile__meta dl > div { display: flex; justify-content: space-between; padding: var(--space-2) 0; border-bottom: 1px solid var(--line); }
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 500;
}
.pill--ok   { background: #EAF2E7; color: #2A4D1F; }
.pill--warn { background: #F6EBD2; color: #5A3F0F; }

/* ============================================================
   Dev outbox
   ============================================================ */
.dev-emails { padding: var(--space-16) 0; }
.dev-emails__lede { color: var(--ink-muted); margin-bottom: var(--space-8); }
.dev-emails__empty { color: var(--ink-muted); padding: var(--space-12); text-align: center; background: var(--surface-2); border-radius: var(--r-md); }
.dev-emails__list { display: flex; flex-direction: column; gap: var(--space-4); }
.dev-email {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--space-6);
}
.dev-email__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.dev-email__meta { font-size: var(--fs-xs); color: var(--ink-muted); }
.dev-email__body {
  font-family: var(--font-mono, ui-monospace, "JetBrains Mono", Menlo, monospace);
  font-size: var(--fs-xs);
  white-space: pre-wrap;
  word-break: break-word;
  background: var(--surface);
  padding: var(--space-4);
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  color: var(--ink);
}
.dev-email__body a { color: var(--accent); }

/* ============================================================
   PROMO LANDING — minimal nav + large CTAs
   ============================================================ */
.site-header--minimal .header__inner { gap: var(--space-6); }
.nav-promo {
  display: flex;
  gap: var(--space-6);
  margin-inline-start: auto;
}
.nav-promo a {
  color: var(--ink-muted);
  font-size: var(--fs-sm);
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.nav-promo a:hover { color: var(--ink); }
.nav-promo__signin {
  font-size: var(--fs-sm);
  color: var(--ink);
  text-decoration: none;
}
.nav-promo__signin:hover { color: var(--primary); }
@media (max-width: 980px) {
  .nav-promo { display: none; }
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-base);
}

/* ============================================================
   PROMO HERO — 2-col with phone mockup
   ============================================================ */
.promo-hero {
  position: relative;
  padding: var(--space-24) 0 var(--space-16);
  background:
    radial-gradient(circle at 78% 28%, rgba(229,180,80,0.18), transparent 60%),
    radial-gradient(circle at 18% 82%, rgba(31,53,84,0.10), transparent 55%),
    var(--surface);
  overflow: hidden;
}
.promo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><path d='M20 4 L36 20 L20 36 L4 20 Z' stroke='%23C92A37' stroke-width='0.5' fill='none' opacity='0.16'/></svg>");
  background-size: 40px 40px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 40%, black 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, black 40%, black 70%, transparent);
}
.promo-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-16);
}
.promo-hero__copy { max-width: 600px; }
.promo-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.promo-hero__title {
  font-size: clamp(2.4rem, 5.5vw, var(--fs-2xl));
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.promo-hero__lede {
  font-size: var(--fs-md);
  color: var(--ink-muted);
  max-width: 560px;
  margin-bottom: var(--space-8);
  line-height: 1.55;
}
.promo-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.store-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-3) var(--space-5);
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--r-md);
  opacity: 0.78;
  cursor: not-allowed;
  user-select: none;
  min-width: 160px;
}
.store-btn__line1 {
  font-size: 0.62rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.store-btn__line2 {
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-top: 2px;
}

.promo-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 980px) {
  .promo-hero__inner { grid-template-columns: 1fr; gap: var(--space-12); }
  .promo-hero__visual { order: -1; }
}

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 9 / 19.5;
  background: var(--ink);
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 30px 70px rgba(15,27,45,0.22),
    0 6px 16px rgba(15,27,45,0.10);
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.appf__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 18px 14px;
  font-size: 0.85rem;
}
.appf__brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.appf__icon { color: var(--ink-muted); font-size: 1.05rem; }

.appf__hero { padding: 0 14px 12px; }
.appf__hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}
.appf__hero-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: 14px;
  color: var(--surface);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.appf__hero-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.appf__hero-card h3 {
  font-family: var(--font-display);
  color: var(--surface);
  font-size: 1.4rem;
  margin: 0;
  font-weight: 500;
}
.appf__hero-card p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}

.appf__cards {
  padding: 6px 14px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.appf__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: var(--surface-2);
  border-radius: var(--r-md);
}
.appf__card-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c, var(--primary));
  flex-shrink: 0;
}
.appf__card strong {
  display: block;
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 500;
}
.appf__card small {
  font-size: 0.66rem;
  color: var(--ink-muted);
}

.appf__tabs {
  display: flex;
  justify-content: space-around;
  padding: 12px 0 18px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.appf__tab {
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.appf__tab.is-active { color: var(--primary); }

@media (max-width: 480px) {
  .phone { width: 260px; }
}

/* ============================================================
   VALUE PROPS — three columns
   ============================================================ */
.value-props {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--line);
}
.value-props__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
}
.value-prop__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--primary);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}
.value-prop h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-2);
}
.value-prop p {
  font-size: var(--fs-sm);
  color: var(--ink-muted);
  line-height: 1.55;
}
@media (max-width: 720px) {
  .value-props__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ============================================================
   FEATURE SPOTLIGHTS — alternating
   ============================================================ */
.feature-spot {
  padding: var(--space-24) 0;
  border-top: 1px solid var(--line);
}
.feature-spot__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.feature-spot--reverse .feature-spot__copy { order: 2; }
.feature-spot--reverse .feature-spot__visual { order: 1; }
.feature-spot__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.feature-spot__title {
  font-size: clamp(1.8rem, 3vw, var(--fs-xl));
  margin-bottom: var(--space-6);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.feature-spot__lede {
  font-size: var(--fs-base);
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.65;
}
.feature-spot__visual { display: flex; flex-direction: column; gap: var(--space-3); }
@media (max-width: 980px) {
  .feature-spot__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .feature-spot--reverse .feature-spot__copy { order: 0; }
  .feature-spot--reverse .feature-spot__visual { order: 1; }
}

.route-list { display: flex; flex-direction: column; gap: var(--space-3); }
.route-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
}
.route-item__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201,42,55,0.18);
}
.route-item strong { display: block; font-size: var(--fs-sm); }
.route-item span { font-size: var(--fs-xs); color: var(--ink-muted); }

.book-list { display: flex; flex-direction: column; gap: var(--space-3); }
.book-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.book-item__pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.book-item__pill--stay { background: rgba(229,180,80,0.20); color: #8C6700; }
.book-item__pill--eat  { background: rgba(201,42,55,0.14);  color: var(--primary); }
.book-item__pill--move { background: rgba(31,53,84,0.12);   color: var(--accent); }
.book-item__body strong { display: block; font-size: var(--fs-sm); }
.book-item__body span { font-size: var(--fs-xs); color: var(--ink-muted); }
.book-item__price {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--primary);
}

/* ============================================================
   PASSPORT SPOTLIGHT
   ============================================================ */
.passport-spotlight {
  padding: var(--space-24) 0;
  background: var(--bg-deep);
  color: var(--surface);
  text-align: center;
  border-top: 1px solid var(--line);
}
.passport-spotlight__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--gold-leaf);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.passport-spotlight__title {
  color: var(--surface);
  font-size: clamp(1.8rem, 3.5vw, var(--fs-xl));
  margin-bottom: var(--space-6);
  letter-spacing: -0.01em;
}
.passport-spotlight__lede {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}
.stamp-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.stamp { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.stamp > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--c, var(--primary));
  color: var(--surface);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18), inset 0 0 0 4px rgba(255,255,255,0.12);
}
.stamp small {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.stamp--locked > span {
  background: transparent;
  border: 2px dashed rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.5);
  box-shadow: none;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--line);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
.trust-strip__grid li { display: flex; flex-direction: column; gap: var(--space-2); }
.trust-strip__grid strong {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--primary);
  letter-spacing: -0.01em;
}
.trust-strip__grid span {
  font-size: var(--fs-xs);
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 720px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  padding: var(--space-24) 0;
  background: var(--bg-deeper);
  color: var(--surface);
  text-align: center;
}
.cta-final__inner { max-width: 640px; margin: 0 auto; }
.cta-final__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--fs-xs);
  color: var(--gold-leaf);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.cta-final__title {
  color: var(--surface);
  font-size: clamp(1.8rem, 3.5vw, var(--fs-xl));
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.cta-final__lede {
  color: rgba(255,255,255,0.78);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}
.cta-final__form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin: 0 auto var(--space-4);
}
.cta-final__form input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--surface);
  border-radius: var(--r-md);
  outline: none;
  font: inherit;
}
.cta-final__form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-final__form input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
}
.cta-final__form button { white-space: nowrap; }
.cta-final__consent {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
}
@media (max-width: 600px) {
  .cta-final__form { flex-direction: column; }
}

/* ============================================================
   v2 — PHOTO-DRIVEN HERO
   ============================================================ */
.hero-photo {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--surface);
  background: var(--ink);
  overflow: hidden;
}
.hero-photo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: kenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo__bg { animation: none; transform: scale(1.05); }
}
.hero-photo__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7,17,30,0.86) 0%, rgba(15,27,45,0.55) 45%, rgba(15,27,45,0.25) 85%),
    linear-gradient(to bottom, rgba(7,17,30,0.20), rgba(7,17,30,0.55));
  z-index: 1;
}
.hero-photo__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-24) 0 var(--space-16);
}
.hero-photo__copy { max-width: 640px; color: var(--surface); }
.hero-photo__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--gold-leaf);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.hero-photo__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 6.4rem);
  font-weight: 700;
  color: var(--surface);
  line-height: 0.95;
  margin-bottom: var(--space-6);
  letter-spacing: -0.045em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.30);
}
.hero-photo__title em {
  font-style: normal;
  color: var(--gold-leaf);
}
.hero-photo__lede {
  font-size: clamp(var(--fs-base), 1.6vw, var(--fs-md));
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin-bottom: var(--space-8);
  line-height: 1.55;
}
.hero-photo__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero-photo__phone {
  display: flex;
  justify-content: center;
}
.hero-photo__phone .phone {
  width: 270px;
  transform: rotate(-2deg);
}
.hero-photo__credit {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-6);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  z-index: 3;
  letter-spacing: 0.04em;
}
.btn--ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--surface);
  border-color: rgba(255,255,255,0.32);
  backdrop-filter: blur(10px);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
}
@media (max-width: 980px) {
  .hero-photo { min-height: 0; }
  .hero-photo__inner { grid-template-columns: 1fr; gap: var(--space-8); padding: var(--space-16) 0; }
  .hero-photo__phone { display: none; }
  .hero-photo__credit { display: none; }
}

/* App-frame mockup card photo (replaces colored dot) */
.appf__card-photo {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* ============================================================
   v2 — FEATURED DESTINATIONS GRID
   ============================================================ */
.dest-strip {
  padding: var(--space-24) 0;
  background: var(--surface);
}
.dest-strip__head {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 720px;
  margin-inline: auto;
}
.dest-strip__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--fs-xs);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.dest-strip__title {
  font-size: clamp(2rem, 4vw, var(--fs-xl));
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.dest-strip__lede {
  color: var(--ink-muted);
  font-size: var(--fs-base);
  line-height: 1.6;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.dest-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  box-shadow: var(--shadow-md);
}
.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(15,27,45,0.18);
}
.dest-card { will-change: transform; }
.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,17,30,0.90) 0%, rgba(15,27,45,0.35) 55%, rgba(15,27,45,0.05) 100%);
  z-index: 1;
}
.dest-card__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  color: var(--surface);
}
.dest-card__badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  color: var(--gold-leaf);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.dest-card__name {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-md), 2.4vw, var(--fs-lg));
  color: var(--surface);
  margin-bottom: var(--space-1);
  line-height: 1.05;
  font-weight: 500;
}
.dest-card__region {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dest-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .dest-card { aspect-ratio: 16/11; }
}

/* ============================================================
   v2 — FEATURE SPOTLIGHT WITH PHOTO
   ============================================================ */
.feature-spot--photo .feature-spot__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  order: 2;
}
.feature-spot--photo.feature-spot--reverse .feature-spot__photo { order: 1; }
.feature-spot__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-spot__photo:hover img { transform: scale(1.04); }
.feature-spot__photo-label {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  padding: 4px 12px;
  background: rgba(7,17,30,0.78);
  color: var(--surface);
  border-radius: 999px;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
@media (max-width: 980px) {
  .feature-spot--photo .feature-spot__photo,
  .feature-spot--photo.feature-spot--reverse .feature-spot__photo { order: 0; aspect-ratio: 16/10; }
}

/* ============================================================
   v2 — PASSPORT SPOTLIGHT WITH PHOTO BG
   ============================================================ */
.passport-spotlight--photo {
  position: relative;
  background: var(--accent);
  overflow: hidden;
}
.passport-spotlight--photo .passport-spotlight__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.passport-spotlight--photo .passport-spotlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.90) 0%, rgba(7,17,30,0.85) 100%);
  z-index: 1;
}
.passport-spotlight--photo .passport-spotlight__inner {
  position: relative;
  z-index: 2;
}

/* ============================================================
   v2 — Footer photo credit
   ============================================================ */
.footer__bar__inner small:last-child::before {
  content: "";
}

/* ============================================================
   v3 — SCROLL-REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

/* ============================================================
   v3 — TRAILER VIDEO SECTION
   ============================================================ */
.trailer {
  padding: var(--space-24) 0;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}
.trailer__head {
  text-align: center;
  margin-bottom: var(--space-12);
  max-width: 720px;
  margin-inline: auto;
}
.trailer__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: var(--fs-xs);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.trailer__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, var(--fs-2xl));
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 96;
  margin-bottom: var(--space-4);
  line-height: 1.0;
}
.trailer__lede {
  color: var(--ink-muted);
  font-size: var(--fs-base);
  line-height: 1.6;
}
.trailer__player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15,27,45,0.18), 0 8px 20px rgba(15,27,45,0.10);
  cursor: pointer;
  background: var(--ink);
}
.trailer__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.trailer__player:hover .trailer__poster { transform: scale(1.04); }
.trailer__player::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.20), rgba(15,27,45,0.55));
  z-index: 1;
}
.trailer__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(255,255,255,0.96);
  border: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(15,27,45,0.28);
  transition: transform 0.3s ease, background 0.3s ease;
}
.trailer__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--surface);
}
.trailer__play svg { color: var(--primary); }
.trailer__play::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  animation: pulseRing 2.6s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}
.trailer__caption {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: 2;
  color: var(--surface);
}
.trailer__caption strong {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.trailer__caption span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
}

/* ============================================================
   Section title sizing — bumped for 2026 feel
   ============================================================ */
.dest-strip__title,
.feature-spot__title,
.passport-spotlight__title,
.cta-final__title,
.trailer__title {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

/* Smoother button transitions */
.btn {
  transition: background 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
              color 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn--primary { box-shadow: 0 4px 12px rgba(201,42,55,0.28); }
.btn--primary:hover { box-shadow: 0 8px 22px rgba(201,42,55,0.36); }

/* ============================================================
   v4 — BOOKING HERO (the flagship section)
   ============================================================ */
.booking-hero {
  position: relative;
  padding: var(--space-24) 0 var(--space-16);
  background: var(--bg-base);
  color: var(--surface);
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
}
.booking-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,42,55,0.18), transparent 70%);
  pointer-events: none;
}
.booking-hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31,53,84,0.45), transparent 70%);
  pointer-events: none;
}
.booking-hero__inner { position: relative; z-index: 2; }
.booking-hero__head {
  text-align: center;
  margin-bottom: var(--space-12);
  max-width: 760px;
  margin-inline: auto;
}
.booking-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--gold-leaf);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.booking-hero__live-count {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 10px;
  background: rgba(125,211,252,0.10);
  border: 1px solid rgba(125,211,252,0.28);
  border-radius: 999px;
  color: var(--live);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 500;
  font-family: var(--font-mono);
}
.booking-hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 12px var(--live);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}
.booking-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  color: var(--surface);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: var(--space-4);
}
.booking-hero__lede {
  color: rgba(255,255,255,0.72);
  font-size: var(--fs-base);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ----- Tab pills ----- */
.booking-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: var(--space-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  padding: 4px;
  border-radius: 999px;
}
.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 18px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,0.62);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              color 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  font-family: var(--font-body);
}
.booking-tab:hover { color: var(--surface); }
.booking-tab.is-active {
  background: var(--surface);
  color: var(--ink);
}
.booking-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ----- Search widget (glass card) ----- */
.booking-widget {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: var(--space-5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.booking-widget__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.booking-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 1px;
  background: var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
}
.booking-form__field {
  background: rgba(10,15,26,0.85);
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: text;
  transition: background 0.2s ease;
}
.booking-form__field:hover,
.booking-form__field:focus-within {
  background: rgba(22,36,59,0.95);
}
.booking-form__field label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  font-family: var(--font-body);
}
.booking-form__field input {
  background: transparent;
  border: 0;
  color: var(--surface);
  font-size: var(--fs-base);
  font-weight: 500;
  outline: none;
  padding: 2px 0;
  font-family: var(--font-body);
}
.booking-form__field input::placeholder { color: rgba(255,255,255,0.4); }
.booking-form__field input[type="date"] { color-scheme: dark; }
.booking-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--primary);
  color: var(--surface);
  border: 0;
  padding: 0 var(--space-8);
  font-weight: 600;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: var(--font-body);
}
.booking-form__submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.booking-form__submit svg { width: 16px; height: 16px; }

/* ----- Trust strip under widget ----- */
.booking-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}
.booking-trust__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.booking-trust__item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-leaf);
  flex-shrink: 0;
}

/* ----- Category cards below the widget ----- */
.booking-cats {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.booking-cat {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-dark);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
  text-decoration: none !important;
}
.booking-cat:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}
.booking-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,17,30,0.92) 0%, rgba(15,27,45,0.40) 50%, rgba(15,27,45,0.10) 100%);
  z-index: 1;
}
.booking-cat__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5);
  color: var(--surface);
}
.booking-cat__icon {
  width: 32px;
  height: 32px;
  margin-bottom: var(--space-3);
  color: var(--gold-leaf);
  align-self: flex-start;
}
.booking-cat__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
}
.booking-cat__count {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.booking-cat__count::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.booking-cat:hover .booking-cat__count::after { transform: translateX(4px); }

@media (max-width: 980px) {
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-form__submit { grid-column: span 2; padding: var(--space-3) var(--space-8); }
  .booking-cats { grid-template-columns: repeat(2, 1fr); }
  .booking-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
}
@media (max-width: 600px) {
  .booking-form { grid-template-columns: 1fr; }
  .booking-form__submit { grid-column: 1; }
  .booking-cats { grid-template-columns: 1fr; }
  .booking-cat { aspect-ratio: 16/10; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Places directory — index + show
   ============================================================ */
.places-head {
  background: var(--surface-2);
  padding: calc(var(--header-h) + var(--space-12)) 0 var(--space-12);
  border-bottom: 1px solid var(--line);
}
.places-head__inner { max-width: 760px; }
.places-head__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.places-head__title {
  font-size: clamp(2.2rem, 5vw, var(--fs-2xl));
  margin-bottom: var(--space-4);
  line-height: 1.0;
}
.places-head__lede {
  font-size: var(--fs-md);
  color: var(--ink-muted);
  max-width: 640px;
}

.places-filters {
  position: sticky;
  top: var(--header-h);
  z-index: 10;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: var(--space-4) 0;
}
.places-filters__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.places-filters__group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.places-filters__group::-webkit-scrollbar { display: none; }
.places-filters__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 90px;
}
.places-filters__chips {
  display: flex;
  gap: var(--space-2);
  flex-wrap: nowrap;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-sm);
  color: var(--ink);
  background: var(--surface);
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.filter-chip:hover { background: var(--surface-2); border-color: var(--ink-muted); }
.filter-chip.is-active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
@media (max-width: 720px) {
  .places-filters__group { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
  .places-filters__label { min-width: 0; }
}

.places-grid-wrap { padding: var(--space-12) 0 var(--space-24); }
.places-count {
  font-size: var(--fs-sm);
  color: var(--ink-muted);
  margin-bottom: var(--space-6);
}
.places-empty {
  padding: var(--space-16) var(--space-6);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: var(--ink-muted);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 980px) { .places-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .places-grid { grid-template-columns: 1fr; } }

.place-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-lg);
  text-decoration: none !important;
  color: var(--surface);
  isolation: isolate;
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.place-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.place-card__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.place-card:hover .place-card__photo { transform: scale(1.05); }
.place-card__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-5);
  background: linear-gradient(to top, rgba(7,17,30,0.92) 0%, rgba(15,27,45,0.30) 50%, rgba(15,27,45,0.10) 100%);
}
.place-card__badges {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.place-card__body { display: flex; flex-direction: column; gap: var(--space-1); }
.place-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.place-card__meta {
  display: inline-flex;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.badge--unesco { background: var(--gold-leaf); color: var(--ink); border-color: rgba(0,0,0,0.08); }
.badge--cat    { background: rgba(15,27,45,0.74); color: var(--surface); border-color: rgba(255,255,255,0.18); }
.badge--region { background: rgba(255,255,255,0.16); color: var(--surface); border-color: rgba(255,255,255,0.28); }

/* ----- Place detail page ----- */
.place-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + var(--space-12)) 0 var(--space-12);
  color: var(--surface);
  isolation: isolate;
}
.place-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.place-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(7,17,30,0.92) 0%, rgba(7,17,30,0.55) 45%, rgba(7,17,30,0.25) 100%);
}
.place-hero__inner { display: flex; flex-direction: column; gap: var(--space-4); max-width: 820px; }
.place-hero__crumb a {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  text-decoration: none;
}
.place-hero__crumb a:hover { color: var(--surface); text-decoration: underline; }
.place-hero__badges { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.place-hero__title {
  color: var(--surface);
  font-size: clamp(2.6rem, 7vw, var(--fs-3xl));
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}
.place-hero__intro {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.92);
  max-width: 720px;
  margin: 0;
}
.place-hero__lang-note {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.place-body { background: var(--surface); padding: var(--space-16) 0; }
.place-body__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--space-12);
  align-items: start;
}
.place-body__main p {
  font-size: 1.125rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 65ch;
}
.place-body__side {
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
}
.place-side__title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.place-facts { margin-bottom: var(--space-6); }
.place-facts__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
}
.place-facts__row:last-child { border-bottom: 0; }
.place-facts__row dt {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  font-weight: 600;
}
.place-facts__row dd {
  font-size: var(--fs-sm);
  color: var(--ink);
  text-align: right;
  font-weight: 500;
}
.btn--block { display: flex; justify-content: center; width: 100%; }
.place-side__note {
  margin-top: var(--space-3);
  font-size: var(--fs-xs);
  color: var(--ink-muted);
  text-align: center;
}
@media (max-width: 900px) {
  .place-body__inner { grid-template-columns: 1fr; }
  .place-body__side { position: static; }
}

.place-related {
  background: var(--surface-2);
  padding: var(--space-16) 0;
  border-top: 1px solid var(--line);
}
.place-related__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.place-related__row {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-3);
  scrollbar-width: thin;
}
.place-related__row > li { flex: 0 0 240px; scroll-snap-align: start; }
.place-related__card {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.place-related__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.place-related__photo {
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.place-related__name {
  padding: var(--space-3) var(--space-3) 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-base);
  letter-spacing: -0.02em;
}
.place-related__meta {
  padding: 0 var(--space-3) var(--space-3);
  font-size: var(--fs-xs);
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   App workspace (post-login dashboard + stub pages)
   Dark, generous, 2026-modern. Built separately from marketing chrome.
   ============================================================ */
.app-body {
  background: var(--bg-base);
  color: #E6EAF2;
  min-height: 100dvh;
}
.app-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 26, 0.85);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
          backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand--app { color: #F4F2EC; }
.brand--app .brand__name { color: #F4F2EC; }
.brand--app .brand__accent { color: var(--secondary); }

.app-header__user {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.app-header__name {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(244, 242, 236, 0.86);
  letter-spacing: 0.01em;
}
.app-header__profile {
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.7);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--r-md);
  transition: color 0.2s ease, background 0.2s ease;
}
.app-header__profile:hover {
  color: #F4F2EC;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}
.app-header__signout { margin: 0; }
.app-header__btn {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(244, 242, 236, 0.86);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.app-header__btn:hover {
  background: rgba(201, 42, 55, 0.18);
  border-color: rgba(201, 42, 55, 0.45);
  color: #fff;
}

.app-main {
  flex: 1;
  padding: var(--space-12) 0 var(--space-24);
}
.app-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.app-greet {
  margin-bottom: var(--space-12);
  max-width: 720px;
}
.app-greet__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: var(--space-4);
}
.app-greet__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #F4F2EC;
  margin-bottom: var(--space-4);
}
.app-greet__lede {
  font-size: var(--fs-md);
  line-height: 1.55;
  color: rgba(244, 242, 236, 0.66);
  max-width: 560px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}
.feat-grid__item { list-style: none; }
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
}

.feat-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  min-height: 240px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  color: #F4F2EC;
  text-decoration: none !important;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(229, 180, 80, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.feat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 180, 80, 0.35);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.feat-card:hover::before { opacity: 1; }
.feat-card--avail { border-color: rgba(229, 180, 80, 0.25); }

.feat-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(229, 180, 80, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(229, 180, 80, 0.2);
  flex-shrink: 0;
}
.feat-card__icon svg { width: 26px; height: 26px; }
.feat-card--avail .feat-card__icon {
  background: rgba(229, 180, 80, 0.18);
  color: #F0CB6C;
}

.feat-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.feat-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #F4F2EC;
  line-height: 1.2;
}
.feat-card__desc {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(244, 242, 236, 0.62);
}

.feat-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.feat-card__status {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.feat-card__status--avail {
  background: rgba(125, 211, 252, 0.12);
  color: #7DD3FC;
  border: 1px solid rgba(125, 211, 252, 0.3);
}
.feat-card__status--avail::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7DD3FC;
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.7);
}
.feat-card__status--soon {
  background: rgba(255,255,255,0.04);
  color: rgba(244, 242, 236, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
}
.feat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(244, 242, 236, 0.78);
  transition: transform 0.2s ease, color 0.2s ease;
}
.feat-card:hover .feat-card__cta {
  color: var(--secondary);
  transform: translateX(2px);
}

/* Coming-soon stub page */
.coming-soon-page {
  max-width: 640px;
  margin: var(--space-16) auto;
  text-align: center;
  padding: var(--space-12);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
}
.coming-soon-page__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: var(--space-4);
}
.coming-soon-page__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #F4F2EC;
  margin-bottom: var(--space-4);
}
.coming-soon-page__desc {
  font-size: var(--fs-md);
  line-height: 1.55;
  color: rgba(244, 242, 236, 0.78);
  margin-bottom: var(--space-4);
}
.coming-soon-page__lede {
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.5);
  margin-bottom: var(--space-8);
}
.coming-soon-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--secondary);
  background: rgba(229, 180, 80, 0.1);
  border: 1px solid rgba(229, 180, 80, 0.3);
  border-radius: var(--r-md);
  padding: 10px 18px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.coming-soon-page__back:hover {
  background: rgba(229, 180, 80, 0.18);
  text-decoration: none;
  transform: translateX(-2px);
}

@media (max-width: 640px) {
  .app-header__inner { padding: 0 var(--space-4); height: 60px; gap: var(--space-3); }
  .app-header__profile { display: none; }
  .app-container { padding: 0 var(--space-4); }
  .app-main { padding: var(--space-8) 0 var(--space-16); }
  .app-greet { margin-bottom: var(--space-8); }
  .feat-card { min-height: auto; padding: var(--space-4); }
}

/* ============================================================
   Stays + Bookings (post-login workspace)
   Surfaces are bright on dark base; this is the showcase module.
   ============================================================ */
.stays-page { padding-bottom: var(--space-12); }

/* ---- Stays index hero + filters ---- */
.stays-hero {
  margin-bottom: var(--space-8);
  max-width: 760px;
}
.stays-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: var(--space-4);
}
.stays-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #F4F2EC;
  margin-bottom: var(--space-3);
}
.stays-hero__lede {
  font-size: var(--fs-md);
  line-height: 1.55;
  color: rgba(244, 242, 236, 0.66);
}

.stays-filter {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}
.stays-filter__pill {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgba(244, 242, 236, 0.7);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.stays-filter__pill:hover {
  background: rgba(255,255,255,0.06);
  color: #F4F2EC;
  text-decoration: none;
}
.stays-filter__pill.is-active {
  background: var(--surface);
  color: var(--ink);
}
.stays-filter__pill.is-active:hover { background: var(--surface); color: var(--ink); }

.stays-cities {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.stays-cities__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 242, 236, 0.5);
}
.stays-cities__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.stays-cities__chip {
  font-size: var(--fs-sm);
  padding: 5px 12px;
  border-radius: 999px;
  color: rgba(244, 242, 236, 0.72);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.stays-cities__chip:hover {
  color: #F4F2EC;
  border-color: rgba(229, 180, 80, 0.4);
  background: rgba(229, 180, 80, 0.06);
  text-decoration: none;
}
.stays-cities__chip.is-active {
  background: rgba(229, 180, 80, 0.18);
  border-color: rgba(229, 180, 80, 0.5);
  color: #F4F2EC;
}

.stays-count {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 242, 236, 0.5);
  margin: var(--space-6) 0 var(--space-4);
}

.stays-empty {
  padding: var(--space-12);
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  color: rgba(244, 242, 236, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

/* ---- Stay grid + cards ---- */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) { .stay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px)  { .stay-grid { grid-template-columns: 1fr; } }
.stay-grid__item { list-style: none; }

.stay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none !important;
  color: #F4F2EC;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.stay-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 180, 80, 0.35);
  box-shadow: 0 22px 48px rgba(0,0,0,0.4);
}
.stay-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #1A2438;
  transition: transform 0.5s ease;
}
.stay-card:hover .stay-card__photo { transform: scale(1.05); }

.stay-card__type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(10, 15, 26, 0.75);
  color: #F4F2EC;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
}
.stay-card__heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 26, 0.5);
  color: #F4F2EC;
  border: 1px solid rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.stay-card__heart:hover { background: rgba(201, 42, 55, 0.85); }
.stay-card__heart.is-on { background: var(--primary); color: #fff; border-color: var(--primary); }
.stay-card__heart.is-on svg { fill: currentColor; }

.stay-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-4) var(--space-4) var(--space-4);
}
.stay-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.015em;
  color: #F4F2EC;
  line-height: 1.25;
}
.stay-card__meta {
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.6);
}
.stay-card__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.86);
  margin-top: 2px;
}
.stay-card__star { color: var(--secondary); }
.stay-card__rating-num { font-weight: 600; }
.stay-card__rating-count { color: rgba(244, 242, 236, 0.5); }
.stay-card__price {
  margin-top: var(--space-2);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stay-card__price strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: #F4F2EC;
}
.stay-card__per {
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.5);
}

/* ============================================================
   Stay detail page (showcase)
   ============================================================ */
.stay-detail { padding-bottom: var(--space-16); }
.stay-detail__crumb {
  margin-bottom: var(--space-4);
  font-size: var(--fs-sm);
}
.stay-detail__crumb a {
  color: rgba(244, 242, 236, 0.65);
  text-decoration: none;
  transition: color 0.15s ease;
}
.stay-detail__crumb a:hover { color: var(--secondary); text-decoration: none; }

.stay-detail__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.stay-detail__title-main { flex: 1 1 60%; min-width: 0; }
.stay-detail__pills {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.stay-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #F4F2EC;
  border: 1px solid rgba(255,255,255,0.1);
}
.stay-pill--type {
  background: rgba(229, 180, 80, 0.16);
  color: var(--secondary);
  border-color: rgba(229, 180, 80, 0.35);
}
.stay-pill--muted { color: rgba(244, 242, 236, 0.6); }
.stay-detail__h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #F4F2EC;
}
.stay-detail__title-aside {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.stay-detail__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: var(--fs-md);
  color: #F4F2EC;
}
.stay-detail__rating-star { color: var(--secondary); font-size: 1.125em; }
.stay-detail__rating-num { font-weight: 700; }
.stay-detail__rating-count { color: rgba(244, 242, 236, 0.55); font-size: var(--fs-sm); }
.stay-detail__icons { display: inline-flex; gap: 6px; }
.stay-iconbtn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #F4F2EC;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.stay-iconbtn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.stay-iconbtn.is-on { background: var(--primary); border-color: var(--primary); color: #fff; }
.stay-iconbtn.is-on svg { fill: currentColor; }

/* ---- Gallery ---- */
.stay-gallery {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-12);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 460px;
}
.stay-gallery__hero {
  background-size: cover;
  background-position: center;
  background-color: #1A2438;
  border: 0;
  cursor: pointer;
  border-radius: 12px 0 0 12px;
  transition: filter 0.2s ease;
}
.stay-gallery__hero:hover { filter: brightness(1.05); }
.stay-gallery__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-3);
}
.stay-gallery__tile {
  background-size: cover;
  background-position: center;
  background-color: #1A2438;
  border: 0;
  cursor: pointer;
  border-radius: 6px;
  transition: filter 0.2s ease;
}
.stay-gallery__tile:hover { filter: brightness(1.05); }
.stay-gallery__tile:nth-child(2) { border-top-right-radius: 12px; }
.stay-gallery__tile:nth-child(4) { border-bottom-right-radius: 12px; }

@media (max-width: 980px) {
  .stay-gallery { display: flex; height: 320px; overflow-x: auto; scroll-snap-type: x mandatory; gap: var(--space-2); }
  .stay-gallery__hero, .stay-gallery__tile {
    flex: 0 0 85%;
    scroll-snap-align: start;
    border-radius: var(--r-lg) !important;
    height: 100%;
  }
  .stay-gallery__tiles { display: contents; }
}

/* ---- Two-column body ---- */
.stay-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 980px) {
  .stay-body { grid-template-columns: 1fr; gap: var(--space-8); }
}
.stay-body__main { min-width: 0; }
.stay-body__aside { position: sticky; top: 88px; }
@media (max-width: 980px) { .stay-body__aside { position: static; } }

.stay-section {
  padding: var(--space-8) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stay-section:first-child { padding-top: 0; }
.stay-section:last-child { border-bottom: 0; }
.stay-section p {
  color: rgba(244, 242, 236, 0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-3);
}
.stay-section p:last-child { margin-bottom: 0; }
.stay-section__lede {
  font-size: 1.0625rem !important;
  color: rgba(244, 242, 236, 0.92) !important;
  font-weight: 400;
  line-height: 1.6 !important;
}
.stay-section__title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #F4F2EC;
  margin-bottom: var(--space-4);
}
.stay-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(229, 180, 80, 0.12);
  color: var(--secondary);
  border: 1px solid rgba(229, 180, 80, 0.25);
}
.stay-section--block {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  margin: var(--space-6) 0;
}
.stay-section--block + .stay-section--block { margin-top: var(--space-3); }

/* Amenities */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-6);
  margin: 0;
  padding: 0;
}
@media (max-width: 600px) { .amenity-grid { grid-template-columns: 1fr; } }
.amenity {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: rgba(244, 242, 236, 0.86);
  list-style: none;
}
.amenity__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: rgba(244, 242, 236, 0.78);
  flex-shrink: 0;
}
.amenity__icon svg { width: 18px; height: 18px; }

/* Host */
.stay-host { display: flex; align-items: center; gap: var(--space-4); }
.stay-host__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.stay-host__name { font-weight: 600; color: #F4F2EC; margin-bottom: 2px; }
.stay-host__meta { font-size: var(--fs-sm); color: rgba(244, 242, 236, 0.6); }

/* Map placeholder */
.stay-map {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.stay-map__placeholder {
  color: rgba(244, 242, 236, 0.35);
  flex-shrink: 0;
}
.stay-map__coords {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.78);
}
.stay-map__coords a {
  display: block;
  margin-top: 4px;
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
}
.stay-map__coords a:hover { text-decoration: underline; }

/* Review summary + bars */
.review-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}
@media (max-width: 600px) { .review-summary { grid-template-columns: 1fr; gap: var(--space-4); } }
.review-summary__num {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}
.review-summary__star { color: var(--secondary); font-size: 1.5rem; }
.review-summary__big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: #F4F2EC;
}
.review-summary__count {
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.55);
  margin-left: var(--space-2);
}
.review-bars { display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; }
.review-bar {
  display: grid;
  grid-template-columns: 26px 1fr 38px;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.7);
}
.review-bar__label { font-family: var(--font-mono); font-size: 0.75rem; color: rgba(244, 242, 236, 0.55); }
.review-bar__track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.review-bar__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--gold-leaf));
  border-radius: 999px;
}
.review-bar__pct { font-family: var(--font-mono); font-size: 0.75rem; color: rgba(244, 242, 236, 0.55); text-align: right; }

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin: 0;
  padding: 0;
}
@media (max-width: 720px) { .review-list { grid-template-columns: 1fr; } }
.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: var(--space-5, var(--space-4));
  list-style: none;
}
.review-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F3554, #16243B);
  border: 1px solid rgba(255,255,255,0.1);
  color: #F4F2EC;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-card__author { font-weight: 600; color: #F4F2EC; font-size: var(--fs-sm); }
.review-card__flag { margin-left: 4px; font-size: 1rem; }
.review-card__date { font-size: 0.75rem; color: rgba(244, 242, 236, 0.5); margin-top: 2px; }
.review-stars { display: inline-flex; gap: 1px; font-size: 0.875rem; }
.review-star { color: rgba(255,255,255,0.18); }
.review-star.is-on { color: var(--secondary); }
.review-card__title { font-weight: 600; color: #F4F2EC; margin-bottom: 6px; font-size: 0.9375rem; }
.review-card__body { color: rgba(244, 242, 236, 0.78); font-size: 0.9375rem; line-height: 1.55; }
.review-card__foot { margin-top: var(--space-3); font-size: 0.75rem; color: rgba(244, 242, 236, 0.5); }
.review-show-all { margin-top: var(--space-4); }
.review-show-all a {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
}
.review-show-all a:hover { text-decoration: underline; }

/* ---- Booking widget (the headline component) ---- */
.book-widget {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}
.book-widget__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-4);
}
.book-widget__price strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #F4F2EC;
  letter-spacing: -0.025em;
}
.book-widget__per { color: rgba(244, 242, 236, 0.55); font-size: var(--fs-sm); }
.book-widget__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: #F4F2EC;
  margin-bottom: var(--space-3);
}
.book-widget__errors {
  background: rgba(201, 42, 55, 0.12);
  border: 1px solid rgba(201, 42, 55, 0.4);
  border-radius: var(--r-md);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
}
.book-widget__error { color: #FFB4BD; font-size: var(--fs-sm); margin: 0; }
.book-widget__form { display: flex; flex-direction: column; gap: var(--space-3); }
.book-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.book-field { display: flex; flex-direction: column; gap: 6px; }
.book-field__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(244, 242, 236, 0.65);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
}
.book-field__hint {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(244, 242, 236, 0.45);
  font-weight: 400;
}
.book-field input {
  width: 100%;
  background: rgba(10, 15, 26, 0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  color: #F4F2EC;
  padding: 12px 14px;
  font-size: var(--fs-base);
  font-family: var(--font-body);
  transition: border-color 0.15s ease, background 0.15s ease;
  color-scheme: dark;
}
.book-field input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(10, 15, 26, 0.85);
}
.book-widget__cta {
  margin-top: var(--space-2);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-base);
  padding: 14px 20px;
  border: 0;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.book-widget__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201, 42, 55, 0.4);
}
.book-widget__note {
  font-size: var(--fs-xs);
  text-align: center;
  color: rgba(244, 242, 236, 0.5);
  margin-top: var(--space-2);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 14, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--space-6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #F4F2EC;
  font-size: 1.75rem;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   Booking confirm + list
   ============================================================ */
.booking-confirm {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.booking-confirm__head { padding: var(--space-8) 0; }
.booking-confirm__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.14);
  color: #7DD3FC;
  border: 1px solid rgba(125, 211, 252, 0.4);
  margin-bottom: var(--space-4);
}
.booking-confirm__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 242, 236, 0.55);
  margin-bottom: var(--space-2);
}
.booking-confirm__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  color: #F4F2EC;
  margin-bottom: var(--space-6);
}
.booking-confirm__code-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 242, 236, 0.55);
  margin-bottom: var(--space-2);
}
.booking-confirm__code {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--secondary);
  background: rgba(229, 180, 80, 0.08);
  border: 1px dashed rgba(229, 180, 80, 0.35);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-6);
  display: inline-block;
}
.booking-confirm__details {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-6);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  text-align: left;
  margin: var(--space-8) 0 var(--space-6);
  align-items: stretch;
}
@media (max-width: 600px) { .booking-confirm__details { grid-template-columns: 1fr; } }
.booking-confirm__photo {
  background-size: cover;
  background-position: center;
  background-color: #1A2438;
  border-radius: var(--r-md);
  min-height: 160px;
}
.booking-confirm__info { padding: var(--space-2) var(--space-2) var(--space-2) 0; }
.booking-confirm__stay {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: #F4F2EC;
  margin-bottom: 4px;
}
.booking-confirm__city { font-size: var(--fs-sm); color: rgba(244, 242, 236, 0.6); margin-bottom: var(--space-3); }
.booking-confirm__rows { display: flex; flex-direction: column; gap: var(--space-2); margin: 0; }
.booking-confirm__row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: var(--fs-sm);
}
.booking-confirm__row:last-child { border-bottom: 0; }
.booking-confirm__row dt { color: rgba(244, 242, 236, 0.6); margin: 0; }
.booking-confirm__row dd { color: #F4F2EC; font-weight: 500; margin: 0; }
.booking-confirm__row--total { padding-top: var(--space-3); margin-top: var(--space-2); border-top: 1px solid rgba(255,255,255,0.1); }
.booking-confirm__row--total dt, .booking-confirm__row--total dd {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #F4F2EC;
}
.booking-confirm__email {
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.55);
  margin: var(--space-4) 0 var(--space-6);
}
.booking-confirm__actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* Booking list */
.booking-list { display: flex; flex-direction: column; gap: var(--space-3); margin: 0; padding: 0; }
.booking-list__item { list-style: none; }
.booking-list__row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-4);
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--space-3);
  text-decoration: none !important;
  color: #F4F2EC;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.booking-list__row:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 180, 80, 0.3);
  background: rgba(255,255,255,0.05);
}
.booking-list__photo {
  width: 100px;
  height: 80px;
  background-size: cover;
  background-position: center;
  background-color: #1A2438;
  border-radius: var(--r-md);
}
.booking-list__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.booking-list__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #F4F2EC;
}
.booking-list__city { font-size: var(--fs-sm); color: rgba(244, 242, 236, 0.6); }
.booking-list__dates { font-size: 0.8125rem; color: rgba(244, 242, 236, 0.55); margin-top: 2px; }
.booking-list__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.booking-list__status {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 999px;
}
.booking-list__status--confirmed {
  background: rgba(125, 211, 252, 0.14);
  color: #7DD3FC;
  border: 1px solid rgba(125, 211, 252, 0.35);
}
.booking-list__status--cancelled {
  background: rgba(255,255,255,0.05);
  color: rgba(244, 242, 236, 0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.booking-list__total {
  font-family: var(--font-display);
  font-weight: 700;
  color: #F4F2EC;
  font-size: 1.0625rem;
}
.booking-list__code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(244, 242, 236, 0.5);
  letter-spacing: 0.14em;
}

@media (max-width: 600px) {
  .booking-list__row { grid-template-columns: 80px 1fr; }
  .booking-list__photo { width: 80px; height: 64px; }
  .booking-list__meta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
  .stay-detail__title { flex-direction: column; align-items: flex-start; }
  .stay-detail__title-aside { width: 100%; justify-content: space-between; }
}

/* ============================================================
   Interactive map page (/app/map)
   Leaflet-based; tokens reused, never overrides existing rules.
   ============================================================ */

.map-page { padding-top: var(--space-6); padding-bottom: var(--space-12); }

.map-greet { margin-bottom: var(--space-6); }
.map-greet__eyebrow {
  font-family: var(--font-mono, var(--font-body));
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 var(--space-2);
}
.map-greet__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 600;
  margin: 0 0 var(--space-2); color: var(--ink); letter-spacing: -0.01em;
}
.map-greet__lede { color: var(--ink-muted); margin: 0; max-width: 60ch; }

/* ----- Toolbar ----- */
.map-toolbar {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: var(--space-4);
  position: sticky; top: var(--space-2); z-index: 5;
  backdrop-filter: saturate(140%) blur(6px);
}
.map-toolbar__pills { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.map-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.42rem 0.85rem;
  font: 500 0.82rem/1 var(--font-body);
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px;
  cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}
.map-pill:hover { border-color: var(--ink); }
.map-pill.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.map-pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; box-shadow: 0 0 0 1.5px rgba(0,0,0,0.08);
}

.map-route-toggle {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  font: 600 0.82rem/1 var(--font-body);
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px;
  cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.map-route-toggle:hover { border-color: var(--primary); color: var(--primary); }
.map-route-toggle.is-active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ----- Two-column shell ----- */
.map-shell {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .map-shell { grid-template-columns: 65fr 35fr; }
}

.map-shell__map { position: relative; }
#sst-map {
  width: 100%; min-height: 70vh; height: 70vh;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: #e7eef2;
}
.map-attrib-help {
  margin: var(--space-2) 0 0;
  font-size: 0.72rem; color: var(--ink-muted);
}

/* ----- Right list panel ----- */
.map-shell__list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  max-height: 70vh; min-height: 320px;
  overflow: hidden;
}
.map-list-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: var(--space-4) var(--space-4) var(--space-2);
  border-bottom: 1px solid var(--line);
}
.map-list-head__title {
  margin: 0; font: 600 0.95rem/1.2 var(--font-display); color: var(--ink);
}
.map-list-head__count {
  font: 500 0.78rem/1 var(--font-mono, var(--font-body));
  color: var(--ink-muted); letter-spacing: 0.04em;
}

.map-list { overflow-y: auto; padding: var(--space-2); flex: 1; }
.map-list-empty {
  padding: var(--space-6) var(--space-4);
  color: var(--ink-muted); text-align: center; font-size: 0.88rem;
}
.map-list-card {
  width: 100%; display: grid; grid-template-columns: 64px 1fr;
  gap: var(--space-3); padding: var(--space-2); margin: 0 0 var(--space-2);
  text-align: left; background: var(--surface);
  border: 1px solid transparent; border-radius: var(--r-md);
  cursor: pointer; transition: background .12s ease, border-color .12s ease;
}
.map-list-card:hover { background: var(--surface-2); border-color: var(--line); }
.map-list-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.map-list-card__photo {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: var(--r-md); display: block;
}
.map-list-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.map-list-card__name {
  font: 600 0.92rem/1.25 var(--font-body); color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.map-list-card__meta {
  font: 400 0.78rem/1.3 var(--font-body); color: var(--ink-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.map-list-card__row {
  display: flex; gap: var(--space-2); margin-top: 2px; align-items: center;
}
.map-list-card__price {
  font: 600 0.82rem/1 var(--font-body); color: var(--ink);
}
.map-list-card__rating {
  font: 500 0.78rem/1 var(--font-body); color: #B85C00;
}
.map-list-card__badge {
  font: 600 0.66rem/1 var(--font-mono, var(--font-body));
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 6px; border-radius: 4px;
  background: rgba(194, 138, 31, 0.14); color: #8A5E10;
}

/* ----- Route panel ----- */
.map-route-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-md);
}
.map-route-panel__hint {
  margin: 0 0 var(--space-3); color: var(--ink-muted); font-size: 0.88rem;
}
.map-route-panel__row {
  display: flex; justify-content: space-between; gap: var(--space-3);
  padding: 6px 0; border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
}
.map-route-panel__row:last-of-type { border-bottom: none; }
.map-route-panel__row--strong { font-weight: 600; color: var(--ink); }
.map-route-panel__label { color: var(--ink-muted); }
.map-route-panel__val { color: var(--ink); text-align: right; max-width: 70%; }
.map-route-panel__sub {
  margin: var(--space-3) 0 var(--space-2);
  font: 600 0.72rem/1 var(--font-mono, var(--font-body));
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted);
}
.map-route-panel__modes {
  list-style: none; padding: 0; margin: 0 0 var(--space-3);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.map-route-mode {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: var(--space-3); align-items: center;
  padding: var(--space-2) var(--space-3);
  background: var(--surface-2); border-radius: var(--r-md);
  font-size: 0.88rem; color: var(--ink);
}
.map-route-mode__icon { font-size: 1.1rem; }
.map-route-mode.is-disabled { opacity: 0.5; }
.map-route-mode.is-disabled .map-route-mode__val { font-style: italic; }
.map-route-panel__reset {
  margin-top: var(--space-2);
  padding: 0.5rem 0.95rem;
  font: 600 0.8rem/1 var(--font-body);
  color: var(--ink); background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  cursor: pointer; transition: background .12s ease, border-color .12s ease;
}
.map-route-panel__reset:hover { background: var(--surface-2); border-color: var(--ink); }

/* ----- Leaflet pin (divIcon) ----- */
.map-pin-wrap { background: transparent; border: none; }
.map-pin {
  --pin: #C92A37;
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--pin); border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(15, 27, 45, 0.28), 0 0 0 1px rgba(15, 27, 45, 0.06);
  position: relative;
  transform-origin: center bottom;
  transition: transform .12s ease;
}
.map-pin::after {
  content: ""; position: absolute;
  bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-top: 7px solid #fff;
  filter: drop-shadow(0 1px 0 rgba(15, 27, 45, 0.18));
}
.map-pin-wrap:hover .map-pin { transform: scale(1.12); }

/* ----- Leaflet popup overrides (scoped to our wrapper) ----- */
.map-popup-wrap .leaflet-popup-content-wrapper {
  border-radius: var(--r-md);
  padding: 0; box-shadow: var(--shadow-md);
}
.map-popup-wrap .leaflet-popup-content {
  margin: 0; min-width: 0; width: auto !important; line-height: 1.35;
}
.map-popup-wrap .leaflet-popup-tip { background: #fff; }

.map-popup { width: 240px; padding: 12px; font-family: var(--font-body); color: var(--ink); }
.map-popup__head { display: grid; grid-template-columns: 60px 1fr; gap: 10px; }
.map-popup__photo {
  width: 60px; height: 60px; object-fit: cover;
  border-radius: var(--r-md); display: block;
}
.map-popup__text { min-width: 0; }
.map-popup__name {
  font: 600 0.95rem/1.25 var(--font-display); color: var(--ink);
  margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.map-popup__sub {
  font: 400 0.76rem/1.3 var(--font-body); color: var(--ink-muted);
  margin-bottom: 4px;
}
.map-popup__meta {
  font-size: 0.78rem; color: var(--ink); display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.map-popup__rating { color: #B85C00; font-weight: 600; }
.map-popup__badge {
  font: 600 0.62rem/1 var(--font-mono, var(--font-body));
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 6px; border-radius: 4px;
  background: rgba(194, 138, 31, 0.14); color: #8A5E10;
}
.map-popup__actions {
  display: flex; gap: 8px; margin-top: 12px;
}
.map-popup__btn {
  flex: 1; text-align: center;
  padding: 0.55rem 0.7rem;
  font: 600 0.82rem/1 var(--font-body);
  border-radius: var(--r-md); text-decoration: none;
  border: 1px solid transparent; transition: opacity .12s ease, transform .1s ease;
  white-space: nowrap;
}
.map-popup__btn--primary { background: var(--primary); color: #fff; }
.map-popup__btn--primary:hover { opacity: 0.92; }
.map-popup__btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.map-popup__btn--ghost:hover { border-color: var(--ink); }

@media (max-width: 980px) {
  #sst-map { min-height: 56vh; height: 56vh; }
  .map-shell__list { max-height: none; min-height: 0; }
}

/* ============================================================
   DASHBOARD v2 — product home page
   Layered SaaS-dashboard sections on top of the bold Serbia palette.
   APPEND-ONLY. No existing rule modified.
   ============================================================ */

/* ------- HERO ------- */
.dash-hero {
  position: relative;
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: none;
}
.dash-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin: 0 0 var(--space-3);
}
.dash-hero__greet {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #F4F2EC;
  margin: 0 0 var(--space-4);
  max-width: 880px;
}
.dash-hero__lede {
  font-size: var(--fs-md);
  line-height: 1.55;
  color: rgba(244, 242, 236, 0.66);
  max-width: 620px;
  margin: 0;
}
.dash-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  margin: var(--space-8) 0 0;
  padding: 0;
  list-style: none;
}
.dash-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-4) var(--space-5);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  list-style: none;
}
.dash-stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: #F4F2EC;
  letter-spacing: -0.02em;
}
.dash-stat__num-sub {
  font-size: 1rem;
  color: rgba(244, 242, 236, 0.45);
  font-weight: 400;
  margin-left: 2px;
}
.dash-stat__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(244, 242, 236, 0.55);
  margin-top: 6px;
}
@media (max-width: 720px) {
  .dash-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ------- SECTION SHELL ------- */
.dash-section {
  margin-top: var(--space-12);
}
.dash-section--map {
  margin-top: var(--space-12);
}
.dash-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.dash-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #F4F2EC;
  margin: 0;
}
.dash-section__lede {
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.6);
  margin: 6px 0 0;
  max-width: 560px;
}
.dash-section__see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(244, 242, 236, 0.7);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.dash-section__see-all:hover {
  color: var(--secondary);
  background: rgba(229, 180, 80, 0.08);
  border-color: rgba(229, 180, 80, 0.35);
  text-decoration: none;
  transform: translateX(2px);
}

/* ------- MAP CARD ------- */
.dash-map-card {
  position: relative;
  display: block;
  width: 100%;
  height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none !important;
  color: #F4F2EC;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.dash-map-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 180, 80, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.dash-map-card__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.dash-map-card__pins circle {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.dash-map-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  background: linear-gradient(90deg,
    rgba(10, 15, 26, 0.92) 0%,
    rgba(10, 15, 26, 0.78) 35%,
    rgba(10, 15, 26, 0.15) 70%,
    rgba(10, 15, 26, 0) 100%);
  pointer-events: none;
}
.dash-map-card__overlay-inner {
  padding: var(--space-8) var(--space-8);
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
}
.dash-map-card__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7DD3FC;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.3);
}
.dash-map-card__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7DD3FC;
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.7);
}
.dash-map-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #F4F2EC;
  margin: 0;
}
.dash-map-card__lede {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: rgba(244, 242, 236, 0.7);
  margin: 0;
  max-width: 380px;
}
.dash-map-card__cta {
  margin-top: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  pointer-events: auto;
  transition: background 0.2s ease, transform 0.2s ease;
}
.dash-map-card:hover .dash-map-card__cta {
  background: var(--primary-dark);
  transform: translateX(2px);
}
.dash-map-card__chips {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 60%;
}
.dash-map-card__chip {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  background: rgba(10, 15, 26, 0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(244, 242, 236, 0.85);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
@media (max-width: 720px) {
  .dash-map-card { height: 280px; }
  .dash-map-card__overlay {
    background: linear-gradient(180deg,
      rgba(10, 15, 26, 0.88) 0%,
      rgba(10, 15, 26, 0.6) 60%,
      rgba(10, 15, 26, 0.92) 100%);
  }
  .dash-map-card__overlay-inner { padding: var(--space-5); max-width: 100%; }
  .dash-map-card__chips { left: var(--space-5); right: var(--space-5); max-width: none; justify-content: flex-start; }
}

/* ------- UPCOMING BOOKINGS ROW ------- */
.dash-bookings-row {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 4px 4px var(--space-3);
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
}
.dash-bookings-row::-webkit-scrollbar { height: 8px; }
.dash-bookings-row::-webkit-scrollbar-track { background: transparent; }
.dash-bookings-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.14); border-radius: 4px; }
.dash-bookings-row__item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  list-style: none;
}
.dash-booking-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none !important;
  color: #F4F2EC;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.dash-booking-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 180, 80, 0.35);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}
.dash-booking-card__photo {
  display: block;
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-color: #1a2236;
}
.dash-booking-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-4) var(--space-5);
  flex: 1;
}
.dash-booking-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.2;
  color: #F4F2EC;
  letter-spacing: -0.01em;
}
.dash-booking-card__city {
  font-size: var(--fs-sm);
  color: rgba(244, 242, 236, 0.6);
}
.dash-booking-card__dates {
  font-size: 0.8125rem;
  color: rgba(244, 242, 236, 0.55);
  margin-top: 2px;
}
.dash-booking-card__foot {
  margin-top: auto;
  padding-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dash-booking-card__code {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: rgba(244, 242, 236, 0.5);
}
.dash-booking-card__view {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--secondary);
}

/* ------- COMPACT FEATURE GRID (4 cols) ------- */
.dash-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}
.dash-feat-grid__item { list-style: none; }
@media (max-width: 1100px) {
  .dash-feat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .dash-feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .dash-feat-grid { grid-template-columns: 1fr; }
}

/* Compact feat-card variant: tighter padding, smaller icon, shorter min-height. */
.feat-card--compact {
  padding: var(--space-5);
  min-height: 200px;
  gap: var(--space-3);
}
.feat-card--compact .feat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.feat-card--compact .feat-card__icon svg { width: 22px; height: 22px; }
.feat-card--compact .feat-card__title {
  font-size: 1.0625rem;
}
.feat-card--compact .feat-card__desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feat-card--compact .feat-card__foot {
  padding-top: var(--space-2);
}
.feat-card--compact .feat-card__cta { font-size: 0.8125rem; }
.feat-card--compact .feat-card__status { font-size: 0.625rem; padding: 3px 8px; }

/* Available cards visually pop above coming-soon. */
.feat-card--compact.feat-card--avail {
  border-color: rgba(229, 180, 80, 0.4);
  background: linear-gradient(180deg, rgba(229, 180, 80, 0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.feat-card--compact.feat-card--avail::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--secondary) 70%, transparent);
  opacity: 0.85;
}

/* ============ Phase 1.B — photo banners on Available feature cards ============ */
/* Base feat-card padding is var(--space-6) (= 1.5rem). The compact variant declares
   var(--space-5) which is undefined in the design tokens, so its padding collapses
   to 0. That means the dashboard cards (compact) need NO horizontal bleed math —
   the photo already spans edge to edge. We still scope a base rule for any
   future non-compact use. */
.feat-card--has-photo {
  padding-top: 0;
  overflow: hidden;
}
.feat-card--has-photo .feat-card__photo {
  display: block;
  width: calc(100% + 2 * var(--space-6));
  height: 100px;
  margin: 0 calc(-1 * var(--space-6)) var(--space-4);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.feat-card--has-photo .feat-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,27,45,0.45) 0%, rgba(15,27,45,0) 60%);
  pointer-events: none;
}
/* Compact (dashboard) variant: padding collapses to 0, so the photo needs NO
   negative margin and full 100% width. */
.feat-card--compact.feat-card--has-photo .feat-card__photo {
  width: 100%;
  margin: 0 0 var(--space-3);
}
.dash-feat-grid .feat-card--has-photo .feat-card__icon {
  margin-top: var(--space-2);
  margin-left: var(--space-4);
}
.dash-feat-grid .feat-card--has-photo .feat-card__body,
.dash-feat-grid .feat-card--has-photo .feat-card__foot {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}
.dash-feat-grid .feat-card--has-photo .feat-card__foot {
  padding-bottom: var(--space-4);
}
@media (max-width: 720px) {
  .feat-card--has-photo .feat-card__photo { height: 80px; }
}

/* ============ Phase 1.C — EXPO badge chip on feature cards ============ */
.feat-card__badge {
  display: inline-block;
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  padding: 4px 10px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(201, 42, 55, 0.4);
}

/* ====================================================================== */
/* PHASE 2 — Events, Tickets, EXPO landing promo (APPEND ONLY)            */
/* ====================================================================== */

/* ============ Events index page ============ */
.events-page { padding-bottom: 4rem; }
.events-hero {
  padding: 2rem 0 1.5rem;
  text-align: left;
}
.events-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.3rem 0.7rem;
  background: rgba(201,42,55,0.08);
  color: var(--primary, #C92A37);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.events-hero__title {
  margin: 0 0 0.5rem;
  font-family: 'Cormorant Garamond', 'Geist', serif;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink, #0A0F1A);
}
.events-hero__lede {
  margin: 0;
  color: var(--ink-muted, #5C6878);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 600px;
}

.events-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}
.events-filter__pill {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1rem;
  background: var(--surface-2, #F7F5F0);
  color: var(--ink, #0A0F1A);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.events-filter__pill:hover {
  background: rgba(31,53,84,0.08);
  border-color: rgba(31,53,84,0.2);
}
.events-filter__pill.is-active {
  background: var(--ink, #0A0F1A);
  color: #fff;
}

/* Spotlight (top featured event) */
.events-spotlight {
  margin: 0.5rem 0 2rem;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface, #fff);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 18px rgba(10,15,26,0.05);
  transition: transform 0.18s, box-shadow 0.18s;
}
.events-spotlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,15,26,0.09);
}
.events-spotlight__link {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  text-decoration: none !important;
  color: inherit;
}
.events-spotlight__photo {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.events-spotlight__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.35rem 0.75rem;
  background: #C92A37;
  color: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.events-spotlight__body {
  padding: 1.8rem 1.8rem 1.6rem;
  display: flex; flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}
.events-spotlight__name {
  margin: 0.3rem 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink, #0A0F1A);
}
.events-spotlight__venue {
  margin: 0;
  color: var(--ink-muted, #5C6878);
  font-size: 0.95rem;
}
.events-spotlight__foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  gap: 1rem;
}
.events-spotlight__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--primary, #C92A37);
  font-weight: 700;
  font-size: 0.92rem;
}

/* Event card grid */
.events-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.event-card {
  display: flex; flex-direction: column;
  background: var(--surface, #fff);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.18s, box-shadow 0.18s;
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10,15,26,0.08);
}
.event-card__photo {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.event-card__type-badge {
  position: absolute;
  top: 0.7rem; left: 0.7rem;
  padding: 0.3rem 0.7rem;
  background: rgba(10,15,26,0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.events-spotlight .event-card__type-badge {
  position: static;
  display: inline-block;
}
.event-card__date-pill {
  position: absolute;
  bottom: 0.7rem; left: 0.7rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.95);
  color: var(--ink, #0A0F1A);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.events-spotlight .event-card__date-pill {
  position: static;
  background: rgba(31,53,84,0.08);
  color: var(--accent, #1F3554);
  display: inline-flex;
}
.event-card__body {
  display: flex; flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.1rem 1.1rem;
}
.event-card__name {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink, #0A0F1A);
}
.event-card__meta {
  color: var(--ink-muted, #5C6878);
  font-size: 0.85rem;
}
.event-card__price {
  margin-top: 0.3rem;
  font-size: 0.95rem;
  color: var(--accent, #1F3554);
}
.event-card__price strong { font-weight: 700; }

/* Event detail page */
.event-detail__hero {
  height: 380px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
  background-color: var(--surface-2, #F7F5F0);
}
.event-buy-widget {
  position: sticky;
  top: 1rem;
  padding: 1.4rem 1.3rem;
  background: var(--surface, #fff);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(10,15,26,0.04);
}
.event-buy-widget__price {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.event-buy-widget__price strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--ink, #0A0F1A);
}
.event-buy-widget__cta {
  background: var(--primary, #C92A37);
  color: #fff;
}
.event-buy-widget__cta:hover { background: var(--primary-dark, #9F1F2B); }
.event-buy-widget__free {
  display: flex; flex-direction: column; gap: 0.55rem;
}
.event-buy-widget__external { font-size: 0.92rem; }

/* ============ Tickets ============ */
.ticket-confirm__code {
  font-family: 'Geist Mono', 'Inter', monospace;
  letter-spacing: 0.18em;
}

/* ============ EXPO 2027 — landing-page promo band ============ */
.expo-promo {
  position: relative;
  padding: 4rem 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(229,180,80,0.15), transparent 55%),
    linear-gradient(135deg, #0A0F1A 0%, #1F3554 100%);
  color: #fff;
  overflow: hidden;
}
.expo-promo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240,203,108,0.6), transparent);
}
.expo-promo__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.expo-promo__copy {
  max-width: 560px;
}
.expo-promo__chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: #C92A37;
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.expo-promo__chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}
.expo-promo__title {
  margin: 1.2rem 0 0.85rem;
  font-family: 'Cormorant Garamond', 'Geist', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.012em;
}
.expo-promo__lede {
  margin: 0 0 1.4rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.55;
}
.expo-promo__pills {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.expo-promo__pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  font-weight: 500;
}
.expo-promo__pill svg { color: #F0CB6C; }
.expo-promo__cta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.expo-promo__visual {
  display: flex; align-items: center; justify-content: center;
}
.expo-promo__svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.35));
}

@media (max-width: 980px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .events-spotlight__link { grid-template-columns: 1fr; }
  .events-spotlight__photo { min-height: 220px; }
  .expo-promo__inner { grid-template-columns: 1fr; gap: 2rem; }
  .expo-promo__visual { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
  .events-spotlight__body { padding: 1.3rem 1.3rem 1.4rem; }
  .events-hero { padding: 1.5rem 0 1rem; }
  .expo-promo { padding: 3rem 0; }
  .expo-promo__title { font-size: 2.1rem; }
}

/* ============================================================
   THEME SYSTEM — light default + dark via [data-theme="dark"]
   Added 2026-05 to fix the "everything is too black + unreadable"
   feedback. All app pages now respect theme tokens.
   ============================================================ */
.app-body {
  /* Light mode (default) */
  --t-bg:          #F4F2EC;
  --t-text:        #14181F;
  --t-text-soft:   #5C6878;
  --t-text-faint:  #8A95A4;
  --t-card-bg:     #FFFFFF;
  --t-card-border: rgba(20, 24, 31, 0.08);
  --t-card-hover:  rgba(20, 24, 31, 0.04);
  --t-divider:     rgba(20, 24, 31, 0.08);
  --t-accent:      #C92A37;
  --t-accent-soft: #F0CB6C;
  --t-link:        #1F3554;

  background: var(--t-bg) !important;
  color:      var(--t-text) !important;
}
.app-body[data-theme="dark"] {
  --t-bg:          #14181F;
  --t-text:        #F4F2EC;
  --t-text-soft:   rgba(244, 242, 236, 0.66);
  --t-text-faint:  rgba(244, 242, 236, 0.4);
  --t-card-bg:     #1B2230;
  --t-card-border: rgba(255, 255, 255, 0.08);
  --t-card-hover:  rgba(255, 255, 255, 0.04);
  --t-divider:     rgba(255, 255, 255, 0.08);
  --t-accent:      #FF3B4A;
  --t-accent-soft: #F0CB6C;
  --t-link:        #F0CB6C;
}

/* App header always dark for visual anchor + brand consistency */
.app-body .app-header {
  background: rgba(20, 24, 31, 0.92) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.app-body .brand--app,
.app-body .brand--app .brand__name,
.app-body .brand--app .brand__accent { color: #F4F2EC !important; }
.app-body .brand--app .brand__accent { color: #F0CB6C !important; }

/* ===== Dashboard tokens — flip with theme ===== */
.app-body .dash-section__title,
.app-body .dash-greet__h1,
.app-body .dash-greet__title    { color: var(--t-text) !important; }
.app-body .dash-section__lede,
.app-body .dash-greet__lede     { color: var(--t-text-soft) !important; }
.app-body .dash-greet__eyebrow  { color: var(--t-accent) !important; }
.app-body .dash-stat__num       { color: var(--t-text) !important; }
.app-body .dash-stat__label     { color: var(--t-text-soft) !important; }

/* ===== Hero titles in coming-soon pages ===== */
.app-body .events-hero__title,
.app-body .stays-hero__title,
.app-body .pass-hero__h1,
.app-body .plan-hero__h1,
.app-body .ar-hero__h1,
.app-body .audio-hero__h1,
.app-body .maps-hero__h1,
.app-body .recs-hero__h1,
.app-body .eco-hero__h1,
.app-body .expo-section__title,
.app-body .stays-detail__h1,
.app-body .booking-confirm__title,
.app-body .ar-sec-title { color: var(--t-text) !important; }

.app-body .events-hero__lede,
.app-body .stays-hero__lede,
.app-body .pass-hero__lede,
.app-body .plan-hero__lede,
.app-body .ar-hero__lede,
.app-body .audio-hero__lede,
.app-body .maps-hero__lede,
.app-body .recs-hero__lede,
.app-body .eco-hero__lede,
.app-body .expo-section__lede,
.app-body .ar-sec-lede,
.app-body .pass-region__count,
.app-body .pass-sec__count,
.app-body .plan-result__stat,
.app-body .plan-day__sub,
.app-body .booking-confirm__sub  { color: var(--t-text-soft) !important; }

.app-body .events-hero__eyebrow,
.app-body .stays-hero__eyebrow,
.app-body .pass-hero__eyebrow,
.app-body .plan-hero__eyebrow,
.app-body .ar-hero__eyebrow,
.app-body .audio-hero__eyebrow,
.app-body .maps-hero__eyebrow,
.app-body .recs-hero__eyebrow,
.app-body .eco-hero__eyebrow,
.app-body .expo-section__seeall,
.app-body .plan-result__eyebrow { color: var(--t-accent) !important; }

/* Region/section subheads on the passport page */
.app-body .pass-region__name,
.app-body .pass-sec__title { color: var(--t-text) !important; }

/* Filter pills active state — visible in either mode */
.app-body .events-filter__pill.is-active,
.app-body .recs-tabs__pill.is-active,
.app-body .stays-filter__pill.is-active {
  background: var(--t-accent) !important;
  color: #FFFFFF !important;
  border-color: var(--t-accent) !important;
}

/* Dividers / subtle borders flip with theme */
.app-body .events-hero,
.app-body .stays-hero,
.app-body .pass-hero,
.app-body .plan-hero,
.app-body .audio-hero,
.app-body .maps-hero,
.app-body .recs-hero,
.app-body .eco-hero {
  border-bottom-color: var(--t-divider) !important;
}

/* App-shell nav: dark links since header is always dark */
.app-body .app-nav__link        { color: rgba(244,242,236,0.72) !important; }
.app-body .app-nav__link:hover  { background: rgba(255,255,255,0.06) !important; color: #F4F2EC !important; }
.app-body .app-nav__link.is-active {
  background: var(--t-accent) !important;
  color: #FFFFFF !important;
}

/* Theme toggle button in header */
.app-theme-toggle {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #F4F2EC;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  margin-right: 6px;
  padding: 0;
}
.app-theme-toggle:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
}
.app-theme-toggle svg { width: 18px; height: 18px; }
.app-body[data-theme="dark"] .app-theme-toggle__sun  { display: none; }
.app-body:not([data-theme="dark"]) .app-theme-toggle__moon { display: none; }

/* ============================================================
   ALWAYS-DARK SECTION OVERRIDES
   These sections have their OWN permanent dark gradient background.
   They must keep light text regardless of light/dark theme — so they
   come AFTER the theme overrides above and win the cascade.
   ============================================================ */

/* ---- EXPO hero band ---- */
.app-body .expo-hero { color: #F4F2EC !important; }
.app-body .expo-hero__h1 { color: #FFFFFF !important; }
.app-body .expo-hero__lede { color: rgba(255,255,255,0.85) !important; }
.app-body .expo-hero__chip { color: #FFFFFF !important; }
.app-body .expo-stat-pill { color: rgba(255,255,255,0.92) !important; }
.app-body .expo-stat-pill__num { color: #F0CB6C !important; }

/* ---- EXPO smart-match BUSINESS card (dark variant) ---- */
.app-body .expo-match-card--business { color: #F4F2EC !important; }
.app-body .expo-match-card--business .expo-match-card__title { color: #FFFFFF !important; }
.app-body .expo-match-card--business .expo-match-card__lede,
.app-body .expo-match-card--business .expo-match-card__list,
.app-body .expo-match-card--business .expo-match-card__list li { color: rgba(244,242,236,0.85) !important; }

/* ---- EXPO toolkit final band ---- */
.app-body .expo-toolkit { color: #F4F2EC !important; }
.app-body .expo-toolkit h2 { color: #FFFFFF !important; }
.app-body .expo-toolkit p { color: rgba(255,255,255,0.82) !important; }
.app-body .expo-toolkit__btn,
.app-body .expo-toolkit__btn strong { color: #FFFFFF !important; }

/* ---- Passport hero (own dark gradient) ---- */
.app-body .pass-hero { color: #F4F2EC !important; }
.app-body .pass-hero__h1 { color: #F4F2EC !important; }
.app-body .pass-hero__lede { color: rgba(247,245,240,0.78) !important; }
.app-body .pass-hero__tier-line { color: rgba(247,245,240,0.85) !important; }
.app-body .pass-hero__eyebrow { color: #E5B450 !important; }
.app-body .pass-hero__tier-pill { color: #F4F2EC !important; }

/* ---- AR hero (own dark gradient) ---- */
.app-body .ar-hero { color: #F4F2EC !important; }
.app-body .ar-hero__h1 { color: #F4F2EC !important; }
.app-body .ar-hero__lede { color: rgba(247,245,240,0.78) !important; }
.app-body .ar-hero__eyebrow { color: #FFFFFF !important; }

/* ---- Audio featured player card (own dark gradient) ---- */
.app-body .audio-featured { color: #F4F2EC !important; }
.app-body .audio-featured .audio-featured__title,
.app-body .audio-featured .audio-featured__narrator,
.app-body .audio-featured .audio-featured__meta,
.app-body .audio-featured h2,
.app-body .audio-featured h3,
.app-body .audio-featured p,
.app-body .audio-featured span:not(.audio-featured__chip) { color: inherit !important; }

/* ---- Maps "All of Serbia" big card (own dark gradient) ---- */
.app-body .maps-whole { color: #F4F2EC !important; }
.app-body .maps-whole h2,
.app-body .maps-whole h3,
.app-body .maps-whole p,
.app-body .maps-whole strong,
.app-body .maps-whole span:not(.btn):not(.maps-whole__cta) { color: inherit !important; }

/* ============================================================
 * eSIM module — dark gradient hero must stay white in both
 * light and dark themes; everything else uses --t-* tokens.
 * ============================================================ */
.app-body .esim-hero { color: #F7F5F0 !important; }
.app-body .esim-hero__h1 { color: #F7F5F0 !important; }
.app-body .esim-hero__lede { color: rgba(247,245,240,0.78) !important; }
.app-body .esim-hero__eyebrow { color: #E5B450 !important; }
.app-body .esim-hero__pill { color: rgba(247,245,240,0.92) !important; }
.app-body .esim-hero__pill--accent { color: #F7E1A8 !important; }

.app-body[data-theme="dark"] .esim-card { background: #16202F; border-color: #2A3548; }
.app-body[data-theme="dark"] .esim-card:hover { border-color: #3D4B66; }
.app-body[data-theme="dark"] .esim-card__gb,
.app-body[data-theme="dark"] .esim-card__price,
.app-body[data-theme="dark"] .esim-confirm__h1,
.app-body[data-theme="dark"] .esim-confirm__plan-name,
.app-body[data-theme="dark"] .esim-confirm__row dd,
.app-body[data-theme="dark"] .esim-confirm__manual-val,
.app-body[data-theme="dark"] .esim-confirm__manual-title,
.app-body[data-theme="dark"] .esim-confirm__qr-title,
.app-body[data-theme="dark"] .esim-confirm__code,
.app-body[data-theme="dark"] .esim-list-page__h1,
.app-body[data-theme="dark"] .esim-list-row__plan,
.app-body[data-theme="dark"] .esim-list-row__price,
.app-body[data-theme="dark"] .esim-step__title,
.app-body[data-theme="dark"] .esim-mine__title,
.app-body[data-theme="dark"] .esim-mine__plan,
.app-body[data-theme="dark"] .esim-compat__title,
.app-body[data-theme="dark"] .esim-list-empty__title,
.app-body[data-theme="dark"] .esim-sec__title { color: #F4F2EC !important; }

.app-body[data-theme="dark"] .esim-card__gb-unit,
.app-body[data-theme="dark"] .esim-card__price-eur,
.app-body[data-theme="dark"] .esim-confirm__lede,
.app-body[data-theme="dark"] .esim-confirm__code-lbl,
.app-body[data-theme="dark"] .esim-confirm__row dt,
.app-body[data-theme="dark"] .esim-confirm__manual-key,
.app-body[data-theme="dark"] .esim-confirm__qr-lede,
.app-body[data-theme="dark"] .esim-list-page__lede,
.app-body[data-theme="dark"] .esim-list-page__count,
.app-body[data-theme="dark"] .esim-list-row__meta,
.app-body[data-theme="dark"] .esim-list-row__code,
.app-body[data-theme="dark"] .esim-list-empty__desc,
.app-body[data-theme="dark"] .esim-step__desc,
.app-body[data-theme="dark"] .esim-step__num,
.app-body[data-theme="dark"] .esim-mine__code,
.app-body[data-theme="dark"] .esim-compat__lede,
.app-body[data-theme="dark"] .esim-grid__note,
.app-body[data-theme="dark"] .esim-sec__lede,
.app-body[data-theme="dark"] .esim-sec__meta { color: #9CA3AF !important; }

.app-body[data-theme="dark"] .esim-step,
.app-body[data-theme="dark"] .esim-mine,
.app-body[data-theme="dark"] .esim-compat,
.app-body[data-theme="dark"] .esim-confirm__card,
.app-body[data-theme="dark"] .esim-confirm__manual,
.app-body[data-theme="dark"] .esim-list-empty {
  background: #16202F !important;
  border-color: #2A3548 !important;
}
.app-body[data-theme="dark"] .esim-confirm__qr-side,
.app-body[data-theme="dark"] .esim-card__validity,
.app-body[data-theme="dark"] .esim-confirm__manual-row,
.app-body[data-theme="dark"] .esim-mine__item,
.app-body[data-theme="dark"] .esim-grid__note { background: #0F1726 !important; }
.app-body[data-theme="dark"] .esim-confirm__row,
.app-body[data-theme="dark"] .esim-card__price-wrap { border-color: #2A3548 !important; }
.app-body[data-theme="dark"] .esim-list-row {
  background: #16202F !important;
  border-color: #2A3548 !important;
  color: #F4F2EC !important;
}
.app-body[data-theme="dark"] .esim-list-row:hover { border-color: #3D4B66 !important; }
.app-body[data-theme="dark"] .esim-confirm__btn--ghost {
  color: #F4F2EC !important;
  border-color: #2A3548 !important;
}
.app-body[data-theme="dark"] .esim-confirm__btn--ghost:hover { background: #0F1726 !important; }
.app-body[data-theme="dark"] .esim-card__btn,
.app-body[data-theme="dark"] .esim-confirm__btn--primary,
.app-body[data-theme="dark"] .esim-list-empty__cta {
  background: #E5B450 !important;
  border-color: #E5B450 !important;
  color: #0A0F1A !important;
}
.app-body[data-theme="dark"] .esim-card--featured .esim-card__btn { background: #C92A37 !important; border-color: #C92A37 !important; color: #fff !important; }
.app-body[data-theme="dark"] .esim-card__btn:hover,
.app-body[data-theme="dark"] .esim-confirm__btn--primary:hover,
.app-body[data-theme="dark"] .esim-list-empty__cta:hover { background: #C92A37 !important; border-color: #C92A37 !important; color: #fff !important; }

/* ---- Dashboard featured Map preview card (dark gradient) ---- */
.app-body .dash-map-card,
.app-body .dash-map-card__title,
.app-body .dash-map-card__lede,
.app-body .dash-map-card__chip,
.app-body .dash-map-card__chips { color: #F4F2EC !important; }
.app-body .dash-map-card__lede { color: rgba(244,242,236,0.78) !important; }

/* ---- Booking + ticket confirmation pages (heroes likely on body bg, but
       confirmation uses dark accent panels in some places) — be safe ---- */
.app-body .booking-confirm__hero,
.app-body .ticket-confirm__hero { color: #F4F2EC !important; }

/* ---- Place detail hero (dark gradient overlay on photo) ---- */
.app-body .place-hero,
.app-body .place-hero__title,
.app-body .place-hero__intro,
.app-body .place-hero__crumb a,
.app-body .place-hero__lang-note { color: #F4F2EC !important; }

/* ---- Stays detail hero (dark gradient overlay on photo) ---- */
.app-body .stay-hero,
.app-body .stay-hero__title,
.app-body .stay-hero__crumb a { color: #F4F2EC !important; }

/* ---- Place card overlays (dark gradient at bottom of photo) ---- */
.app-body .place-card__overlay,
.app-body .place-card__name,
.app-body .place-card__meta { color: #F4F2EC !important; }

/* ---- Map list cards stay readable in either theme ---- */
.app-body .map-popup,
.app-body .map-popup__name,
.app-body .map-popup__meta { color: var(--t-text) !important; }

/* ============================================================
   THEME-AWARE CARD OVERRIDES
   The original card components (stay-card, event-card, review-card,
   feat-card, dash-*, booking-*) were designed for a dark .app-body
   and use cream text on transparent-white backgrounds — invisible in
   light mode. Override every card to use theme tokens so they work
   in BOTH light and dark mode.
   ============================================================ */

/* ---- Stay cards (used on /app/stays + EXPO "stays" section) ---- */
.app-body .stay-card {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.app-body[data-theme="dark"] .stay-card { box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.app-body .stay-card:hover { border-color: rgba(201, 42, 55, 0.45) !important; }
.app-body .stay-card__title           { color: var(--t-text) !important; }
.app-body .stay-card__meta            { color: var(--t-text-soft) !important; }
.app-body .stay-card__rating          { color: var(--t-text-soft) !important; }
.app-body .stay-card__rating-num      { color: var(--t-text) !important; }
.app-body .stay-card__rating-count    { color: var(--t-text-faint) !important; }
.app-body .stay-card__price strong    { color: var(--t-text) !important; }
.app-body .stay-card__per             { color: var(--t-text-faint) !important; }

/* ---- Event cards (used on /app/events) ---- */
.app-body .event-card {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.app-body[data-theme="dark"] .event-card { box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.app-body .event-card__name      { color: var(--t-text) !important; }
.app-body .event-card__meta      { color: var(--t-text-soft) !important; }
.app-body .event-card__price     { color: var(--t-text) !important; }
.app-body .event-card__price strong { color: var(--t-text) !important; }
.app-body .events-spotlight {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
}
.app-body .events-spotlight__name  { color: var(--t-text) !important; }
.app-body .events-spotlight__venue { color: var(--t-text-soft) !important; }
.app-body .events-spotlight__cta   { color: var(--t-accent) !important; }

/* ---- Review cards (on stays/events detail pages) ---- */
.app-body .review-card {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
}
.app-body .review-card__author { color: var(--t-text) !important; }
.app-body .review-card__title  { color: var(--t-text) !important; }
.app-body .review-card__body   { color: var(--t-text-soft) !important; }
.app-body .review-card__date,
.app-body .review-card__foot   { color: var(--t-text-faint) !important; }

/* ---- Dashboard feature cards ---- */
.app-body .feat-card {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.app-body[data-theme="dark"] .feat-card { box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.app-body .feat-card__title  { color: var(--t-text) !important; }
.app-body .feat-card__desc   { color: var(--t-text-soft) !important; }
.app-body .feat-card__icon { color: var(--t-text) !important; }
.app-body .feat-card__status--soon { color: var(--t-text-soft) !important; }

/* ---- Dashboard stat boxes + booking row + greeting ---- */
.app-body .dash-stat {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
}
.app-body .dash-booking-card {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
}
.app-body .dash-booking-card__name  { color: var(--t-text) !important; }
.app-body .dash-booking-card__city,
.app-body .dash-booking-card__dates,
.app-body .dash-booking-card__code  { color: var(--t-text-soft) !important; }
.app-body .dash-booking-card__view  { color: var(--t-accent) !important; }

/* ---- Booking confirmation page ---- */
.app-body .booking-confirm {
  background: var(--t-card-bg) !important;
  color: var(--t-text) !important;
}
.app-body .booking-confirm__details {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
}
.app-body .booking-confirm__title { color: var(--t-text) !important; }
.app-body .booking-confirm__stay  { color: var(--t-text) !important; }
.app-body .booking-confirm__city  { color: var(--t-text-soft) !important; }
.app-body .booking-confirm__row dt { color: var(--t-text-soft) !important; }
.app-body .booking-confirm__row dd { color: var(--t-text) !important; }

/* ---- Booking list rows ---- */
.app-body .booking-list__row,
.app-body .booking-list__item {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
}

/* ---- Places grid card overlays should keep dark gradient + light text
       (they're a photo with a dark gradient at the bottom) ---- */
/* Already handled in earlier override block. */

/* ---- Filter pills (events / stays / recommendations) ---- */
.app-body .filter-chip,
.app-body .events-filter__pill,
.app-body .stays-filter__pill {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
}
.app-body .filter-chip:hover,
.app-body .events-filter__pill:hover,
.app-body .stays-filter__pill:hover {
  background: var(--t-card-hover) !important;
}

/* ---- Buttons that were styled for dark bg (btn--ghost, etc.) ---- */
.app-body .btn--ghost {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
}

/* ---- Filter rail containers (visible bg in both themes) ---- */
.app-body .stays-filter,
.app-body .events-filter,
.app-body .recs-tabs {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.app-body .stays-filter__pill,
.app-body .events-filter__pill,
.app-body .recs-tabs__pill {
  color: var(--t-text-soft) !important;
}
.app-body .stays-filter__pill:hover,
.app-body .events-filter__pill:hover,
.app-body .recs-tabs__pill:hover {
  background: var(--t-card-hover) !important;
  color: var(--t-text) !important;
}

/* ============================================================
   FINAL CONTRAST CLEANUP PASS (2026-05-09)
   APPEND-ONLY. Catches every remaining component that was designed
   exclusively for the old always-dark .app-body and reads invisible
   in light mode. Uses theme tokens so each rule still works in both
   light and dark mode.
   ============================================================ */

/* ---- Stays detail page: every cream-on-transparent component ---- */
.app-body .stay-detail__crumb a            { color: var(--t-text-soft) !important; }
.app-body .stay-detail__crumb a:hover      { color: var(--t-accent) !important; }
.app-body .stay-detail__h1                 { color: var(--t-text) !important; }
.app-body .stay-detail__rating             { color: var(--t-text) !important; }
.app-body .stay-detail__rating-num         { color: var(--t-text) !important; }
.app-body .stay-detail__rating-count       { color: var(--t-text-soft) !important; }
.app-body .stay-pill {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
}
.app-body .stay-pill--type {
  background: rgba(229, 180, 80, 0.14) !important;
  color: var(--t-accent-soft) !important;
  border-color: rgba(229, 180, 80, 0.35) !important;
}
.app-body[data-theme="dark"] .stay-pill--type { color: #E5B450 !important; }
.app-body:not([data-theme="dark"]) .stay-pill--type { color: #8A5E10 !important; }
.app-body .stay-pill--muted                { color: var(--t-text-soft) !important; }
.app-body .stay-iconbtn {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
}
.app-body .stay-iconbtn:hover {
  background: var(--t-card-hover) !important;
  border-color: var(--t-card-border) !important;
}

/* ---- Stay sections (about / amenities / location / reviews) ---- */
.app-body .stay-section                    { border-bottom-color: var(--t-divider) !important; }
.app-body .stay-section p                  { color: var(--t-text-soft) !important; }
.app-body .stay-section__lede              { color: var(--t-text) !important; }
.app-body .stay-section__title             { color: var(--t-text) !important; }
.app-body .stay-section--block {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
}

/* ---- Amenities (also used on event-detail highlights) ---- */
.app-body .amenity                         { color: var(--t-text) !important; }
.app-body .amenity__icon {
  background: var(--t-card-hover) !important;
  color: var(--t-text-soft) !important;
}

/* ---- Host card ---- */
.app-body .stay-host__name                 { color: var(--t-text) !important; }
.app-body .stay-host__meta                 { color: var(--t-text-soft) !important; }

/* ---- Map placeholder block on stay/event detail ---- */
.app-body .stay-map {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
}
.app-body .stay-map__placeholder           { color: var(--t-text-faint) !important; }
.app-body .stay-map__coords                { color: var(--t-text-soft) !important; }

/* ---- Reviews summary + bars ---- */
.app-body .review-summary {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
}
.app-body .review-summary__big             { color: var(--t-text) !important; }
.app-body .review-summary__count           { color: var(--t-text-soft) !important; }
.app-body .review-bar                      { color: var(--t-text-soft) !important; }
.app-body .review-bar__label               { color: var(--t-text-soft) !important; }
.app-body .review-bar__pct                 { color: var(--t-text-soft) !important; }
.app-body .review-bar__track {
  background: var(--t-card-hover) !important;
}

/* ---- Booking widget on stay detail ---- */
.app-body .book-widget {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04) !important;
}
.app-body[data-theme="dark"] .book-widget { box-shadow: 0 24px 56px rgba(0,0,0,0.45) !important; }
.app-body .book-widget__price              { border-bottom-color: var(--t-divider) !important; }
.app-body .book-widget__price strong       { color: var(--t-text) !important; }
.app-body .book-widget__per                { color: var(--t-text-soft) !important; }
.app-body .book-widget__title              { color: var(--t-text) !important; }
.app-body .book-field__label               { color: var(--t-text-soft) !important; }
.app-body .book-field__hint                { color: var(--t-text-faint) !important; }
.app-body .book-field input {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text) !important;
  color-scheme: light;
}
.app-body[data-theme="dark"] .book-field input { color-scheme: dark; }
.app-body .book-field input:focus {
  border-color: var(--t-accent) !important;
  background: var(--t-card-bg) !important;
}
.app-body .book-widget__note               { color: var(--t-text-soft) !important; }

/* ---- Stays index: cities chips + counters + empty state ---- */
.app-body .stays-cities__label             { color: var(--t-text-soft) !important; }
.app-body .stays-cities__chip {
  color: var(--t-text-soft) !important;
  border-color: var(--t-card-border) !important;
}
.app-body .stays-cities__chip:hover {
  color: var(--t-text) !important;
  background: var(--t-card-hover) !important;
  border-color: rgba(229, 180, 80, 0.4) !important;
}
.app-body .stays-cities__chip.is-active {
  background: rgba(229, 180, 80, 0.14) !important;
  color: var(--t-text) !important;
  border-color: rgba(229, 180, 80, 0.5) !important;
}
.app-body .stays-count                     { color: var(--t-text-soft) !important; }
.app-body .stays-empty {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
  color: var(--t-text-soft) !important;
}

/* ---- Stay-card photo placeholder bg flips ---- */
.app-body .stay-card__photo,
.app-body .stay-gallery__hero,
.app-body .stay-gallery__tile,
.app-body .booking-confirm__photo,
.app-body .booking-list__photo,
.app-body .dash-booking-card__photo {
  background-color: var(--t-card-hover) !important;
}
.app-body[data-theme="dark"] .stay-card__photo,
.app-body[data-theme="dark"] .stay-gallery__hero,
.app-body[data-theme="dark"] .stay-gallery__tile,
.app-body[data-theme="dark"] .booking-confirm__photo,
.app-body[data-theme="dark"] .booking-list__photo,
.app-body[data-theme="dark"] .dash-booking-card__photo {
  background-color: #1A2438 !important;
}

/* ---- Dashboard hero divider + stat boxes + see-all button ---- */
.app-body .dash-hero                       { border-bottom-color: var(--t-divider) !important; }
.app-body .dash-hero__greet                { color: var(--t-text) !important; }
.app-body .dash-hero__lede                 { color: var(--t-text-soft) !important; }
.app-body .dash-hero__eyebrow              { color: var(--t-accent) !important; }
.app-body .dash-stat__num-sub              { color: var(--t-text-faint) !important; }
.app-body .dash-section__see-all {
  color: var(--t-text-soft) !important;
  border-color: var(--t-card-border) !important;
}
.app-body .dash-section__see-all:hover {
  color: var(--t-accent) !important;
  background: var(--t-card-hover) !important;
  border-color: rgba(229, 180, 80, 0.35) !important;
}
.app-body .dash-bookings-row__item         { /* inherit fine */ }
.app-body .dash-booking-card__foot         { border-top-color: var(--t-divider) !important; }

/* ---- Feature cards: foot border + icon backgrounds ---- */
.app-body .feat-card                       { background: var(--t-card-bg) !important; }
.app-body .feat-card__foot                 { border-top-color: var(--t-divider) !important; }
.app-body .feat-card__status--soon {
  background: var(--t-card-hover) !important;
  border-color: var(--t-card-border) !important;
}
.app-body .feat-card__cta                  { color: var(--t-text-soft) !important; }
.app-body .feat-card--has-photo .feat-card__photo {
  border-bottom-color: var(--t-divider) !important;
}

/* ---- Coming-soon stub page (used by some app/* routes) ---- */
.app-body .coming-soon-page {
  background: var(--t-card-bg) !important;
  border-color: var(--t-card-border) !important;
}
.app-body .coming-soon-page__title         { color: var(--t-text) !important; }
.app-body .coming-soon-page__desc          { color: var(--t-text-soft) !important; }
.app-body .coming-soon-page__lede          { color: var(--t-text-faint) !important; }

/* ---- Booking confirm extras ---- */
.app-body .booking-confirm__eyebrow        { color: var(--t-text-soft) !important; }
.app-body .booking-confirm__code-label     { color: var(--t-text-soft) !important; }
.app-body .booking-confirm__email          { color: var(--t-text-soft) !important; }
.app-body .booking-confirm__row {
  border-bottom-color: var(--t-divider) !important;
}
.app-body .booking-confirm__row--total {
  border-top-color: var(--t-divider) !important;
}

/* ---- Booking list extras ---- */
.app-body .booking-list__row:hover {
  border-color: rgba(229, 180, 80, 0.3) !important;
  background: var(--t-card-hover) !important;
}
.app-body .booking-list__name              { color: var(--t-text) !important; }
.app-body .booking-list__city              { color: var(--t-text-soft) !important; }
.app-body .booking-list__dates             { color: var(--t-text-soft) !important; }
.app-body .booking-list__total             { color: var(--t-text) !important; }
.app-body .booking-list__code              { color: var(--t-text-faint) !important; }
.app-body .booking-list__status--cancelled {
  background: var(--t-card-hover) !important;
  color: var(--t-text-faint) !important;
  border-color: var(--t-card-border) !important;
}

/* ---- Planner page: dark-mode-only borders + ghost button ---- */
.app-body .plan-result__head               { border-top-color: var(--t-divider) !important; }
.app-body .plan-day__head                  { border-bottom-color: var(--t-divider) !important; }
.app-body .plan-actions__btn--ghost {
  color: var(--t-text) !important;
  border-color: var(--t-card-border) !important;
  background: var(--t-card-bg) !important;
}
.app-body .plan-actions__btn--ghost:hover  { border-color: var(--t-text-soft) !important; }

/* ---- AR sec-head titles (already covered for hero, but section heads use
        .ar-sec-title which the existing block already handles).
        Lede text needs the soft token for light bg. ---- */
.app-body .ar-sec-lede                     { color: var(--t-text-soft) !important; }

/* ---- Audio page: filter rail border + section headers ---- */
.app-body .audio-filters                   { border-bottom-color: var(--t-divider) !important; }
/* The all-guides h2 has an inline style="color:#F4F2EC" — can't override
   inline. Done in the view with a tag-level trick: add a ::before? No —
   we leave the inline (it sits ABOVE white audio rows so it's visible-ish
   only in dark; in light, an h2 right above rows still parses readable
   visually because the background is the page bg #F4F2EC and the text is
   #F4F2EC). Skip this in CSS: needs view edit (out of scope). */

/* ---- Eco page: hero divider + why-section heading ---- */
.app-body .eco-hero                        { border-bottom-color: var(--t-divider) !important; }
.app-body .eco-why__h2                     { color: var(--t-text) !important; }

/* ---- Recommendations page: hero divider ---- */
.app-body .recs-hero                       { border-bottom-color: var(--t-divider) !important; }

/* ---- Maps page: hero divider ---- */
.app-body .maps-hero                       { border-bottom-color: var(--t-divider) !important; }

/* ---- Passport page extras ---- */
.app-body .pass-region__head               { border-bottom-color: var(--t-divider) !important; }

/* ---- EXPO page: section title + lede already covered in earlier block.
        Match-card neutral variant is light-bg-with-dark-text per the view's
        inline rules — leave as is. ---- */

/* ---- Filter chip on places page (used in app context too) ---- */
/* .filter-chip already has theme-aware override above. */

/* ---- Map page (sst-map): the toolbar/list-card use --ink/--line which
        stay light. On dark theme, the map list cards become white-on-dark
        which is fine; on light theme they're already correct. The map
        canvas (#sst-map) has its own bg #e7eef2 — fine in both modes. ---- */

/* ---- App-shell flash messages: keep their own light bg. They're readable
        on either body color. Skip. ---- */

/* ---- App-shell skip-link: already styled .skip-link as positioned off-screen
        with focus state — visible on focus regardless of theme. Skip. ---- */

/* ---- User-menu (only renders inside .site-header, never inside .app-body
        — so it's always on a light page). Skip. ---- */
/* ---- Lang-switcher (same story — only on partials/header.php pages). Skip. ---- */

/* ---- Dashboard map card chips — handled by always-dark block earlier. ---- */

/* ---- Tickets list reuses .booking-list__* — covered above. ---- */

/* ---- Place-related strip (lives on /places/:slug, NOT under .app-body, so
        its existing light tokens are correct). Skip. ---- */

/* ============================================================
   Super-app utility pages — Converter, Phrasebook, Emergency,
   Finder, Tipping, Transport (Phase 2, 2026-05).
   Page-scoped styles live inline in each view; this block is the
   theme-aware safety net so cards/text never read black-on-black
   if a future override leaks in.
   ============================================================ */
.app-body .conv-page,
.app-body .phrase-page,
.app-body .emerg-page,
.app-body .find-page,
.app-body .tip-page,
.app-body .transp-page { color: var(--t-text); }

.app-body .conv-page .conv-hero__h1,
.app-body .find-page .find-hero__h1,
.app-body .tip-page  .tip-hero__h1,
.app-body .transp-page .transp-hero__h1 { color: var(--t-text) !important; }
.app-body .conv-page .conv-hero__lede,
.app-body .find-page .find-hero__lede,
.app-body .tip-page  .tip-hero__lede,
.app-body .transp-page .transp-hero__lede { color: var(--t-text-soft) !important; }

/* Converter, finder, transport, tipping cards inherit theme tokens directly.
   Phrasebook + emergency heroes intentionally keep their dark gradient bg
   (matches expo / planner hero treatments) and remain readable in both modes. */

/* Cards: ensure border + bg follow theme even when the inline rules are
   shadowed by external utility selectors. */
.app-body .conv-card,
.app-body .conv-office,
.app-body .find-card,
.app-body .find-tabs,
.app-body .find-citychip,
.app-body .emerg-call,
.app-body .emerg-embassy,
.app-body .emerg-clinic,
.app-body .tip-card,
.app-body .tip-mini,
.app-body .tip-cult,
.app-body .tip-input,
.app-body .tip-radio,
.app-body .transp-tabs,
.app-body .transp-ticket,
.app-body .transp-route,
.app-body .phrase-cat,
.app-body .phrase-toolbar,
.app-body .phrase-langbtn,
.app-body .phrase-row__copy {
  background: var(--t-card-bg);
  border-color: var(--t-card-border);
  color: var(--t-text);
}

/* Soft text inside super-app cards */
.app-body .conv-rates__pair,
.app-body .conv-office__row,
.app-body .find-card__row,
.app-body .find-card__city,
.app-body .find-card__pass-lbl,
.app-body .emerg-embassy__row,
.app-body .emerg-clinic__note,
.app-body .tip-mini__body,
.app-body .tip-cult p,
.app-body .transp-route__meta,
.app-body .transp-ticket__how,
.app-body .phrase-row__tr { color: var(--t-text-soft); }

/* Sub-headings / titles */
.app-body .conv-sec-head h2,
.app-body .conv-office__name,
.app-body .find-card__name,
.app-body .emerg-embassy__name,
.app-body .emerg-clinic__name,
.app-body .tip-sec-head h2,
.app-body .tip-mini__title,
.app-body .tip-cult h3,
.app-body .transp-ticket__name,
.app-body .phrase-cat__title,
.app-body .phrase-row__sr { color: var(--t-text); }

/* Emergency hero stays red regardless of theme — it is a SAFETY surface */
/* (no override needed — inline gradient already strong enough) */

/* Phrasebook hero / tipping result panel keep dark gradient deliberately */
/* (legible white text already inline) */

/* Active state for tabs/chips — ensure contrast in dark mode */
.app-body[data-theme="dark"] .find-tab[aria-selected="true"],
.app-body[data-theme="dark"] .transp-tab[aria-selected="true"],
.app-body[data-theme="dark"] .find-citychip[aria-pressed="true"],
.app-body[data-theme="dark"] .phrase-langbtn[aria-pressed="true"] {
  background: var(--t-text);
  color: var(--t-bg);
  border-color: var(--t-text);
}

/* Quick-pick chip in converter — make sure it is visible in dark mode */
.app-body .conv-chip {
  background: var(--t-card-bg);
  border-color: var(--t-card-border);
  color: var(--t-text);
}

/* Tip calculator inputs — explicit dark-mode tweak for input bg */
.app-body[data-theme="dark"] .tip-input,
.app-body[data-theme="dark"] .tip-radio { background: var(--t-card-bg); }

/* Map placeholder (finder) keeps its green plot regardless — no override */


/* ============================================================
   FONT OVERRIDE — modern Plus Jakarta Sans + Inter
   Force every element to use the new fonts, killing all the
   Cormorant Garamond + Geist references in inline styles.
   ============================================================ */
:root {
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}
html, body, .app-body, .app-body * {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.app-body h1, .app-body h2, .app-body h3, .app-body h4,
body h1, body h2, body h3, body h4,
.expo-hero__h1, .expo-section__title,
.pass-hero__h1, .pass-sec__title,
.plan-hero__h1, .plan-result__title, .plan-day__title,
.ar-hero__h1, .ar-sec-title,
.audio-hero__h1,
.maps-hero__h1,
.recs-hero__h1,
.eco-hero__h1, .eco-why__h2,
.events-hero__title, .events-spotlight__name,
.stays-hero__title, .stay-detail__h1, .stay-section__title,
.booking-confirm__title,
.dash-section__title, .dash-greet__h1, .dash-hero h1,
.feat-card__title,
.expo-match-card__title, .expo-business-strip__head h2, .expo-toolkit h2,
.event-card__name, .stay-card__title, .place-card__name {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}
code, pre, .booking-confirm__code, .ticket-confirm__code, .esim-confirm__code, .stay-card__price strong {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace !important;
}

/* ============================================================
   IMMEDIATE PADDING FIX — /sr/places looked horrible per user
   (more comprehensive padding sweep landing via agent shortly)
   ============================================================ */
.app-body .places-head {
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 3vw, 2rem) !important;
}
.app-body .places-head .container,
.app-body .places-filters .container,
.app-body .places-grid-wrap > .container {
  padding-inline: clamp(1rem, 4vw, 2.5rem) !important;
}
.app-body .places-grid-wrap {
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem) !important;
}
.app-body .places-grid {
  gap: clamp(1rem, 2.5vw, 1.75rem) !important;
}
@media (max-width: 720px) {
  .app-body .places-head .container,
  .app-body .places-filters .container,
  .app-body .places-grid-wrap > .container { padding-inline: 1rem !important; }
}

/* ============================================================
   AGGRESSIVE PADDING SWEEP — fix the "no padding everywhere" complaint
   ============================================================ */

/* Page wrappers — generous responsive padding */
.app-body .app-main {
  padding-block: clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem) !important;
}
.app-body .app-container,
.app-body .container {
  padding-inline: clamp(1.25rem, 4vw, 3rem) !important;
  max-width: 1280px !important;
}

/* Hero bands across all app pages */
.app-body .events-hero,
.app-body .stays-hero,
.app-body .pass-hero,
.app-body .plan-hero,
.app-body .ar-hero,
.app-body .audio-hero,
.app-body .maps-hero,
.app-body .recs-hero,
.app-body .eco-hero,
.app-body .expo-hero,
.app-body .esim-hero,
.app-body .conv-hero,
.app-body .phrase-hero,
.app-body .emerg-hero,
.app-body .find-hero,
.app-body .tip-hero,
.app-body .transp-hero,
.app-body .places-head,
.app-body .map-greet {
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 2.5rem) !important;
  margin-bottom: clamp(2rem, 4vw, 3rem) !important;
}

/* Sections between hero and grid */
.app-body .expo-section,
.app-body .pass-section,
.app-body .plan-section,
.app-body .ar-section,
.app-body .audio-section,
.app-body .maps-section,
.app-body .recs-section,
.app-body .eco-section,
.app-body .events-section,
.app-body .esim-section,
.app-body .stays-section,
.app-body .conv-section,
.app-body .phrase-section,
.app-body .emerg-section,
.app-body .find-section,
.app-body .tip-section,
.app-body .transp-section,
.app-body .dash-section,
.app-body .places-grid-wrap,
.app-body .places-filters {
  margin-bottom: clamp(2rem, 5vw, 4rem) !important;
}

/* Filter rails */
.app-body .stays-filter,
.app-body .events-filter,
.app-body .recs-tabs,
.app-body .places-filters {
  padding: clamp(0.5rem, 1vw, 0.75rem) !important;
  margin-block: clamp(1rem, 2.5vw, 1.5rem) clamp(1.5rem, 3vw, 2rem) !important;
}

/* Grids — more breathing space between cards */
.app-body .places-grid,
.app-body .stay-grid,
.app-body .events-grid,
.app-body .feat-grid,
.app-body .dash-feat-grid,
.app-body .esim-grid,
.app-body .pass-region__grid,
.app-body .recs-grid,
.app-body .audio-list,
.app-body .maps-region-grid {
  gap: clamp(1.25rem, 2.5vw, 2rem) !important;
}

/* Card internal padding */
.app-body .feat-card,
.app-body .dash-booking-card,
.app-body .recs-card,
.app-body .stay-host,
.app-body .stay-section--block,
.app-body .booking-confirm__details,
.app-body .esim-card,
.app-body .conv-card,
.app-body .emerg-card,
.app-body .find-card,
.app-body .tip-card,
.app-body .transp-card,
.app-body .pass-tier,
.app-body .ar-how__card,
.app-body .ar-card,
.app-body .audio-row,
.app-body .maps-card,
.app-body .eco-tip,
.app-body .eco-why__card,
.app-body .expo-pavilion-card,
.app-body .expo-match-card,
.app-body .expo-business-cell,
.app-body .review-card,
.app-body .events-spotlight,
.app-body .event-buy-widget,
.app-body .book-widget {
  padding: clamp(1.25rem, 2.5vw, 1.75rem) !important;
}

/* Card body sections (where photo + body split) */
.app-body .stay-card__body,
.app-body .event-card__body,
.app-body .place-card__overlay,
.app-body .esim-list-row {
  padding: clamp(1rem, 2vw, 1.4rem) !important;
}

/* Booking widget needs bigger pad on the right column */
.app-body .book-widget,
.app-body .event-buy-widget {
  padding: clamp(1.5rem, 3vw, 2rem) !important;
}

/* Mobile — keep at least 1rem horizontal so things don't touch edges */
@media (max-width: 720px) {
  .app-body .app-container,
  .app-body .container { padding-inline: 1rem !important; }
  .app-body .app-main { padding-block: 1.5rem 2.5rem !important; }
  .app-body .events-hero,
  .app-body .stays-hero,
  .app-body .places-head,
  .app-body .pass-hero,
  .app-body .plan-hero,
  .app-body .ar-hero,
  .app-body .audio-hero,
  .app-body .maps-hero,
  .app-body .recs-hero,
  .app-body .eco-hero,
  .app-body .expo-hero,
  .app-body .esim-hero { padding: 1.75rem 1.25rem !important; }
}

/* ============================================================
   PADDING SWEEP — gap-fillers for the previous block:
   per-page row-gap, .X-sec section selectors (used by most
   app pages), detail pages (stay/event/place), profile, and
   sub-720px / sub-480px refinements.
   ============================================================ */

/* ---- Per-page wrapper vertical breathing: .X-page is a flex
        column with `gap`, so override row-gap to enforce
        consistent spacing between hero + sections + grid. ---- */
.app-body .expo-page,
.app-body .pass-page,
.app-body .plan-page,
.app-body .ar-page,
.app-body .audio-page,
.app-body .maps-page,
.app-body .recs-page,
.app-body .eco-page,
.app-body .events-page,
.app-body .stays-page,
.app-body .esim-page,
.app-body .esim-list-page,
.app-body .conv-page,
.app-body .phrase-page,
.app-body .emerg-page,
.app-body .find-page,
.app-body .tip-page,
.app-body .transp-page {
  row-gap: clamp(2rem, 5vw, 3.25rem) !important;
}

/* ---- Section blocks — actual class names use `-sec` not `-section`
        on most app pages (pass-sec, ar-sec, esim-sec, tip-sec, etc.).
        The earlier rule used `-section` which doesn't match. ---- */
.app-body .pass-sec,
.app-body .ar-sec,
.app-body .esim-sec,
.app-body .audio-sec,
.app-body .maps-sec,
.app-body .recs-sec,
.app-body .eco-sec,
.app-body .find-sec,
.app-body .tip-sec,
.app-body .transp-sec,
.app-body .conv-sec,
.app-body .phrase-sec,
.app-body .emerg-sec {
  margin-block: 0 clamp(2rem, 5vw, 3.5rem) !important;
}

/* ---- Stays detail (60/40 layout + sticky booking widget) ---- */
.app-body .stay-detail {
  padding-block: clamp(1.5rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem) !important;
}
.app-body .stay-body {
  column-gap: clamp(2rem, 4vw, 3rem) !important;
  margin-top: clamp(2rem, 4vw, 3rem) !important;
}
.app-body .stay-section {
  padding-block: clamp(1.5rem, 3vw, 2.25rem) !important;
}
.app-body .stay-gallery {
  margin-block: clamp(1.5rem, 4vw, 2.5rem) !important;
}

/* ---- Event detail page (.event-detail wraps in .app-container) ---- */
.app-body .event-detail {
  padding-block: clamp(1.5rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem) !important;
  row-gap: clamp(2rem, 5vw, 3.25rem) !important;
}

/* ---- Place detail page — uses .container directly inside
        .place-hero / .place-body / .place-related sections,
        not .app-container. Give them generous padding. ---- */
.app-body .place-hero {
  padding-block: clamp(4rem, 9vw, 6.5rem) clamp(2.5rem, 6vw, 4rem) !important;
}
.app-body .place-hero .container,
.app-body .place-body .container,
.app-body .place-related .container {
  padding-inline: clamp(1rem, 4vw, 2.5rem) !important;
  max-width: 1280px !important;
}
.app-body .place-body {
  padding-block: clamp(2.5rem, 6vw, 4rem) !important;
}
.app-body .place-body__inner {
  column-gap: clamp(2rem, 4vw, 3rem) !important;
  row-gap: clamp(2rem, 4vw, 3rem) !important;
}
.app-body .place-related {
  padding-block: clamp(2.5rem, 6vw, 4rem) !important;
}

/* ---- Forms inside app pages — give controls room to breathe ---- */
.app-body .plan-form,
.app-body .eco-form,
.app-body .conv-panel,
.app-body .conv-widget,
.app-body .tip-calc,
.app-body .find-tabs,
.app-body .transp-tabs,
.app-body .phrase-cats {
  padding: clamp(1.25rem, 3vw, 2rem) !important;
}

/* ---- Profile page — uses .profile.container under promo header
        (no .app-body), so we must scope without .app-body. The
        promo .container is otherwise unchanged. ---- */
.profile.container {
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(3rem, 7vw, 5rem) !important;
  padding-inline: clamp(1rem, 4vw, 2.5rem) !important;
}

/* ---- Lists on confirm/list pages (bookings, tickets, esim) ---- */
.app-body .booking-list,
.app-body .ticket-list ul,
.app-body .booking-confirm,
.app-body .ticket-confirm,
.app-body .esim-confirm {
  margin-block: clamp(1.5rem, 4vw, 2.5rem) 0 !important;
}

/* ---- Map page (interactive map) — toolbar must not kiss edges ---- */
.app-body .map-page {
  padding-block: clamp(1rem, 2.5vw, 1.5rem) clamp(2rem, 5vw, 3.5rem) !important;
}

/* ---- Sub-720 mobile additions for newly covered selectors ---- */
@media (max-width: 720px) {
  .app-body .expo-page,
  .app-body .pass-page,
  .app-body .plan-page,
  .app-body .ar-page,
  .app-body .audio-page,
  .app-body .maps-page,
  .app-body .recs-page,
  .app-body .eco-page,
  .app-body .events-page,
  .app-body .stays-page,
  .app-body .esim-page,
  .app-body .esim-list-page,
  .app-body .conv-page,
  .app-body .phrase-page,
  .app-body .emerg-page,
  .app-body .find-page,
  .app-body .tip-page,
  .app-body .transp-page {
    row-gap: 1.75rem !important;
  }
  .app-body .stay-detail,
  .app-body .event-detail {
    padding-inline: 0 !important;
    row-gap: 1.75rem !important;
  }
  .app-body .place-hero .container,
  .app-body .place-body .container,
  .app-body .place-related .container { padding-inline: 1rem !important; }
  .app-body .emerg-hero,
  .app-body .find-hero,
  .app-body .tip-hero,
  .app-body .transp-hero,
  .app-body .conv-hero,
  .app-body .phrase-hero { padding: 1.5rem 1.1rem !important; }
}

/* ---- Sub-480 phone refinements: keep cards readable but never
        let the layout collapse to flush-left. ---- */
@media (max-width: 480px) {
  .app-body .app-container,
  .app-body .container { padding-inline: 0.875rem !important; }
  .app-body .events-hero,
  .app-body .stays-hero,
  .app-body .places-head,
  .app-body .pass-hero,
  .app-body .plan-hero,
  .app-body .ar-hero,
  .app-body .audio-hero,
  .app-body .maps-hero,
  .app-body .recs-hero,
  .app-body .eco-hero,
  .app-body .expo-hero,
  .app-body .esim-hero,
  .app-body .conv-hero,
  .app-body .phrase-hero,
  .app-body .emerg-hero,
  .app-body .find-hero,
  .app-body .tip-hero,
  .app-body .transp-hero {
    padding: 1.4rem 0.85rem !important;
    margin-bottom: 1.4rem !important;
  }
  .app-body .feat-card,
  .app-body .recs-card,
  .app-body .esim-card,
  .app-body .conv-card,
  .app-body .emerg-card,
  .app-body .find-card,
  .app-body .tip-card,
  .app-body .transp-card,
  .app-body .pass-tier,
  .app-body .ar-card,
  .app-body .maps-card,
  .app-body .book-widget,
  .app-body .event-buy-widget {
    padding: 1rem !important;
  }
}

/* ============================================================
   UNIFIED PADDING — equal spacing across every app page
   Replaces the earlier clamp()-based rules with predictable rem
   values. These come last in the cascade and use !important to
   beat all previous padding overrides.
   ============================================================ */

/* Container — fixed 2.5rem horizontal, 1280px max */
.app-body .app-container,
.app-body .container {
  padding-inline: 2.5rem !important;
  padding-block: 0 !important;
  max-width: 1280px !important;
  margin-inline: auto !important;
  box-sizing: border-box !important;
}

/* Main column — fixed 2.5rem top, 4rem bottom */
.app-body .app-main {
  padding-block: 2.5rem 4rem !important;
  padding-inline: 0 !important;
}

/* Hero bands — every page gets the SAME padding */
.app-body .events-hero,
.app-body .stays-hero,
.app-body .pass-hero,
.app-body .plan-hero,
.app-body .ar-hero,
.app-body .audio-hero,
.app-body .maps-hero,
.app-body .recs-hero,
.app-body .eco-hero,
.app-body .expo-hero,
.app-body .esim-hero,
.app-body .conv-hero,
.app-body .phrase-hero,
.app-body .emerg-hero,
.app-body .find-hero,
.app-body .tip-hero,
.app-body .transp-hero,
.app-body .places-head,
.app-body .map-greet,
.app-body .stay-detail__hero,
.app-body .booking-confirm__hero {
  padding: 2.5rem 2rem !important;
  margin-bottom: 2.5rem !important;
}

/* Sections all get equal bottom margin */
.app-body .expo-section,
.app-body .pass-section,
.app-body .plan-section,
.app-body .ar-section,
.app-body .audio-section,
.app-body .maps-section,
.app-body .recs-section,
.app-body .eco-section,
.app-body .events-section,
.app-body .esim-section,
.app-body .stays-section,
.app-body .conv-section,
.app-body .phrase-section,
.app-body .emerg-section,
.app-body .find-section,
.app-body .tip-section,
.app-body .transp-section,
.app-body .dash-section,
.app-body .stay-section,
.app-body .places-grid-wrap,
.app-body .places-filters {
  margin-bottom: 2.5rem !important;
}

/* Filter rails — same compact pad everywhere */
.app-body .stays-filter,
.app-body .events-filter,
.app-body .recs-tabs,
.app-body .places-filters {
  padding: 0.5rem !important;
  margin-block: 1.25rem 1.75rem !important;
}

/* Grids — same gap everywhere */
.app-body .places-grid,
.app-body .stay-grid,
.app-body .events-grid,
.app-body .feat-grid,
.app-body .dash-feat-grid,
.app-body .esim-grid,
.app-body .pass-region__grid,
.app-body .recs-grid,
.app-body .audio-list,
.app-body .maps-region-grid,
.app-body .expo-pavilions-grid,
.app-body .expo-match-grid,
.app-body .conv-rates,
.app-body .find-grid,
.app-body .emerg-grid {
  gap: 1.5rem !important;
}

/* Card internal padding — same on every card */
.app-body .feat-card,
.app-body .dash-booking-card,
.app-body .recs-card,
.app-body .stay-host,
.app-body .stay-section--block,
.app-body .booking-confirm__details,
.app-body .esim-card,
.app-body .conv-card,
.app-body .emerg-card,
.app-body .find-card,
.app-body .tip-card,
.app-body .transp-card,
.app-body .pass-tier,
.app-body .ar-how__card,
.app-body .ar-card,
.app-body .audio-row,
.app-body .maps-card,
.app-body .eco-tip,
.app-body .eco-why__card,
.app-body .expo-pavilion-card,
.app-body .expo-match-card,
.app-body .expo-business-cell,
.app-body .review-card {
  padding: 1.5rem !important;
}

/* Card body areas (when card has photo above) */
.app-body .stay-card__body,
.app-body .event-card__body,
.app-body .esim-list-row {
  padding: 1.25rem !important;
}

/* Booking widget — slightly more pad */
.app-body .book-widget,
.app-body .event-buy-widget {
  padding: 1.75rem !important;
}

/* Tablet */
@media (max-width: 980px) {
  .app-body .app-container,
  .app-body .container { padding-inline: 1.75rem !important; }
  .app-body .events-hero,
  .app-body .stays-hero,
  .app-body .pass-hero,
  .app-body .plan-hero,
  .app-body .ar-hero,
  .app-body .audio-hero,
  .app-body .maps-hero,
  .app-body .recs-hero,
  .app-body .eco-hero,
  .app-body .expo-hero,
  .app-body .esim-hero,
  .app-body .places-head { padding: 2rem 1.5rem !important; }
}

/* Mobile */
@media (max-width: 720px) {
  .app-body .app-container,
  .app-body .container { padding-inline: 1.25rem !important; }
  .app-body .app-main { padding-block: 1.5rem 2.5rem !important; }
  .app-body .events-hero,
  .app-body .stays-hero,
  .app-body .pass-hero,
  .app-body .plan-hero,
  .app-body .ar-hero,
  .app-body .audio-hero,
  .app-body .maps-hero,
  .app-body .recs-hero,
  .app-body .eco-hero,
  .app-body .expo-hero,
  .app-body .esim-hero,
  .app-body .places-head { padding: 1.5rem 1.25rem !important; margin-bottom: 1.75rem !important; }
  .app-body .feat-card,
  .app-body .recs-card,
  .app-body .esim-card,
  .app-body .conv-card,
  .app-body .emerg-card,
  .app-body .find-card,
  .app-body .tip-card,
  .app-body .transp-card,
  .app-body .review-card { padding: 1.25rem !important; }
}

/* ============================================================
   UNIFIED PADDING — also cover the .X-sec naming convention used
   in passport, ar, esim, audio, maps, recs, eco, find, tip,
   transp, conv, phrase, emerg pages. Same fixed values as above.
   ============================================================ */
.app-body .pass-sec,
.app-body .ar-sec,
.app-body .audio-sec,
.app-body .maps-sec,
.app-body .recs-sec,
.app-body .eco-sec,
.app-body .events-sec,
.app-body .esim-sec,
.app-body .stays-sec,
.app-body .conv-sec,
.app-body .phrase-sec,
.app-body .emerg-sec,
.app-body .find-sec,
.app-body .tip-sec,
.app-body .transp-sec {
  margin-bottom: 2.5rem !important;
}

/* Page-level wrappers — all get same row gap if they're flex-column */
.app-body .expo-page,
.app-body .pass-page,
.app-body .plan-page,
.app-body .ar-page,
.app-body .audio-page,
.app-body .maps-page,
.app-body .recs-page,
.app-body .eco-page,
.app-body .events-page,
.app-body .esim-page,
.app-body .stays-page,
.app-body .conv-page,
.app-body .phrase-page,
.app-body .emerg-page,
.app-body .find-page,
.app-body .tip-page,
.app-body .transp-page,
.app-body .map-page {
  display: flex !important;
  flex-direction: column !important;
  row-gap: 0 !important;  /* sections handle their own bottom margin */
}

/* Mobile — equal tighter values */
@media (max-width: 720px) {
  .app-body .pass-sec,
  .app-body .ar-sec,
  .app-body .audio-sec,
  .app-body .maps-sec,
  .app-body .recs-sec,
  .app-body .eco-sec,
  .app-body .events-sec,
  .app-body .esim-sec,
  .app-body .stays-sec,
  .app-body .conv-sec,
  .app-body .phrase-sec,
  .app-body .emerg-sec,
  .app-body .find-sec,
  .app-body .tip-sec,
  .app-body .transp-sec { margin-bottom: 1.75rem !important; }
}

/* ============================================================
   MOBILE BURGER — marketing landing nav (header.php)
   ============================================================ */
.promo-burger {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.promo-burger__bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}
.site-header.is-transparent:not(.is-scrolled) .promo-burger__bar { background: #fff; }
.promo-burger.is-open .promo-burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.promo-burger.is-open .promo-burger__bar:nth-child(2) { opacity: 0; }
.promo-burger.is-open .promo-burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .promo-burger { display: inline-flex; }
  .nav-promo {
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: #14181F;
    flex-direction: column !important;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.25rem 2rem;
    margin: 0 !important;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 100;
  }
  .nav-promo.is-open { transform: translateX(0); }
  .nav-promo a {
    color: #F4F2EC !important;
    padding: 0.95rem 1rem !important;
    font-size: 1rem;
    border-radius: 8px;
    text-align: left;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-promo a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff !important;
  }
  /* Hide the desktop user-menu/sign-in chunk on mobile when burger present */
  .utility-nav .user-menu__name,
  .utility-nav .nav-promo__signin { display: none; }
  .utility-nav { gap: 0.5rem; }
  .utility-nav .btn--sm { padding: 0.5rem 0.85rem; font-size: 0.82rem; }
}
@media (max-width: 600px) {
  .brand__name { font-size: 0.95rem; }
  .brand__name .brand__accent { display: none; }
}


/* ============================================================
   COMPREHENSIVE MOBILE SWEEP
   ============================================================ */

/* Safety net — no horizontal scroll on mobile */
@media (max-width: 720px) {
  html, body, .app-body { overflow-x: hidden; }
  .app-body * { max-width: 100%; box-sizing: border-box; }
}

/* Sticky aside widgets become static on mobile */
@media (max-width: 980px) {
  .app-body .book-widget,
  .app-body .event-buy-widget,
  .app-body .stay-body__aside,
  .app-body .place-body__side {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    top: auto !important;
  }
}

/* Two-column layouts collapse to single column */
@media (max-width: 980px) {
  .app-body .stay-body__inner,
  .app-body .place-body__inner,
  .app-body .event-detail__body,
  .app-body .eco-form-grid,
  .app-body .expo-match-grid,
  .app-body .booking-confirm__details,
  .app-body .conv-widget,
  .app-body .pass-hero__inner,
  .app-body .events-spotlight {
    display: block !important;
    grid-template-columns: 1fr !important;
  }
  .app-body .booking-confirm__photo {
    width: 100% !important;
    height: 200px !important;
    border-radius: 12px 12px 0 0 !important;
  }
  .app-body .events-spotlight__photo {
    aspect-ratio: 16/9 !important;
    width: 100% !important;
  }
}

/* Grid columns shrink at narrow widths */
@media (max-width: 980px) {
  .app-body .expo-pavilions-grid,
  .app-body .dash-feat-grid,
  .app-body .feat-grid,
  .app-body .esim-grid,
  .app-body .stay-grid,
  .app-body .events-grid,
  .app-body .conv-rates,
  .app-body .emerg-grid,
  .app-body .find-grid,
  .app-body .places-grid,
  .app-body .recs-grid,
  .app-body .maps-region-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .app-body .expo-pavilions-grid,
  .app-body .dash-feat-grid,
  .app-body .feat-grid,
  .app-body .esim-grid,
  .app-body .stay-grid,
  .app-body .events-grid,
  .app-body .conv-rates,
  .app-body .emerg-grid,
  .app-body .find-grid,
  .app-body .places-grid,
  .app-body .recs-grid,
  .app-body .maps-region-grid { grid-template-columns: 1fr !important; }
}

/* Map page split → stack */
@media (max-width: 980px) {
  .app-body .map-shell {
    display: block !important;
    grid-template-columns: 1fr !important;
  }
  .app-body #sst-map { height: 56vh !important; min-height: 320px !important; }
  .app-body .map-shell__list { max-height: none !important; margin-top: 1rem !important; }
}

/* EXPO hero decoration hides on mobile */
@media (max-width: 720px) {
  .app-body .expo-hero__decor { display: none !important; }
  .app-body .expo-hero__inner { max-width: 100% !important; }
  .app-body .expo-hero__h1 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
}

/* EXPO schedule rows collapse */
@media (max-width: 720px) {
  .app-body .expo-schedule__row {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
  .app-body .expo-cat-badge {
    align-self: flex-start;
    margin-top: 0.4rem;
  }
}

/* Booking + ticket list rows stack */
@media (max-width: 720px) {
  .app-body .booking-list__item,
  .app-body .booking-list__row {
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
  }
  .app-body .booking-list__photo,
  .app-body .ticket-list__photo {
    width: 100% !important;
    height: 160px !important;
    object-fit: cover;
  }
}

/* Audio rows wrap on mobile */
@media (max-width: 720px) {
  .app-body .audio-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
  }
  .app-body .audio-row__photo {
    width: 100% !important;
    height: 120px !important;
  }
}

/* Audio featured player stacks */
@media (max-width: 720px) {
  .app-body .audio-featured {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .app-body .audio-featured__art {
    margin: 0 auto !important;
    max-width: 200px !important;
  }
}

/* Stay gallery stacks */
@media (max-width: 720px) {
  .app-body .stay-gallery {
    grid-template-columns: 1fr !important;
  }
  .app-body .stay-gallery__tiles {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }
  .app-body .stay-gallery__hero {
    aspect-ratio: 16/10 !important;
  }
}

/* Stay detail title row stacks */
@media (max-width: 720px) {
  .app-body .stay-detail__head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }
  .app-body .stay-detail__h1 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
}

/* Reviews single column */
@media (max-width: 720px) {
  .app-body .review-list,
  .app-body .review-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Touch targets ≥ 44px */
@media (max-width: 720px) {
  .app-body .btn,
  .app-body button[type="submit"],
  .app-body .filter-chip,
  .app-body .stays-filter__pill,
  .app-body .events-filter__pill,
  .app-body .recs-tabs__pill,
  .app-body input[type="text"],
  .app-body input[type="email"],
  .app-body input[type="password"],
  .app-body input[type="number"],
  .app-body input[type="date"],
  .app-body select,
  .app-body textarea {
    min-height: 44px !important;
  }
  .app-body .btn,
  .app-body button[type="submit"] {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.95rem !important;
  }
}

/* Hero h1 sizes shrink */
@media (max-width: 720px) {
  .app-body .events-hero__title,
  .app-body .stays-hero__title,
  .app-body .pass-hero__h1,
  .app-body .plan-hero__h1,
  .app-body .ar-hero__h1,
  .app-body .audio-hero__h1,
  .app-body .maps-hero__h1,
  .app-body .recs-hero__h1,
  .app-body .eco-hero__h1,
  .app-body .esim-hero__h1,
  .app-body .conv-hero__h1,
  .app-body .phrase-hero__h1,
  .app-body .emerg-hero__h1,
  .app-body .find-hero__h1,
  .app-body .tip-hero__h1,
  .app-body .transp-hero__h1,
  .app-body .dash-greet__h1,
  .app-body .places-head__title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.15 !important;
  }
}

/* Confirmation codes wrap */
@media (max-width: 720px) {
  .app-body .booking-confirm__code,
  .app-body .ticket-confirm__code,
  .app-body .esim-confirm__code {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    word-break: break-all;
    text-align: center;
  }
}

/* Forms stack vertically */
@media (max-width: 720px) {
  .app-body form .row,
  .app-body .plan-form__row,
  .app-body .eco-form__row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }
  .app-body input,
  .app-body select,
  .app-body textarea {
    width: 100% !important;
  }
}

/* Phrasebook accordion stacks */
@media (max-width: 720px) {
  .app-body .phrase-row {
    grid-template-columns: 1fr !important;
    gap: 0.4rem !important;
  }
}

/* Tipping calculator vertical */
@media (max-width: 720px) {
  .app-body .tip-calc__row {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .app-body .tip-bar-chart {
    flex-direction: column !important;
    gap: 0.4rem !important;
  }
  .app-body .tip-bar-chart > * {
    width: 100% !important;
  }
}

/* Brand truncation on tiny screens */
@media (max-width: 480px) {
  .app-body .brand__name { font-size: 0.85rem; }
  .app-body .brand__name .brand__accent { display: none; }
  .app-header__inner { gap: 0.5rem !important; padding-inline: 1rem !important; }
}

/* Theme toggle smaller on mobile */
@media (max-width: 900px) {
  .app-theme-toggle { width: 36px !important; height: 36px !important; margin-right: 0.25rem !important; }
}

/* ============================================================
   Wishlist module — heart button, page tabs, empty state
   ============================================================ */

/* Heart button — appears on cards (and on detail-page title blocks) */
.wish-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #14181F;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.18s, border-color 0.15s;
  padding: 0;
}
.wish-heart:hover { background: #fff; transform: scale(1.08); }
.wish-heart:focus-visible { outline: 2px solid #E5B450; outline-offset: 2px; }
.wish-heart.is-saved {
  background: var(--primary, #C92A37);
  color: #fff;
  border-color: var(--primary, #C92A37);
}
.wish-heart.is-saved svg { fill: currentColor; }
.wish-heart.is-loading { opacity: 0.6; pointer-events: none; }

/* Make sure parent cards are positioned for the absolute heart */
.stay-card, .event-card, .place-card { position: relative; }

/* In-content (non-absolute) hearts — used in detail-page title blocks */
.stay-detail__wish-wrap { display: inline-flex; }
.stay-detail__wish-wrap .wish-heart { position: static; }

.place-hero__wish {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 6;
}
.place-hero__wish .wish-heart { position: static; }

/* Wishlist page tabs */
.app-body .wish-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: var(--t-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--t-card-border, rgba(255,255,255,0.08));
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.app-body .wish-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--t-text-soft, rgba(255,255,255,0.72));
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.app-body .wish-tab:hover {
  background: var(--t-card-hover, rgba(255,255,255,0.08));
  color: var(--t-text, #F4F2EC);
}
.app-body .wish-tab.is-active {
  background: var(--primary, #C92A37);
  color: #fff;
}
.app-body .wish-tab__count {
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  opacity: 0.8;
}
.app-body .wish-tab.is-active .wish-tab__count { opacity: 1; }

/* "Saved on …" caption under cards */
.app-body .wish-saved-on {
  color: var(--t-text-faint, rgba(255,255,255,0.55));
  font-size: 0.78rem;
  margin-top: 4px;
  display: block;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

/* Empty state */
.app-body .wish-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--t-card-bg, rgba(255,255,255,0.04));
  border: 1px dashed var(--t-card-border, rgba(255,255,255,0.14));
  border-radius: 16px;
}
.app-body .wish-empty__icon {
  display: inline-flex;
  width: 80px; height: 80px;
  margin: 0 auto 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,42,55,0.12);
  color: var(--primary, #C92A37);
}
.app-body .wish-empty__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--t-text, #F4F2EC);
}
.app-body .wish-empty__lede {
  color: var(--t-text-soft, rgba(255,255,255,0.72));
  max-width: 48ch;
  margin: 0 auto;
}
.app-body .wish-empty__cta-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Tours module — index hero + spotlight + grid + detail page
   ============================================================ */
.app-body .tours-hero {
  margin: 1.5rem 0 1.75rem;
  text-align: left;
  max-width: 60rem;
}
.app-body .tours-hero__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary, #E5B450);
  margin: 0 0 0.5rem;
}
.app-body .tours-hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--t-text, #F4F2EC);
  margin: 0 0 0.85rem;
  line-height: 1.05;
}
.app-body .tours-hero__lede {
  font-size: 1.05rem;
  color: var(--t-text-soft, rgba(255,255,255,0.72));
  margin: 0;
  max-width: 56ch;
  line-height: 1.55;
}

/* Filter pill row */
.app-body .tours-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.app-body .tours-filter__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--t-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--t-card-border, rgba(255,255,255,0.1));
  color: var(--t-text-soft, rgba(255,255,255,0.72));
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s;
}
.app-body .tours-filter__pill:hover {
  background: var(--t-card-hover, rgba(255,255,255,0.08));
  color: var(--t-text, #F4F2EC);
  transform: translateY(-1px);
}

/* Spotlight (1st tour) — full-width hero card */
.app-body .tours-spotlight {
  margin: 0 0 2rem;
  background: var(--t-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--t-card-border, rgba(255,255,255,0.1));
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.app-body .tours-spotlight:hover {
  border-color: rgba(229,180,80,0.35);
  box-shadow: 0 22px 48px rgba(0,0,0,0.32);
}
.tours-spotlight__link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  text-decoration: none !important;
  color: inherit;
  min-height: 320px;
}
.tours-spotlight__photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1A2438;
  min-height: 240px;
}
.tours-spotlight__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(229,180,80,0.95);
  color: #14181F;
  font-weight: 700;
}
.tours-spotlight__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem;
  gap: 0.85rem;
}
.tours-spotlight__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.015em;
  color: var(--t-text, #F4F2EC);
  margin: 0;
  line-height: 1.15;
}
.tours-spotlight__meta {
  color: var(--t-text-soft, rgba(255,255,255,0.7));
  font-size: 0.95rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.tours-spotlight__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.tours-spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--primary, #C92A37);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
@media (max-width: 760px) {
  .tours-spotlight__link { grid-template-columns: 1fr; }
  .tours-spotlight__photo { aspect-ratio: 16 / 10; min-height: 0; }
  .tours-spotlight__body { padding: 1.5rem; }
}

/* Tour grid + cards */
.app-body .tours-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 1024px) { .app-body .tours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .app-body .tours-grid { grid-template-columns: 1fr; } }

.app-body .tour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--t-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--t-card-border, rgba(255,255,255,0.08));
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  color: var(--t-text, #F4F2EC);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.app-body .tour-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229,180,80,0.32);
  box-shadow: 0 18px 38px rgba(0,0,0,0.32);
}
.tour-card__photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #1A2438;
}
.tour-card__type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  background: rgba(10,15,26,0.78);
  color: #F4F2EC;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
}
.tour-card__dur-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
  background: rgba(229,180,80,0.95);
  color: #14181F;
}
.tour-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.1rem;
}
.tour-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--t-text, #F4F2EC);
}
.tour-card__guide {
  font-size: 0.85rem;
  color: var(--t-text-soft, rgba(255,255,255,0.62));
}
.tour-card__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--t-text-soft, rgba(255,255,255,0.82));
}
.tour-card__star { color: var(--secondary, #E5B450); }
.tour-card__rating-num { font-weight: 600; }
.tour-card__rating-count { color: var(--t-text-faint, rgba(255,255,255,0.45)); }
.tour-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.45rem;
  gap: 0.5rem;
}
.tour-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.tour-card__price strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--t-text, #F4F2EC);
}
.tour-card__per {
  font-size: 0.8rem;
  color: var(--t-text-faint, rgba(255,255,255,0.5));
}
.tour-card__cta {
  font-size: 0.85rem;
  color: var(--secondary, #E5B450);
  font-weight: 600;
}

/* Tour detail */
.app-body .tour-detail { padding-bottom: 4rem; }
.tour-detail__hero {
  margin: 1.25rem 0 0;
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  background-color: #1A2438;
  border-radius: 14px;
}
.app-body .tour-detail__body { margin-top: 2rem; }
.app-body .tour-detail__note {
  color: var(--t-text-faint, rgba(255,255,255,0.55));
  font-size: 0.92rem;
  margin: 0.4rem 0 0;
}

/* Itinerary timeline */
.app-body .tour-itinerary {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.app-body .tour-itinerary::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 11px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(229,180,80,0.5), rgba(229,180,80,0.15));
  border-radius: 2px;
}
.tour-itinerary__day {
  position: relative;
  padding: 1.25rem 0 0.5rem 2.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary, #E5B450);
}
.tour-itinerary__day:first-child { padding-top: 0; }
.tour-itinerary__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.55rem 0 0.55rem 2.25rem;
  color: var(--t-text, #F4F2EC);
  font-size: 0.97rem;
  line-height: 1.5;
}
.tour-itinerary__dot {
  position: absolute;
  left: 4px;
  top: 0.95rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary, #E5B450);
  border: 3px solid var(--t-bg, #14181F);
  box-shadow: 0 0 0 1px rgba(229,180,80,0.5);
}
.tour-itinerary__time {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--secondary, #E5B450);
  min-width: 3.4rem;
  flex-shrink: 0;
  padding-top: 0.06rem;
}
.tour-itinerary__text {
  color: var(--t-text-soft, rgba(255,255,255,0.86));
}

/* Book widget — extra facts table */
.app-body .tour-book-widget__facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  border-top: 1px solid var(--t-card-border, rgba(255,255,255,0.08));
  border-bottom: 1px solid var(--t-card-border, rgba(255,255,255,0.08));
}
.tour-book-widget__facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--t-card-border, rgba(255,255,255,0.06));
}
.tour-book-widget__facts li:last-child { border-bottom: 0; }
.tour-book-widget__facts li span {
  color: var(--t-text-soft, rgba(255,255,255,0.6));
}
.tour-book-widget__facts li strong {
  color: var(--t-text, #F4F2EC);
  font-weight: 600;
}
.tour-book-widget__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0.85rem 0 0.85rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--t-card-border, rgba(255,255,255,0.08));
  font-size: 0.95rem;
}
.tour-book-widget__total span { color: var(--t-text-soft, rgba(255,255,255,0.7)); }
.tour-book-widget__total strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--t-text, #F4F2EC);
}

/* Tour confirm page */
.app-body .tour-confirm__code { color: var(--secondary, #E5B450); }
.tour-confirm__note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--t-text-faint, rgba(255,255,255,0.55));
  font-style: italic;
}

@media (max-width: 720px) {
  .app-body .tour-detail__body .stay-body { display: block; }
  .app-body .tour-detail__body .stay-body__aside { margin-top: 1.5rem; }
  .tour-detail__hero { aspect-ratio: 16 / 10; }
}

/* ==========================================================================
   Audio Guides v2 — QR-scan-driven listening experience
   ========================================================================== */

/* ---------- /app/audio (index) ---------- */
.audio-page-v2 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-block: 1rem 4rem;
}

.audio-v2-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #0A0F1A 0%, #1F3554 100%);
  color: #F4F2EC;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.audio-v2-hero::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,180,80,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.audio-v2-hero__eyebrow {
  font-family: 'JetBrains Mono', 'Geist Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #F0CB6C;
  margin: 0;
}
.audio-v2-hero__h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 500;
  margin: 0;
  color: #F4F2EC;
  line-height: 1.1;
}
.audio-v2-hero__lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(244, 242, 236, 0.78);
  max-width: 64ch;
}
.audio-v2-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.audio-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 12px;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.audio-v2-cta--primary {
  background: #E5B450;
  color: #0A0F1A;
  box-shadow: 0 8px 24px rgba(229,180,80,0.32);
}
.audio-v2-cta--primary:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(229,180,80,0.45);
}
.audio-v2-hero__or {
  color: rgba(244,242,236,0.6);
  font-style: italic;
  font-size: 0.92rem;
}

.audio-v2-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 500;
  margin: 0 0 1.2rem;
  color: var(--t-text, #14181F);
}

.audio-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.audio-guide-card {
  display: flex;
  flex-direction: column;
  background: var(--t-card-bg, #fff);
  border: 1px solid var(--t-card-border, rgba(20,24,31,0.08));
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.audio-guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(10,15,26,0.12);
  border-color: rgba(229,180,80,0.5);
}
.audio-guide-card__photo {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  text-decoration: none !important;
}
.audio-guide-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(10,15,26,0.78);
  color: #F4F2EC;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.audio-guide-card__unesco {
  position: absolute;
  top: 12px; right: 12px;
  background: #E5B450;
  color: #0A0F1A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.24rem 0.55rem;
  border-radius: 4px;
}
.audio-guide-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem 1.1rem 1.1rem;
}
.audio-guide-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}
.audio-guide-card__title a {
  color: var(--t-text, #14181F);
  text-decoration: none !important;
}
.audio-guide-card__title a:hover { color: #C92A37; }
.audio-guide-card__meta {
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--t-text-soft, #5C6878);
}
.audio-guide-card__meta strong { color: var(--t-text, #14181F); font-weight: 600; }
.audio-guide-card__langs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.audio-guide-card__lang {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  background: rgba(20,24,31,0.05);
  color: var(--t-text-soft, #5C6878);
  border: 1px solid var(--t-card-border, rgba(20,24,31,0.08));
}
.app-body[data-theme="dark"] .audio-guide-card__lang {
  background: rgba(255,255,255,0.05);
}
.audio-guide-card__lang.is-active {
  background: #E5B450;
  color: #0A0F1A;
  border-color: #E5B450;
}
.audio-guide-card__cta {
  align-self: flex-start;
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  background: var(--t-text, #14181F);
  color: var(--t-bg, #fff);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.audio-guide-card__cta:hover { background: #C92A37; }

.audio-v2-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  counter-reset: audio-step;
}
.audio-v2-how__step {
  background: var(--t-card-bg, #fff);
  border: 1px solid var(--t-card-border, rgba(20,24,31,0.08));
  border-radius: 14px;
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.audio-v2-how__num {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F0CB6C;
  color: #0A0F1A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50%;
}
.audio-v2-how__step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: var(--t-text, #14181F);
}
.audio-v2-how__step-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--t-text-soft, #5C6878);
}

/* ---------- /app/audio/{slug} (overview) ---------- */
.audio-show {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-block: 1rem 4rem;
}
.audio-show__crumb a {
  color: var(--t-text-soft, #5C6878);
  text-decoration: none;
  font-size: 0.9rem;
}
.audio-show__crumb a:hover { color: var(--t-text, #14181F); }

.audio-show__hero {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}
.audio-show__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.35) 0%, rgba(10,15,26,0.85) 80%);
}
.audio-show__hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.6rem 1.8rem;
  color: #F4F2EC;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 280px;
  justify-content: flex-end;
}
.audio-show__hero-eye {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #F0CB6C;
  margin: 0;
}
.audio-show__hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.05;
}
.audio-show__hero-meta {
  margin: 0;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  color: rgba(244,242,236,0.78);
}
.audio-show__hero-meta strong { color: #fff; }
.audio-show__cta {
  margin-top: 0.6rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: #E5B450;
  color: #0A0F1A !important;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(229,180,80,0.4);
  transition: transform 0.12s ease, background 0.15s ease;
}
.audio-show__cta:hover { background: #fff; transform: translateY(-1px); }

.audio-show__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 720px) {
  .audio-show__layout { grid-template-columns: 1fr; }
}
.audio-show__main, .audio-show__panel {
  background: var(--t-card-bg, #fff);
  border: 1px solid var(--t-card-border, rgba(20,24,31,0.08));
  border-radius: 14px;
  padding: 1.4rem;
}
.audio-show__h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--t-text, #14181F);
}
.audio-show__chapters {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.audio-show__chapter {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.9rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--t-divider, rgba(20,24,31,0.08));
}
.audio-show__chapter:last-child { border-bottom: none; }
.audio-show__chapter-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--t-text-faint, #8A95A4);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.audio-show__chapter-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
  color: var(--t-text, #14181F);
}
.audio-show__chapter-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--t-text-soft, #5C6878);
  font-family: 'JetBrains Mono', monospace;
}
.audio-show__side {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.audio-show__panel-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t-text-soft, #5C6878);
  margin: 0 0 0.7rem;
}
.audio-show__lang-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.audio-show__lang-chip {
  display: inline-flex;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  padding: 0.32rem 0.6rem;
  border-radius: 6px;
  background: rgba(20,24,31,0.05);
  color: var(--t-text-soft, #5C6878);
}
.app-body[data-theme="dark"] .audio-show__lang-chip { background: rgba(255,255,255,0.06); }
.audio-show__lang-chip.is-active {
  background: #E5B450;
  color: #0A0F1A;
}
.audio-show__lang-chip-name { font-weight: 500; }
.audio-show__offline-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: transparent;
  border: 1px dashed var(--t-card-border, rgba(20,24,31,0.18));
  border-radius: 10px;
  color: var(--t-text-soft, #5C6878);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  cursor: not-allowed;
  opacity: 0.7;
}
.audio-show__next-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--t-link, #1F3554);
  text-decoration: none;
}
.audio-show__next-link:hover { text-decoration: underline; }

/* ---------- /app/audio/play/{slug} (player) ---------- */
.audio-play {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-block: 1rem 4rem;
}
.audio-play__crumb a {
  color: var(--t-text-soft, #5C6878);
  text-decoration: none;
  font-size: 0.9rem;
}
.audio-play__crumb a:hover { color: var(--t-text, #14181F); }
.audio-play__hero {
  position: relative;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}
.audio-play__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.4) 0%, rgba(10,15,26,0.88) 90%);
}
.audio-play__hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.6rem 1.6rem;
  color: #F4F2EC;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 220px;
  justify-content: flex-end;
}
.audio-play__hero-eye {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #F0CB6C;
  margin: 0;
}
.audio-play__hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}
.audio-play__hero-narrator {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(244,242,236,0.7);
}
.audio-play__hero-chapter {
  margin: 0.4rem 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.92rem;
  color: #F0CB6C;
}
.audio-play__tts-warning {
  background: rgba(229,180,80,0.18);
  border-left: 3px solid #E5B450;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--t-text, #14181F);
}

.audio-player {
  position: sticky;
  top: 70px;
  z-index: 5;
  background: var(--t-card-bg, #fff);
  border: 1px solid var(--t-card-border, rgba(20,24,31,0.08));
  border-radius: 14px;
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 4px 16px rgba(10,15,26,0.06);
}
.audio-player__progress {
  height: 6px;
  background: rgba(20,24,31,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.app-body[data-theme="dark"] .audio-player__progress { background: rgba(255,255,255,0.08); }
.audio-player__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #E5B450 0%, #C92A37 100%);
  transition: width 0.2s linear;
}
.audio-player__time {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--t-text-soft, #5C6878);
}
.audio-player__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.audio-player__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(20,24,31,0.05);
  color: var(--t-text, #14181F);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease, transform 0.12s ease;
}
.app-body[data-theme="dark"] .audio-player__btn {
  background: rgba(255,255,255,0.08);
  color: var(--t-text, #F4F2EC);
}
.audio-player__btn:hover { background: rgba(229,180,80,0.25); }
.audio-player__btn--play {
  width: 64px; height: 64px;
  background: #E5B450;
  color: #0A0F1A;
  box-shadow: 0 6px 18px rgba(229,180,80,0.45);
}
.audio-player__btn--play:hover {
  background: #fff;
  transform: scale(1.05);
}
.audio-player__sliders {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.3rem;
}
.audio-player__slider {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--t-text-soft, #5C6878);
}
.audio-player__slider input[type="range"] {
  width: 110px;
}

.audio-play__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 820px) {
  .audio-play__layout { grid-template-columns: 1fr; }
  .audio-player { position: relative; top: auto; }
}

.audio-transcript, .audio-chapters-side {
  background: var(--t-card-bg, #fff);
  border: 1px solid var(--t-card-border, rgba(20,24,31,0.08));
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
}
.audio-play__h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--t-text, #14181F);
}
.audio-transcript__body {
  max-height: 520px;
  overflow-y: auto;
  line-height: 1.7;
  font-size: 1.02rem;
  color: var(--t-text, #14181F);
  padding-right: 0.4rem;
}
.audio-transcript__sent {
  display: inline;
  padding: 0.05rem 0.18rem;
  border-radius: 3px;
  transition: background 0.2s ease, color 0.2s ease;
}
.audio-transcript__active {
  background: #F0CB6C;
  color: #0A0F1A;
  font-weight: 500;
}

.audio-chapters-side__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.audio-chapters-side__item {
  border-bottom: 1px dashed var(--t-divider, rgba(20,24,31,0.08));
}
.audio-chapters-side__item:last-child { border-bottom: none; }
.audio-chapters-side__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem 0.4rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--t-text, #14181F);
  font-family: inherit;
  border-radius: 6px;
  transition: background 0.12s ease;
}
.audio-chapters-side__btn:hover { background: rgba(229,180,80,0.10); }
.audio-chapters-side__item.is-active .audio-chapters-side__btn {
  background: rgba(229,180,80,0.20);
}
.audio-chapters-side__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--t-text-faint, #8A95A4);
}
.audio-chapters-side__name {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
}
.audio-chapters-side__time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: var(--t-text-soft, #5C6878);
}

.audio-play__finish-band {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}
.audio-play__finish-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #3CA05A, #5CB58B);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(60,160,90,0.35);
  transition: transform 0.12s ease;
}
.audio-play__finish-btn:hover:not(:disabled) { transform: translateY(-1px); }
.audio-play__finish-btn:disabled { opacity: 0.65; cursor: default; }
.audio-play__finish-msg {
  margin: 0;
  font-size: 0.92rem;
  color: #15803D;
  font-weight: 500;
}
.app-body[data-theme="dark"] .audio-play__finish-msg { color: #5CB58B; }

/* ---------- /app/audio/scan ---------- */
.audio-scan {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-block: 1rem 4rem;
}
.audio-scan__hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #0A0F1A 0%, #1F3554 100%);
  color: #F4F2EC;
  border-radius: 18px;
  padding: 2rem 1.8rem;
}
@media (max-width: 720px) {
  .audio-scan__hero { grid-template-columns: 1fr; }
}
.audio-scan__hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.audio-scan__hero-eye {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #F0CB6C;
  margin: 0;
}
.audio-scan__hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  color: #F4F2EC;
}
.audio-scan__hero-lede {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(244,242,236,0.78);
  max-width: 50ch;
}

/* CSS phone illustration */
.audio-scan__phone {
  display: flex;
  justify-content: center;
}
.audio-scan__phone-frame {
  width: 200px;
  background: #1B2230;
  border: 6px solid #0A0F1A;
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  position: relative;
}
.audio-scan__phone-notch {
  width: 60px; height: 14px;
  background: #0A0F1A;
  border-radius: 0 0 12px 12px;
  margin: -14px auto 10px;
}
.audio-scan__phone-screen {
  background: #14181F;
  border-radius: 16px;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
}
.audio-scan__viewfinder {
  position: absolute;
  inset: 16%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audio-scan__corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 3px solid #E5B450;
}
.audio-scan__corner--tl { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.audio-scan__corner--tr { top: -6px; right: -6px; border-left: none; border-bottom: none; }
.audio-scan__corner--bl { bottom: -6px; left: -6px; border-right: none; border-top: none; }
.audio-scan__corner--br { bottom: -6px; right: -6px; border-left: none; border-top: none; }
.audio-scan__qr {
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff;
  padding: 6px;
}

.audio-scan__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}
.audio-scan__step {
  background: var(--t-card-bg, #fff);
  border: 1px solid var(--t-card-border, rgba(20,24,31,0.08));
  border-radius: 12px;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  color: var(--t-text, #14181F);
}
.audio-scan__step-num {
  width: 32px; height: 32px;
  background: #E5B450;
  color: #0A0F1A;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  flex-shrink: 0;
}

.audio-scan__h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
  color: var(--t-text, #14181F);
}
.audio-scan__demo-lede, .audio-scan__staff-lede {
  margin: 0 0 1rem;
  color: var(--t-text-soft, #5C6878);
  font-size: 0.95rem;
}
.audio-scan__demo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.7rem;
}
.audio-scan__demo-item {
  background: var(--t-card-bg, #fff);
  border: 1px solid var(--t-card-border, rgba(20,24,31,0.08));
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.12s ease;
}
.audio-scan__demo-item:hover {
  border-color: rgba(229,180,80,0.5);
  transform: translateY(-2px);
}
.audio-scan__demo-link {
  flex: 1;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  text-decoration: none !important;
  color: var(--t-text, #14181F);
}
.audio-scan__demo-photo {
  width: 60px; height: 60px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.audio-scan__demo-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.audio-scan__demo-info strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--t-text, #14181F);
}
.audio-scan__demo-info span {
  font-size: 0.82rem;
  color: var(--t-text-soft, #5C6878);
  font-family: 'JetBrains Mono', monospace;
}
.audio-scan__demo-arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--t-text-soft, #5C6878);
  font-weight: 600;
}
.audio-scan__demo-print {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  border-left: 1px solid var(--t-card-border, rgba(20,24,31,0.08));
  color: var(--t-text-soft, #5C6878);
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}
.audio-scan__demo-print:hover {
  background: rgba(229,180,80,0.12);
  color: var(--t-text, #14181F);
}

.audio-scan__staff {
  background: var(--t-card-bg, #fff);
  border: 1px dashed var(--t-card-border, rgba(20,24,31,0.18));
  border-radius: 12px;
  padding: 1.4rem;
}

/* ---------- /app/audio/qr/{slug} (printable QR) ---------- */
.audio-qr-page {
  padding-block: 1rem 4rem;
}
.audio-qr-page__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.audio-qr-page__back {
  color: var(--t-text-soft, #5C6878);
  text-decoration: none;
  font-size: 0.9rem;
}
.audio-qr-page__print {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--t-text, #14181F);
  color: var(--t-bg, #fff);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.audio-qr-poster {
  background: #fff;
  color: #0A0F1A;
  border: 1px solid #ECE7DC;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  box-shadow: 0 12px 40px rgba(10,15,26,0.12);
}
.audio-qr-poster__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.audio-qr-poster__eye {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: #A97142;
  margin: 0;
}
.audio-qr-poster__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0;
  color: #0A0F1A;
  line-height: 1.1;
}
.audio-qr-poster__tagline {
  margin: 0;
  font-size: 1.05rem;
  color: #5C6878;
  max-width: 38ch;
}
.audio-qr-page__svg, .audio-qr-poster__svg {
  width: 320px;
  height: 320px;
  background: #fff;
  padding: 16px;
  border: 1px solid #ECE7DC;
  border-radius: 10px;
}
.audio-qr-poster__svg svg { display: block; width: 100%; height: 100%; }
.audio-qr-poster__langs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  font-size: 0.86rem;
  color: #5C6878;
  width: 100%;
  max-width: 380px;
}
.audio-qr-poster__langs strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  background: #FAF7F0;
  border: 1px solid #ECE7DC;
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  margin-right: 0.4rem;
  color: #0A0F1A;
}
.audio-qr-poster__foot {
  text-align: center;
  font-size: 0.82rem;
  color: #5C6878;
}
.audio-qr-poster__foot p { margin: 0.15rem 0; }
.audio-qr-poster__url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  word-break: break-all;
  color: #8A95A4;
}

@media print {
  body, .app-body { background: #fff !important; color: #0A0F1A !important; }
  .app-header, .app-nav, .audio-qr-page__toolbar, .no-print { display: none !important; }
  .app-shell { box-shadow: none !important; }
  .audio-qr-page { padding: 0 !important; }
  .audio-qr-poster {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    max-width: none;
    width: 100%;
  }
  .audio-qr-page__svg, .audio-qr-poster__svg {
    width: 460px;
    height: 460px;
  }
}
