/* ═══ Travel With a Buddy — Midnight Magazine ═══ */

/* ─── TOKENS ─── */
:root {
  --void: #080706;
  --deep: #111008;
  --charcoal: #1E1B14;
  --tobacco: #2E2718;
  --parchment: #F2EDE0;
  --aged: #E8E0CC;
  --linen: #D4C9B0;
  --dust: #A89878;
  --gold: #C8A84B;
  --gold-light: #E2C46A;
  --gold-dim: #8A7030;
  --gold-glow: rgba(200,168,75,0.12);
  --white: #FDFCF8;
  --page-bg: #F2EDE0;
  --ink: var(--parchment);
  --mid: rgba(242,237,224,0.45);
  --light: rgba(242,237,224,0.3);
  --primary: var(--gold);
  --cream: #F2EDE0;
  --sand: rgba(242,237,224,0.12);
  --border: rgba(242,237,224,0.08);
  --surface: var(--charcoal);
  --surface-2: var(--tobacco);
  --text-primary: var(--parchment);
  --text-secondary: rgba(242,237,224,0.55);
  --text-muted: rgba(242,237,224,0.35);
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', 'Helvetica Neue', sans-serif;
  --caps: 'Bebas Neue', sans-serif;
  --font-display: var(--display);
  --font-body: var(--sans);
  --font-mono: 'DM Mono', monospace;
  --radius: 4px;
  --radius-lg: 8px;
  --max-width: 1280px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-base: 0.3s;
  --duration-slow: 0.6s;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--parchment);
  background: var(--void);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: auto !important;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; }

/* ─── UTILITIES ─── */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.no-print { }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 6vw; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--gold);
  color: var(--void);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 999999;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 99999;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ─── PAGE NAV BAR ─── */
#page-nav-bar {
  position: fixed;
  top: 68px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  z-index: 8999;
  opacity: 0;
  pointer-events: none;
  transition: width 0.3s ease, opacity 0.2s ease;
}
#page-nav-bar.pnb-sweep { width: 100%; opacity: 1; transition: width 0.3s ease; }
#page-nav-bar.pnb-fade { width: 100%; opacity: 0; transition: opacity 0.2s ease; }

/* ─── APP SPLASH ─── */
#app-splash {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease;
}
#app-splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.twab-logo--splash {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--parchment);
}
.twab-logo--splash em { font-style: italic; color: var(--gold); }
.splash-spinner {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(200,168,75,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.splash-tagline {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.3);
}

/* ─── SITE CURTAIN ─── */
#site-curtain {
  position: fixed;
  inset: 0;
  background: #080706;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  pointer-events: none;
  transition: transform 1.4s cubic-bezier(0.76, 0, 0.24, 1);
}
#site-curtain.lifting { transform: translateY(-100%); }
#site-curtain.gone { display: none; }
.curtain-logo {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #F0EBE0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.curtain-logo em { font-style: italic; color: var(--gold); }
#site-curtain.ready .curtain-logo { opacity: 1; transform: translateY(0); }
.curtain-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: width 1.2s ease 0.6s, opacity 0.4s ease 0.6s;
}
#site-curtain.ready .curtain-line { width: 80px; opacity: 1; }
.curtain-tagline {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.4);
  opacity: 0;
  transition: opacity 0.8s ease 1s;
}
#site-curtain.ready .curtain-tagline { opacity: 1; }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.12);
  color: var(--parchment);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  z-index: 99990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  max-width: 380px;
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast.err { border-left: 3px solid #dc2626; }
.toast.ok { border-left: 3px solid var(--gold); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  z-index: 99980;
  max-width: 500px;
  width: calc(100% - 40px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner p { font-size: 0.84rem; color: rgba(242,237,224,0.65); line-height: 1.6; margin-bottom: 14px; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-accept {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--void);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-more {
  padding: 9px 18px;
  background: transparent;
  color: rgba(242,237,224,0.5);
  border: 1px solid rgba(242,237,224,0.15);
  border-radius: var(--radius);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-cookie-more:hover { color: var(--parchment); border-color: rgba(242,237,224,0.35); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: 68px;
  background: rgba(8,7,6,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(200,168,75,0.1);
  transition: background var(--duration-slow) var(--ease), border-color var(--duration-slow) var(--ease);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo, .twab-logo {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--parchment);
  cursor: pointer;
  user-select: none;
}
.nav-logo em, .twab-logo em { font-style: italic; color: var(--gold); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(242,237,224,0.5);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s;
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.5;
}
.nav-link:hover { color: var(--parchment); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 8px 18px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 8px;
}
.nav-btn:hover { background: var(--gold); color: var(--void); }
.nav-burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--parchment);
}
.nav-burger svg { width: 22px; height: 22px; fill: none; stroke-width: 1.5; }
.nav-avatar-wrap { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Mobile nav */
.nav-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,7,6,0.65);
  z-index: 99989;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-mobile-backdrop.open { display: block; opacity: 1; }
.nav-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #FAFAF8;
  border-right: 1px solid rgba(8,7,6,0.08);
  z-index: 99990;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
}
.nav-mobile-panel.open { transform: translateX(0); }
.nav-mobile-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(8,7,6,0.08);
  margin-bottom: 8px;
}
.mobile-nav-logo { font-size: 1rem; color: rgba(8,7,6,0.85); }
.mobile-nav-logo em { color: var(--gold-dim); }
.mobile-nav-close {
  font-size: 1.4rem;
  color: rgba(8,7,6,0.35);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: rgba(8,7,6,0.8); }
.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 13px 24px;
  font-size: 0.88rem;
  color: rgba(8,7,6,0.65);
  border-radius: 0;
  min-height: 44px;
}
.mobile-nav-link:hover { color: rgba(8,7,6,0.9); background: rgba(8,7,6,0.04); }
.mobile-nav-footer {
  margin-top: auto;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(8,7,6,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ─── PAGE STRUCTURE ─── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; min-height: 100vh; }

/* ─── REVEAL SYSTEM ─── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s cubic-bezier(0,0,0.2,1), transform 1s cubic-bezier(0,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 0ms; }
.reveal:nth-child(2) { transition-delay: 120ms; }
.reveal:nth-child(3) { transition-delay: 240ms; }
.reveal:nth-child(4) { transition-delay: 360ms; }

/* ─── HERO ─── */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10vh;
  overflow: hidden;
  background: var(--void);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.7) saturate(1.1);
  transform: scale(1.04);
  transition: transform 12s ease;
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(8,7,6,0.92) 0%,
      rgba(8,7,6,0.6) 40%,
      rgba(8,7,6,0.2) 70%,
      rgba(8,7,6,0.4) 100%),
    linear-gradient(to top,
      rgba(8,7,6,0.8) 0%,
      transparent 50%);
}
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-content-v2 {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 800px;
}
.hero-eyebrow-v2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow-v2::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-h1-v2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--parchment);
  margin: 0 0 32px;
}
.hero-line { display: block; overflow: hidden; }
.hero-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-line-inner.revealed { transform: translateY(0); }
.hero-line:nth-child(1) .hero-line-inner { transition-delay: 0ms; }
.hero-line:nth-child(2) .hero-line-inner { transition-delay: 120ms; }
.hero-line:nth-child(3) .hero-line-inner { transition-delay: 240ms; }
.hero-line--accent .hero-line-inner { color: var(--gold-light); font-style: italic; }
.hero-sub-v2 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(242,237,224,0.55);
  max-width: 400px;
  margin: 0 0 48px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}
.hero-sub-v2.revealed { opacity: 1; transform: translateY(0); }
.hero-cta-v2 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 0.7s, transform 0.9s ease 0.7s;
}
.hero-cta-v2.revealed { opacity: 1; transform: translateY(0); }
.btn-hero-primary {
  padding: 16px 40px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,168,75,0.3);
}
.btn-hero-ghost {
  padding: 15px 40px;
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(242,237,224,0.25);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.btn-hero-ghost:hover {
  border-color: rgba(242,237,224,0.6);
  background: rgba(242,237,224,0.06);
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  opacity: 0;
  animation: fade-in 1s ease 1.6s forwards;
}
@keyframes fade-in { to { opacity: 1; } }
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.hero-scroll-hint span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.35);
}
.hero-floating-pins {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.float-pin {
  position: absolute;
  background: rgba(8,7,6,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 40px;
  padding: 10px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  gap: 10px;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  animation: float-bob 7s ease-in-out infinite;
}
.float-pin:nth-child(2) { animation-delay: -2.5s; }
.float-pin:nth-child(3) { animation-delay: -5s; }
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fp-city { font-family: var(--sans); font-size: 0.78rem; color: var(--parchment); font-weight: 500; }
.fp-price { font-family: var(--sans); font-size: 0.78rem; color: var(--gold); font-weight: 700; }

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}
.marquee-track-wrap {
  display: flex;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  animation: marquee-slide 28s linear infinite;
}
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-inner { animation-play-state: paused; }
.marquee-inner span {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--void);
  white-space: nowrap;
  padding: 0 24px;
}
.mq-dot { opacity: 0.4; padding: 0 4px !important; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--deep);
  border-bottom: 1px solid rgba(200,168,75,0.08);
  padding: 14px 6vw;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.35);
  gap: 12px;
}
.tb-sep { color: rgba(200,168,75,0.3); }

/* ─── SEARCH SECTION ─── */
.search-section {
  background: var(--deep);
  border-top: 1px solid rgba(200,168,75,0.1);
  padding: 72px 0;
}
.search-section-headline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--parchment);
  margin-bottom: 32px;
  text-align: center;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(242,237,224,0.07);
  border: 1px solid rgba(242,237,224,0.14);
  border-radius: var(--radius);
  padding: 6px 8px 6px 16px;
  max-width: 680px;
  margin: 0 auto 20px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.search-bar:focus-within {
  border-color: rgba(200,168,75,0.5);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.08);
  background: rgba(242,237,224,0.09);
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--parchment);
  padding: 12px 4px;
}
.search-bar input::placeholder { color: rgba(242,237,224,0.35); }
.search-go {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.search-go:hover { background: var(--gold-light); }
.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}
.chip {
  padding: 7px 16px;
  background: transparent;
  border: 1px solid rgba(242,237,224,0.1);
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(242,237,224,0.5);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.chip:hover, .chip.active {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
  transform: scale(1.04);
}

/* ─── HOW IT WORKS ─── */
.how-v2 {
  background: var(--charcoal);
  padding: 96px 0;
}
.how-v2-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6vw;
}
.section-label-v2, .section-eyebrow, .s-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.s-label-light { color: rgba(242,237,224,0.5); }
.sl-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.how-v2-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--parchment);
  margin-bottom: 24px;
}
.how-v2-title em { font-style: italic; color: var(--gold); }
.how-v2-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 56px;
}
.how-steps-v2 {
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.how-step-v2 {
  flex: 1;
  padding: 0 32px 0 0;
}
.how-divider-v2 {
  width: 1px;
  height: 140px;
  background: rgba(242,237,224,0.08);
  flex-shrink: 0;
  margin-top: 20px;
}
.hs-num {
  font-family: var(--caps);
  font-size: 6rem;
  line-height: 1;
  color: rgba(242,237,224,0.06);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hs-body h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.hs-body p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(242,237,224,0.72);
  line-height: 1.75;
}

/* ─── SECTION COMMONS ─── */
.section { padding: 80px 0; }
.s-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--parchment);
  margin-bottom: 16px;
}
.s-sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(242,237,224,0.45);
  line-height: 1.7;
  max-width: 560px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.25);
}
.save-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.save-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,151,63,0.25); }
.logout-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
  color: rgba(242,237,224,0.5);
  border: 1px solid rgba(242,237,224,0.15);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.logout-btn:hover { color: var(--parchment); border-color: rgba(242,237,224,0.35); }
.empty-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.empty-cta:hover { background: var(--gold-light); }

/* ─── EXPERT CARDS ─── */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.expert-card, .exp-card-v2 {
  background: var(--deep);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.expert-card:hover, .exp-card-v2:hover {
  border-color: rgba(200,168,75,0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.ec-img-wrap, .exp-card-v2-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--charcoal);
}
.ec-img-wrap::after, .exp-card-v2-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,0.95) 0%, rgba(8,7,6,0.4) 55%, transparent 100%);
}
/* ec-img as image */
.ec-img-wrap img, .exp-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
/* ec-img as container div (JS-generated expert cards) */
.expert-card .ec-img {
  position: relative;
  width: 100%;
  padding-top: 145%;
  overflow: hidden;
  background: var(--charcoal);
}
.expert-card .ec-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.expert-card:hover .ec-img > img { transform: scale(1.04); }
.ec-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,0.92) 0%, rgba(8,7,6,0.35) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.ec-img-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(242,237,224,0.04) 1px, transparent 0);
  background-size: 20px 20px;
  z-index: 0;
}
.ec-img-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
}
.ec-loc {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.45);
}
.ec-img, .exp-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.expert-card:hover .ec-img, .exp-card-v2:hover .exp-card-v2-img img { transform: scale(1.05); }
.ec-initials, .exp-card-v2-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 4rem;
  font-style: italic;
  color: rgba(242,237,224,0.1);
  z-index: 0;
}
.ec-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 1;
}
.ec-name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 2px;
}
.ec-city, .exp-card-v2-loc {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.45);
}
.ec-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(200,168,75,0.12);
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.25);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 600;
  z-index: 5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ec-online {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #16a34a;
  color: #fff;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 500;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ec-body, .exp-card-v2-body {
  padding: 18px 20px;
  background: var(--deep);
}
.ec-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: rgba(242,237,224,0.55);
  font-family: var(--sans);
}
.ec-stars { color: var(--gold); font-size: 0.72rem; letter-spacing: 1px; }
.ec-tags, .exp-card-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.ec-tag, .exp-card-v2-tag {
  background: rgba(242,237,224,0.05);
  color: rgba(242,237,224,0.4);
  border: 1px solid rgba(242,237,224,0.08);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}
.ec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.ec-price {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold);
}
.ec-book-btn {
  padding: 8px 18px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.ec-book-btn:hover { background: var(--gold-light); }

/* ─── EXPERT CARD V2 — MISSING OVERLAY + META STYLES ─── */
.exp-card-v2-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.exp-card-v2-img-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  z-index: 3;
}
.exp-card-v2-name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 2px;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.exp-card-v2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  gap: 8px;
}
.exp-card-v2-price {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold);
}
.exp-card-v2-book {
  padding: 8px 18px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.exp-card-v2-book:hover { background: var(--gold-light); }
.ec-hover-reveal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(200,168,75,0.92);
  color: var(--void);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 4;
  pointer-events: none;
  white-space: nowrap;
}
.exp-card-v2:hover .ec-hover-reveal { opacity: 1; }

/* Expert marquee */
.experts-marquee-section {
  background: var(--void);
  padding-bottom: 60px;
}
.exp-marquee-wrap {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 6vw 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.exp-marquee-wrap::-webkit-scrollbar { display: none; }
.exp-marquee-wrap .exp-card-v2 {
  flex-shrink: 0;
  width: 260px;
}

/* Expert card skeleton */
.expert-card-skel {
  background: var(--deep);
  border: 1px solid rgba(242,237,224,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.skel-img { height: 220px; background: linear-gradient(90deg, var(--charcoal) 0%, rgba(242,237,224,0.06) 50%, var(--charcoal) 100%); background-size: 200% 100%; animation: skel-shimmer 1.2s ease infinite; }
.skel-body { padding: 18px 20px; }
.skel-line { height: 12px; border-radius: 3px; background: var(--charcoal); margin-bottom: 10px; }
@keyframes skel-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.twab-stagger-visible { animation: cardStaggerIn 0.5s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes cardStaggerIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* ─── FEATURED SECTION ─── */
.featured-home-v2 { background: var(--void); }

/* ─── CITY GRID ─── */
.city-popular-home { background: var(--void); }
.city-popular-home__title { margin-bottom: 8px; }
.city-popular-home__sub { margin-bottom: 40px; }
.city-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--void);
  margin-top: 40px;
}
.city-card-v2 {
  position: relative;
  height: 460px;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}
.city-card-v2-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.city-card-v2:hover .city-card-v2-bg { transform: scale(1.06); }
.city-card-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,0.9) 0%, rgba(8,7,6,0.2) 55%, transparent 100%);
  transition: background 0.4s ease;
}
.city-card-v2:hover .city-card-v2-overlay {
  background: linear-gradient(to top, rgba(8,7,6,0.95) 0%, rgba(8,7,6,0.35) 60%, rgba(8,7,6,0.1) 100%);
}
.city-expert-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--caps);
  font-size: 5rem;
  line-height: 1;
  color: rgba(242,237,224,0.06);
  z-index: 1;
  user-select: none;
}
.city-card-v2-experts {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(8,7,6,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,168,75,0.2);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}
.city-card-v2:hover .city-card-v2-experts { opacity: 1; transform: translateY(0); }
.city-card-v2-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.city-card-v2-name {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--parchment);
  letter-spacing: -0.02em;
}
.city-card-v2-country {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.4);
  margin-top: 4px;
}
.city-card-v2-edit {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,151,63,0.6);
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.city-card-v2:hover .city-card-v2-edit {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TRENDING ─── */
.trending-home-v2 {
  background: var(--deep);
  padding: 60px 0;
}
.trending-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ─── TESTIMONIALS ─── */
.testimonials-v2 {
  background: var(--void);
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}
.testi-track-outer {
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 20px;
  padding: 0 6vw 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card, .testi-card-v2 {
  flex-shrink: 0;
  width: min(360px, 80vw);
  background: rgba(242,237,224,0.03);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}
.testi-card:hover, .testi-card-v2:hover {
  border-color: rgba(200,168,75,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.28);
}
.testi-quote-icon {
  font-family: var(--display);
  font-size: 6rem;
  line-height: 0.7;
  color: rgba(200,168,75,0.12);
  margin-bottom: 16px;
  user-select: none;
  font-style: italic;
}
.testi-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}
.testi-quote-mark {
  font-family: var(--display);
  font-size: 8rem;
  line-height: 0.7;
  color: rgba(200,168,75,0.1);
  margin-bottom: 16px;
  user-select: none;
}
.testi-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(242,237,224,0.8);
  margin-bottom: 20px;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--parchment);
  flex-shrink: 0;
}
.testi-name { font-family: var(--sans); font-size: 0.82rem; color: var(--parchment); font-weight: 500; }
.testi-sep { color: rgba(242,237,224,0.2); }
.testi-city { font-family: var(--sans); font-size: 0.75rem; color: rgba(242,237,224,0.35); }
.testi-expert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.2);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  font-family: var(--sans);
}
.testi-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.05em; margin-bottom: 14px; display: block; }
.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(110,231,183,0.8);
  background: rgba(110,231,183,0.06);
  border: 1px solid rgba(110,231,183,0.15);
  padding: 2px 8px;
  border-radius: 2px;
  margin-top: 6px;
  font-family: var(--sans);
}
.testi-verified::before { content: '✓'; font-size: 0.65rem; }

/* ─── NEWSLETTER ─── */
.newsletter-home-v2 {
  background: var(--charcoal);
  padding: 80px 0;
  border-top: 1px solid rgba(200,168,75,0.1);
}

/* ─── FOOTER ─── */
.footer-v2 {
  background: var(--void);
  border-top: 1px solid rgba(200,168,75,0.12);
  padding: 64px 6vw 32px;
}
.footer-v2-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-v2 {}
.twab-logo--light { color: var(--parchment); }
.twab-logo--footer {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--parchment);
  margin-bottom: 16px;
  display: inline-block;
}
.twab-logo--footer em { font-style: italic; color: var(--gold); }
.footer-brand-v2 p {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(242,237,224,0.35);
  max-width: 280px;
}
.footer-col-v2 h4 {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.2);
  margin-bottom: 16px;
}
.footer-col-v2 button {
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(242,237,224,0.4);
  padding: 5px 0;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s, padding-left 0.2s;
  text-align: left;
}
.footer-col-v2 button:hover { color: var(--parchment); padding-left: 5px; }
.footer-v2-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(242,237,224,0.06);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(242,237,224,0.2);
}

/* ─── BACK TO TOP ─── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--deep);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 50%;
  color: rgba(242,237,224,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s, color 0.2s;
  z-index: 9000;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { border-color: var(--gold); color: var(--gold); }

/* ─── INNER PAGES ─── */
.page-static {
  padding-top: 96px;
  min-height: 100vh;
  padding-bottom: 60px;
  background: var(--deep);
}
.page-static h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--parchment);
  margin-bottom: 32px;
  line-height: 1.2;
}
.legal-page .prose, .page-static .prose { color: rgba(242,237,224,0.55); max-width: 800px; }
.legal-page .prose h2, .page-static .prose h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--parchment);
  margin: 32px 0 12px;
}
.legal-page .prose p, .page-static .prose p { margin-bottom: 16px; line-height: 1.75; font-size: 0.92rem; }
.legal-page .prose ul { margin: 12px 0 12px 1.25rem; }
.legal-page .prose li { margin-bottom: 8px; font-size: 0.92rem; line-height: 1.75; }
.legal-page .prose a, .page-static .prose a { color: var(--gold); }
.legal-muted { font-size: 0.8rem; color: rgba(242,237,224,0.25); margin-top: 28px; }
.section-eyebrow { display: flex; }

/* ─── EXPLORE PAGE ─── */
.explore-page-hero {
  padding-top: 68px;
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  min-height: 280px;
}
.explore-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325?w=1600&q=80');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.35) saturate(0.7);
  transform: scale(1.02);
}
.explore-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,7,6,0.4) 0%, rgba(8,7,6,0.7) 100%), linear-gradient(100deg, rgba(8,7,6,0.5) 0%, transparent 60%); }
#explore-count { font-size: 0.8rem; color: rgba(242,237,224,0.4); font-family: var(--sans); }

/* ─── ADVISOR PAGE ─── */
.advisor-hero {
  padding: 140px 6vw 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--void);
}
.advisor-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.2) saturate(0.5);
}
.advisor-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,7,6,0.65) 0%, rgba(8,7,6,0.85) 100%); }
.advisor-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--parchment);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  line-height: 1.15;
}
.advisor-hero p {
  font-size: 1rem;
  color: rgba(242,237,224,0.5);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  padding: 60px 6vw;
  max-width: var(--max-width);
  margin: 0 auto;
}
.benefit {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit:hover { border-color: rgba(196,151,63,0.18); transform: translateY(-2px); }
.b-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.b-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.benefit h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--parchment);
  margin-bottom: 8px;
}
.benefit p { font-size: 0.88rem; color: rgba(242,237,224,0.45); line-height: 1.7; }

/* ─── EARNINGS CALCULATOR ─── */
.earn-calc-section {
  background: var(--charcoal);
  padding: 80px 0;
  border-top: 1px solid rgba(242,237,224,0.06);
}
.earn-calc-inner {
  max-width: 640px;
  margin: 0 auto;
}
.earn-calc-controls {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 48px;
}
.earn-calc-control { display: flex; flex-direction: column; gap: 12px; }
.earn-calc-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.45);
}
.earn-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.earn-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: rgba(242,237,224,0.1);
  border-radius: 1px;
  outline: none;
  cursor: pointer;
}
.earn-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
}
.earn-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
}
.earn-slider-val {
  font-family: var(--caps);
  font-size: 1.8rem;
  color: var(--gold);
  min-width: 32px;
  text-align: right;
}
.earn-rate-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.earn-rate-btn {
  padding: 10px 20px;
  background: transparent;
  color: rgba(242,237,224,0.45);
  border: 1px solid rgba(242,237,224,0.12);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.earn-rate-btn:hover { border-color: rgba(200,168,75,0.35); color: var(--parchment); }
.earn-rate-btn--active {
  background: rgba(200,168,75,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.earn-result {
  text-align: center;
  padding: 40px 32px;
  background: rgba(242,237,224,0.03);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}
.earn-result:hover { border-color: rgba(200,168,75,0.25); }
.earn-result-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.4);
  margin-bottom: 12px;
}
.earn-result-number {
  font-family: var(--caps);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.earn-result-note {
  font-size: 0.8rem;
  color: rgba(242,237,224,0.3);
  line-height: 1.5;
}

/* ─── HOW PAGE ─── */
.how-hero {
  padding: 120px 6vw 60px;
  background: var(--charcoal);
}
.how-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--parchment);
  margin: 8px 0 14px;
}
.how-hero p { font-size: 0.95rem; color: rgba(242,237,224,0.5); max-width: 540px; line-height: 1.7; }
.how-steps-section { padding: 60px 0; background: var(--deep); }
.section-alt { background: var(--deep); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.step {
  position: relative;
  padding: 32px 24px;
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.step:hover {
  border-color: rgba(196,151,63,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.step-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.step-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.step-num {
  font-family: var(--caps);
  font-size: 4rem;
  color: rgba(242,237,224,0.06);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--parchment);
  margin-bottom: 8px;
}
.step p { font-size: 0.88rem; color: rgba(242,237,224,0.45); line-height: 1.7; }
.faq-section { padding: 60px 0; background: var(--void); }
.faq-list { max-width: 680px; margin: 32px auto 0; }
.faq-item { border-bottom: 1px solid rgba(242,237,224,0.08); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--parchment);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q span { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; display: inline-block; transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 0.88rem;
  color: rgba(242,237,224,0.65);
  line-height: 1.7;
}
.faq-a.open, .faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q span { transform: rotate(45deg); display: inline-block; }
.how-cta {
  padding: 60px;
  text-align: center;
  background: var(--deep);
  border-top: 1px solid rgba(242,237,224,0.06);
}

/* ─── CITY PAGE ─── */
.city-hero {
  padding: 120px 6vw 60px;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(196,151,63,0.1);
  position: relative;
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(196,151,63,0.4), transparent);
}
.city-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--parchment);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.city-hero p { color: rgba(242,237,224,0.5); margin-top: 14px; font-size: 0.92rem; line-height: 1.7; max-width: 560px; }
.city-tips {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
}
.city-tips h3 { font-family: var(--display); font-size: 1.1rem; color: var(--parchment); margin-bottom: 14px; font-weight: 400; letter-spacing: 0.01em; }
.city-tips ul { list-style: none; padding: 0; }
.city-tips li { font-size: 0.88rem; color: rgba(242,237,224,0.5); margin-bottom: 10px; line-height: 1.65; padding-left: 16px; position: relative; }
.city-tips li::before { content: '✦'; position: absolute; left: 0; color: rgba(196,151,63,0.4); font-size: 0.55rem; top: 5px; }

/* ─── GUIDES / ASK PAGES ─── */
.guides-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.guide-card {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.guide-card:hover {
  border-color: rgba(196,151,63,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.guide-card:hover { border-color: rgba(200,168,75,0.25); transform: translateY(-4px); }
.guide-card-city {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.guide-card-title { font-family: var(--display); font-size: 1.1rem; color: var(--parchment); margin-bottom: 10px; }
.guide-card-ex { font-size: 0.86rem; color: rgba(242,237,224,0.4); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.guide-card-meta { font-size: 0.75rem; color: rgba(242,237,224,0.25); margin-top: 14px; }
.guide-modal-body { max-height: 70vh; overflow-y: auto; white-space: pre-wrap; font-size: 0.92rem; line-height: 1.75; color: rgba(242,237,224,0.55); }
.guide-card-page {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.guide-card-page:hover {
  border-color: rgba(196,151,63,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.ask-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ask-feed { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.ask-card {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.ask-card:hover {
  border-color: rgba(196,151,63,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.ask-city { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-family: var(--sans); }
.ask-question { font-family: var(--display); font-size: 1rem; color: var(--parchment); margin-bottom: 8px; }
.ask-meta { font-size: 0.75rem; color: rgba(242,237,224,0.3); }
.ask-answers { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(242,237,224,0.07); }

/* ─── EMPTY STATE ─── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-icon-wrap { display: flex; justify-content: center; margin-bottom: 18px; }
.empty-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; line-height: 1; }
.empty-icon svg { width: 48px; height: 48px; stroke: rgba(196,151,63,0.45); fill: none; stroke-width: 1.5; }
.empty-title { font-family: var(--display); font-size: 1.3rem; color: var(--parchment); margin-bottom: 10px; font-weight: 400; }

/* ─── SPINNER ─── */
.spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(200,168,75,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto;
}

/* ─── DASHBOARD ─── */
#page-dashboard { background: var(--deep); padding-top: 68px; }
.dash-wrap { max-width: var(--max-width); margin: 0 auto; padding: 40px 6vw 60px; }
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.dash-top h1 { font-family: var(--display); font-size: 2rem; font-weight: 300; color: var(--parchment); }
.dash-mobile-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(242,237,224,0.5);
  cursor: pointer;
  margin-bottom: 16px;
}
.dash-layout, .dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.dash-card {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.d-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.8rem;
  margin-bottom: 14px;
  border: 2px solid rgba(196,151,63,0.25);
  box-shadow: 0 0 0 4px rgba(196,151,63,0.06);
}
.d-name { font-family: var(--display); font-size: 1.25rem; color: var(--parchment); margin-bottom: 4px; font-weight: 400; }
.d-badge { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; background: var(--gold-glow); border: 1px solid rgba(200,168,75,0.2); padding: 3px 9px; border-radius: 3px; display: inline-block; margin-bottom: 8px; }
.d-email { font-size: 0.78rem; color: rgba(242,237,224,0.35); line-height: 1.5; }
.d-uid { font-size: 0.65rem; color: rgba(242,237,224,0.18); margin-top: 4px; }
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  font-size: 0.84rem;
  color: rgba(242,237,224,0.45);
  background: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  position: relative;
}
.dash-nav-item svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.dash-nav-item:hover { background: rgba(242,237,224,0.04); color: rgba(242,237,224,0.75); }
.dash-nav-item.active {
  background: rgba(196,151,63,0.08);
  color: var(--gold);
  border-color: rgba(196,151,63,0.2);
}
.dash-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.dash-section { display: none; }
.dash-section.active { display: block; }
.dash-section-title {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--parchment);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242,237,224,0.07);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ─── BOOKING ITEM CARDS (dashboard) ─── */
.booking-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--deep);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.18s;
}
.booking-item:hover { border-color: rgba(242,237,224,0.12); }
.bi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196,151,63,0.12);
  border: 1.5px solid rgba(196,151,63,0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1rem;
  flex-shrink: 0;
}
.bi-info { flex: 1; min-width: 0; }
.bi-name { font-family: var(--display); font-size: 0.98rem; color: var(--parchment); font-weight: 400; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bi-meta { font-size: 0.76rem; color: rgba(242,237,224,0.38); line-height: 1.5; }
.bi-status {
  font-size: 0.68rem;
  font-family: var(--sans);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  flex-shrink: 0;
}
.status-confirmed { background: rgba(110,231,183,0.1); color: #6ee7b7; border: 1px solid rgba(110,231,183,0.2); }
.status-pending { background: rgba(245,158,11,0.1); color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }
.status-declined { background: rgba(239,68,68,0.08); color: #f87171; border: 1px solid rgba(239,68,68,0.15); }
.status-complete { background: rgba(196,151,63,0.1); color: var(--gold); border: 1px solid rgba(196,151,63,0.2); }
.booking-decline-note { font-size: 0.78rem; color: rgba(242,237,224,0.4); line-height: 1.55; margin-top: 8px; padding-left: 54px; }

/* ─── FORMS ─── */
.f-group { margin-bottom: 18px; }
.f-label { display: block; font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(242,237,224,0.4); margin-bottom: 6px; font-family: var(--sans); text-transform: uppercase; }
.f-input {
  width: 100%;
  background: rgba(242,237,224,0.05);
  border: 1px solid rgba(242,237,224,0.12);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--parchment);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.f-input::placeholder { color: rgba(242,237,224,0.25); }
.f-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.f-input:disabled { background: rgba(242,237,224,0.03); color: rgba(242,237,224,0.3); }
.f-helper { font-size: 0.75rem; color: rgba(242,237,224,0.3); margin-top: 6px; line-height: 1.55; }
.form-inline-err { font-size: 0.75rem; color: #f87171; margin-top: 4px; min-height: 18px; }

/* ═══ AUTH MODAL STYLES ═══ */
/* Targets the actual classes used in #modal-auth HTML */

.auth-inner {
  background: #111008;
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 8px;
  padding: 44px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
@media (max-width: 480px) {
  .auth-inner { padding: 32px 24px; }
}
#auth-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #F0EBE0;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
#auth-p {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(240,235,224,0.45);
  margin: 0 0 24px;
}
.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(240,235,224,0.06);
  border: 1px solid rgba(240,235,224,0.15);
  border-radius: 3px;
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #F0EBE0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.google-btn:hover { background: rgba(240,235,224,0.1); border-color: rgba(240,235,224,0.25); }
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(240,235,224,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: rgba(240,235,224,0.08); }
/* Scope f-label inside auth-inner for auth-specific sizing */
.auth-inner .f-label {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.4);
}
/* auth-inner inputs: iOS zoom-safe (16px) */
.auth-inner .f-input {
  font-size: 16px;
  padding: 14px 16px;
  background: rgba(240,235,224,0.06);
  border: 1px solid rgba(240,235,224,0.12);
  border-radius: 3px;
  color: #F0EBE0;
}
.auth-inner .f-input::placeholder { color: rgba(240,235,224,0.22); }
.auth-inner .f-input:focus { border-color: #C8A84B; box-shadow: 0 0 0 3px rgba(200,168,75,0.12); }
.f-submit {
  width: 100%;
  padding: 14px;
  background: #C8A84B;
  color: #080706;
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 16px;
}
.f-submit:hover:not(:disabled) { background: #E2C870; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,168,75,0.2); }
.f-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.auth-foot {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(240,235,224,0.35);
  text-align: center;
}
.auth-foot button {
  background: none;
  border: none;
  color: #C8A84B;
  font-weight: 500;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  text-decoration: underline;
  text-decoration-color: rgba(200,168,75,0.4);
}
.auth-foot button:hover { color: #E2C870; }
/* overlay: slightly darker + blur for auth specifically */
#modal-auth.modal-overlay {
  background: rgba(8,7,6,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* auth-loading spinner text */
.auth-loading {
  text-align: center;
  padding: 32px 0;
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(240,235,224,0.55);
}

/* ─── AUTH ─── */
.auth-err {
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.25);
  color: #fca5a5;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.84rem;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,7,6,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-smooth { transition: opacity 0.35s ease; }
.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(242,237,224,0.05);
  border: none;
  border-radius: 50%;
  color: rgba(242,237,224,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.modal-x:hover { background: rgba(242,237,224,0.1); color: var(--parchment); }

/* Auth modal */
.auth-modal {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.09);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.auth-logo {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--parchment);
  text-align: center;
  margin-bottom: 4px;
}
.auth-logo em { font-style: italic; color: var(--gold); }
.auth-tagline { text-align: center; font-size: 0.78rem; color: rgba(242,237,224,0.3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px; }
.auth-tab-row { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 1px solid rgba(242,237,224,0.08); }
.auth-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 0.82rem;
  font-family: var(--sans);
  color: rgba(242,237,224,0.35);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.auth-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.auth-provider-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  background: rgba(242,237,224,0.05);
  border: 1px solid rgba(242,237,224,0.12);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: var(--parchment);
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--sans);
}
.auth-provider-btn:hover { background: rgba(242,237,224,0.08); border-color: rgba(242,237,224,0.22); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: rgba(242,237,224,0.08); }
.auth-divider span { font-size: 0.72rem; color: rgba(242,237,224,0.25); }
.auth-link { font-size: 0.8rem; color: var(--gold); background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; }

/* Expert detail modal */
.expert-detail {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.08);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 700px;
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.ed-hero {
  position: relative;
  height: 320px;
  background: var(--void);
  overflow: hidden;
}
.ed-hero-dots {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(200,168,75,0.06) 0%, transparent 70%);
}
.ed-hero-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 7rem;
  font-style: italic;
  color: rgba(242,237,224,0.06);
  user-select: none;
}
.ed-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(8,7,6,0.6);
  border: none;
  border-radius: 50%;
  color: rgba(242,237,224,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  z-index: 5;
  transition: background 0.2s;
}
.ed-close:hover { background: rgba(8,7,6,0.85); color: var(--parchment); }
.ed-hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(8,7,6,0.9) 0%, transparent 100%);
}
.ed-hero-name {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--parchment);
}
.ed-hero-city {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.45);
  margin-top: 4px;
}
.ed-body { padding: 28px 32px; }
.ed-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.ed-stat-val { font-family: var(--display); font-size: 1.8rem; color: var(--parchment); line-height: 1; }
.ed-stat-label { font-family: var(--sans); font-size: 0.65rem; color: rgba(242,237,224,0.3); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.ed-bio { font-size: 0.88rem; color: rgba(242,237,224,0.5); line-height: 1.75; margin-bottom: 20px; }
.ed-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.ed-tag {
  background: rgba(242,237,224,0.05);
  color: rgba(242,237,224,0.4);
  border: 1px solid rgba(242,237,224,0.08);
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  transition: border-color 0.15s, color 0.15s;
  cursor: default;
}
.ed-tag:hover { border-color: rgba(196,151,63,0.25); color: rgba(242,237,224,0.65); }
.ed-book-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ed-book-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,151,63,0.3); }
.ed-lang-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.ed-lang-chip {
  background: rgba(200,168,75,0.08);
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.18);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

/* Booking modal */
.bm-head {
  padding: 22px 28px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: sticky;
  top: 0;
  background: var(--charcoal);
  z-index: 2;
  border-bottom: 1px solid rgba(242,237,224,0.07);
}
.bm-head h2 { font-family: var(--display); font-size: 1.3rem; color: var(--parchment); font-weight: 400; margin-bottom: 6px; }
.bm-steps {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bm-step {
  font-size: 0.7rem;
  color: rgba(237,229,208,0.28);
  letter-spacing: 0.05em;
  font-family: var(--sans);
  transition: color 0.2s;
}
.bm-step.active { color: var(--gold); }
.bm-step-sep { font-size: 0.6rem; color: rgba(237,229,208,0.2); }
.bm-body { padding: 22px 28px 28px; }
.bm-expert-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--deep);
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  border: 1px solid rgba(242,237,224,0.06);
}
.bm-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--parchment);
  flex-shrink: 0;
}
.bm-name { font-family: var(--display); font-size: 1.1rem; color: var(--parchment); }
.bm-price { font-family: var(--display); font-size: 1.4rem; color: var(--gold); }
.bm-pay-section { margin-top: 20px; }
.bm-pay-section h4 { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(242,237,224,0.3); margin-bottom: 14px; font-family: var(--sans); }
.pay-btn-row { display: flex; flex-direction: column; gap: 10px; }
.pay-btn-stripe {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.pay-btn-stripe:hover { background: var(--gold-light); }
.pay-btn-request {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: rgba(242,237,224,0.5);
  border: 1px solid rgba(242,237,224,0.15);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.84rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.pay-btn-request:hover { color: var(--parchment); border-color: rgba(242,237,224,0.35); }
.pay-secure-icon { font-size: 1.1rem; margin-bottom: 8px; }
.pay-secure-headline { font-family: var(--display); font-size: 1rem; color: var(--parchment); margin-bottom: 6px; }
.pay-secure-copy { font-size: 0.84rem; color: rgba(242,237,224,0.4); line-height: 1.6; }

/* ─── BOOKING MODAL — Date + Time + Summary + Confirm ─── */
.bm-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(196,151,63,0.12);
  border: 1.5px solid rgba(196,151,63,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--gold);
}
.bm-av-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.bm-av-fallback { font-family: var(--display); font-size: 1.2rem; color: var(--gold); }
.bm-av-info h4 { font-family: var(--display); font-size: 1rem; color: var(--parchment); margin-bottom: 2px; font-weight: 400; }
.bm-av-info p { font-size: 0.76rem; color: rgba(237,229,208,0.45); }
.bm-field-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(237,229,208,0.38);
  margin-bottom: 10px;
  margin-top: 20px;
  font-family: var(--sans);
}
.bm-field-label:first-of-type { margin-top: 0; }

/* Session type tabs */
.session-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.s-tab {
  flex: 1;
  padding: 10px 12px;
  background: var(--deep);
  border: 1px solid rgba(237,229,208,0.1);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: rgba(237,229,208,0.5);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: var(--sans);
}
.s-tab:hover { color: var(--parchment); border-color: rgba(237,229,208,0.2); }
.s-tab.active {
  background: rgba(196,151,63,0.1);
  border-color: rgba(196,151,63,0.35);
  color: var(--gold);
  font-weight: 500;
}

/* Date chips */
.dates-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.dates-scroll::-webkit-scrollbar { display: none; }
.date-chip {
  flex-shrink: 0;
  width: 56px;
  padding: 10px 6px;
  background: var(--deep);
  border: 1px solid rgba(237,229,208,0.1);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
}
.date-chip:hover { border-color: rgba(196,151,63,0.3); }
.date-chip.sel {
  background: rgba(196,151,63,0.1);
  border-color: rgba(196,151,63,0.4);
}
.date-chip-day {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(237,229,208,0.4);
  margin-bottom: 4px;
  font-family: var(--sans);
}
.date-chip-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--parchment);
  margin-bottom: 2px;
  transition: color 0.18s;
}
.date-chip.sel .date-chip-num { color: var(--gold); }
.date-chip-mon {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(237,229,208,0.4);
  font-family: var(--sans);
}

/* Time slots */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 4px;
}
.t-slot {
  padding: 10px 8px;
  background: var(--deep);
  border: 1px solid rgba(237,229,208,0.1);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: rgba(237,229,208,0.65);
  cursor: pointer;
  text-align: center;
  transition: all 0.18s;
  font-family: var(--sans);
}
.t-slot:hover { border-color: rgba(196,151,63,0.3); color: var(--parchment); }
.t-slot.sel {
  background: rgba(196,151,63,0.12);
  border-color: rgba(196,151,63,0.45);
  color: var(--gold);
  font-weight: 500;
}
.t-slot.taken {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}
.t-slot.taken:hover { border-color: rgba(237,229,208,0.1); color: rgba(237,229,208,0.35); }

/* Booking summary box */
.booking-summary-box {
  background: var(--deep);
  border: 1px solid rgba(237,229,208,0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 18px;
}
.bs-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 5px 0;
  color: rgba(237,229,208,0.5);
  border-bottom: 1px solid rgba(237,229,208,0.04);
}
.bs-row:last-child { border-bottom: none; }
.bs-row span:last-child { color: var(--parchment); text-align: right; }
.bs-row.total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(237,229,208,0.1);
  border-bottom: none;
}
.bs-row.total span:first-child { color: rgba(237,229,208,0.7); font-weight: 500; }
.bs-row.total span:last-child { color: var(--gold); font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; line-height: 1; }

/* Confirm / primary action button in booking modal */
.confirm-btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: var(--gold);
  color: var(--void);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(196,151,63,0.25);
}
.confirm-btn:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,151,63,0.35);
}
.confirm-btn:disabled {
  background: rgba(196,151,63,0.2);
  color: rgba(237,229,208,0.35);
  cursor: not-allowed;
  box-shadow: none;
}

/* Booking note */
.bm-note {
  font-size: 0.76rem;
  color: rgba(237,229,208,0.3);
  line-height: 1.6;
  text-align: center;
  margin-top: 14px;
}

/* Payment step */
.bm-payment { display: none; }
.bm-payment.active { display: block; }
.pay-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: rgba(237,229,208,0.35);
  margin-bottom: 14px;
  fill: rgba(237,229,208,0.35);
}
.pay-trust svg { fill: rgba(237,229,208,0.35); flex-shrink: 0; }
.pay-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.pay-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-note { font-size: 0.75rem; color: rgba(237,229,208,0.3); line-height: 1.55; margin-top: 12px; }
.pay-secure-card {
  background: var(--deep);
  border: 1px solid rgba(237,229,208,0.08);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 8px;
}

/* Advisor apply modal */
.modal-inner {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.08);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  position: relative;
  padding: 40px 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-inner h2 { font-family: var(--display); font-size: 1.6rem; font-weight: 300; color: var(--parchment); margin-bottom: 20px; }

/* Wizard */
.wizard-inner {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.08);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.wizard-head { padding: 24px 28px; border-bottom: 1px solid rgba(242,237,224,0.07); position: sticky; top: 0; background: var(--charcoal); z-index: 2; }
.wizard-head h2 { font-family: var(--display); font-size: 1.3rem; color: var(--parchment); }
.wizard-body { padding: 8px 28px 28px; color: var(--parchment); }
.wizard-step-label { font-size: 0.72rem; color: rgba(242,237,224,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-family: var(--sans); }
.tag-picks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.wizard-preview-card {
  background: var(--deep);
  border: 1px solid rgba(242,237,224,0.08);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 16px;
}
.wizard-preview-card h4 { font-family: var(--display); font-size: 1rem; color: var(--parchment); }

/* Confirm modal */
.confirm-modal {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.confirm-modal h3 { font-family: var(--display); font-size: 1.3rem; color: var(--parchment); margin-bottom: 10px; }
.confirm-modal p { font-size: 0.88rem; color: rgba(242,237,224,0.45); line-height: 1.6; margin-bottom: 24px; }
.confirm-modal .confirm-btn { display: inline-flex; align-items: center; padding: 11px 22px; background: var(--gold); color: var(--void); border: none; border-radius: var(--radius); font-size: 0.82rem; font-weight: 600; cursor: pointer; margin: 0 4px; transition: background 0.2s; font-family: var(--sans); }
.confirm-modal .confirm-btn:hover { background: var(--gold-light); }
.confirm-modal .cancel-btn { display: inline-flex; align-items: center; padding: 10px 20px; background: transparent; color: rgba(242,237,224,0.4); border: 1px solid rgba(242,237,224,0.15); border-radius: var(--radius); font-size: 0.82rem; cursor: pointer; margin: 0 4px; font-family: var(--sans); }

/* Ask post modal */
.ask-modal {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.ask-modal h2 { font-family: var(--display); font-size: 1.4rem; color: var(--parchment); margin-bottom: 20px; }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  margin-top: 32px;
}
.contact-card {
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-aside { padding-top: 8px; color: rgba(242,237,224,0.5); font-size: 0.9rem; line-height: 1.7; }
.social-row { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.social-ph { font-size: 0.82rem; color: rgba(242,237,224,0.3); }

/* ─── 404 PAGE ─── */
.page-404-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
  text-align: center;
  padding: 60px 24px;
  padding-top: 128px;
}
.page-404-bg { display: none; }
.page-404-inner { position: relative; z-index: 1; max-width: 540px; }
.page-404-num {
  font-family: var(--display);
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(242,237,224,0.05);
  margin-bottom: 0;
  pointer-events: none;
}
.page-404-msg { color: rgba(242,237,224,0.4); font-size: 0.95rem; line-height: 1.65; margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }
.page-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

/* ─── MOBILE NAV SHOW ─── */
.hide-sm { }

/* ─── SOCIAL PROOF / MISC ─── */
.calcom-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(242,237,224,0.08); }
#calcom-status-indicator { }

/* ─── STAGGER ANIMATION ─── */
.twab-stagger {
  opacity: 0;
  transform: translateY(20px);
}

/* ─── SCROLL ANIMATIONS ─── */
.no-word-blur { }

/* ─── SECTION LABEL ─── */
.section-eyebrow { font-family: var(--sans); }

/* ─── APP COMPAT: inner pages, modals, misc ─── */
.page-static .container > .s-label { margin-bottom: 10px; }
.explore-grid-section { background: var(--deep); padding: 24px 0 56px; }

/* ─── FEATURED EXPERTS SECTION ─── */
.featured-experts-section { position: relative; overflow: hidden; background: var(--void); }

/* ─── ADVISOR APPLICATION ─── */
.advisor-success {
  text-align: center;
  padding: 40px 20px;
}
.advisor-success h3 { font-family: var(--display); font-size: 1.4rem; color: var(--parchment); margin-bottom: 10px; }
.advisor-success p { font-size: 0.9rem; color: rgba(242,237,224,0.45); line-height: 1.7; }

/* ─── BOOKING REQUESTS ─── */
.booking-req-card {
  background: var(--deep);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 14px;
}
.booking-req-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.booking-req-name { font-family: var(--display); font-size: 1rem; color: var(--parchment); }
.booking-req-date { font-size: 0.78rem; color: rgba(242,237,224,0.35); }
.booking-req-actions { display: flex; gap: 8px; margin-top: 12px; }
.req-accept-btn { padding: 8px 18px; background: var(--gold); color: var(--void); border: none; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; cursor: pointer; font-family: var(--sans); }
.req-decline-btn { padding: 7px 16px; background: transparent; color: rgba(242,237,224,0.4); border: 1px solid rgba(242,237,224,0.15); border-radius: var(--radius); font-size: 0.78rem; cursor: pointer; font-family: var(--sans); }

/* ─── ADMIN ─── */
.admin-app-card {
  background: var(--deep);
  border: 1px solid rgba(242,237,224,0.07);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 14px;
}
.admin-app-name { font-family: var(--display); font-size: 1rem; color: var(--parchment); margin-bottom: 4px; }
.admin-app-meta { font-size: 0.78rem; color: rgba(242,237,224,0.35); margin-bottom: 12px; }
.admin-approve-btn { padding: 8px 18px; background: var(--gold); color: var(--void); border: none; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; cursor: pointer; margin-right: 8px; font-family: var(--sans); }
.admin-reject-btn { padding: 7px 16px; background: transparent; color: rgba(242,237,224,0.4); border: 1px solid rgba(242,237,224,0.15); border-radius: var(--radius); font-size: 0.78rem; cursor: pointer; font-family: var(--sans); }

/* ─── LEGAL PAGE EXTRA ─── */
.legal-page { background: var(--deep); }
.legal-page h1 { padding-top: 0; }

/* ─── PRINT ─── */
@media print {
  nav, footer, .nav-mobile-backdrop, .nav-mobile-panel,
  #cookie-banner, #app-splash, #site-curtain, #back-to-top,
  .toast, .no-print { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .page:not(.active) { display: none !important; }
  .page.active { display: block !important; }
  a { color: #000 !important; }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hide-sm { display: none !important; }
  .nav-burger { display: flex; }
  nav { height: 60px; }
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    max-height: 80px;
    padding: 10px 16px;
    width: 100%;
    max-width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
  }
  .cookie-banner.show { display: flex; }
  .cookie-inner { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
  .cookie-inner p { font-size: 0.72rem; line-height: 1.3; margin-bottom: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cookie-actions { flex-shrink: 0; gap: 6px; }
  .btn-cookie-accept { padding: 7px 14px; font-size: 0.7rem; }
  .btn-cookie-more { display: none; }
  .hero-h1-v2 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-cta-v2 { flex-direction: column; gap: 12px; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; min-height: 52px; font-size: 0.88rem; }
  .hero-scroll-hint, .hero-floating-pins { display: none; }
  .how-steps-v2 { flex-direction: column; gap: 40px; }
  .how-divider-v2 { display: none; }
  .how-step-v2 { padding: 0; }
  .city-grid-v2 { grid-template-columns: 1fr; }
  .city-card-v2 { height: 280px; }
  .city-card-v2-experts { opacity: 1; transform: translateY(0); }
  .city-card-v2-name { font-size: 1.8rem; }
  .exp-marquee-wrap .exp-card-v2 { min-width: 250px; width: 250px; }
  .footer-v2-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-v2 { padding: 48px 6vw 28px; }
  .dash-layout, .dashboard-layout { grid-template-columns: 1fr; }
  .dash-mobile-toggle { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  input, textarea, select { font-size: 16px !important; -webkit-text-size-adjust: 100%; }
  button, a, [onclick], [role="button"] { min-height: 44px; }
  .hero-v2 { min-height: 100svh; }
  .marquee-inner span { padding: 0 16px; font-size: 0.68rem; }
  .s-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
}

@media (max-width: 480px) {
  .footer-v2-top { grid-template-columns: 1fr; }
  .city-card-v2 { height: 240px; }
  .hero-content-v2 { padding: 0 5vw; }
  .bm-head, .bm-body { padding-left: 20px; padding-right: 20px; }
  .auth-modal { padding: 28px 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .city-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .city-card-v2 { height: 360px; }
  .footer-v2-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ─── TAP HIGHLIGHT ─── */
* {
  -webkit-tap-highlight-color: rgba(200,168,75,0.1);
  tap-highlight-color: rgba(200,168,75,0.1);
}
html, body { overflow-x: hidden; -webkit-text-size-adjust: 100%; }

/* ═══════════════════════════════════════════════════
   LANDING PAGE STYLES — scoped to #landing-wrapper
   and #nav-landing to prevent conflicts with app CSS
   ═══════════════════════════════════════════════════ */

/* ── STATE MANAGEMENT ── */
#landing-wrapper { display: block; }
#landing-wrapper.hidden { display: none; }
#nav-landing { display: flex; }
#nav-landing.hidden { display: none; }
#nav-app { display: none; }
#nav-app.visible { display: flex; }

body.landing-mode #nav-app { display: none !important; }
body.landing-mode .page { display: none !important; }
body.app-mode #landing-wrapper { display: none !important; }
body.app-mode #nav-landing { display: none !important; }
body.app-mode #landing-progress { display: none !important; }
body.app-mode #landing-mobile-menu { display: none !important; }
body.app-mode #home-mobile-nav { display: none !important; }

/* ── LANDING PROGRESS ── */
#landing-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: #C4973F;
  z-index: 99997;
  pointer-events: none;
  width: 0%;
  transform-origin: left;
  transition: width 0.1s linear;
}

/* ── LANDING MOBILE MENU ── */
#landing-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7,6,11,0.97);
  z-index: 8999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
}
#landing-mobile-menu.open { transform: translateY(0); }
#landing-mobile-menu a, #landing-mobile-menu button {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(237,229,208,0.6);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
#landing-mobile-menu a:hover, #landing-mobile-menu button:hover { color: #EDE5D0; }
#landing-mobile-menu .m-close {
  position: absolute;
  top: 20px;
  right: 5vw;
  font-size: 1.5rem;
  color: rgba(237,229,208,0.4);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── LANDING NAV ── */
#nav-landing {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  mix-blend-mode: normal;
}
#nav-landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,6,11,0.9) 0%, transparent 100%);
  pointer-events: none;
}
#nav-landing .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #EDE5D0;
  text-decoration: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: none;
  border: none;
}
#nav-landing .nav-logo em { font-style: italic; color: #C4973F; }
#nav-landing .nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
#nav-landing .nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,229,208,0.45);
  text-decoration: none;
  padding: 8px 14px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
#nav-landing .nav-link:hover { color: #EDE5D0; }
#nav-landing .nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: #07060B;
  background: #C4973F;
  border-radius: 2px;
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
#nav-landing .nav-cta:hover { background: #D4A94F; }
#nav-landing .nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
#nav-landing .nav-burger span {
  display: block;
  width: 20px;
  height: 1px;
  background: #EDE5D0;
  transition: transform 0.3s;
}
#home-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1;
}
#home-hamburger span {
  width: 22px;
  height: 1.5px;
  background: #EDE5D0;
  display: block;
}
#home-mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: min(85vw, 300px);
  height: 100vh;
  background: #0D0C12;
  border-right: 1px solid rgba(196,151,63,0.1);
  z-index: 99990;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#home-mobile-nav.open { transform: translateX(0); }
#home-mobile-nav a, #home-mobile-nav button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(240,235,224,0.6);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(240,235,224,0.06);
  transition: color 0.2s;
  background: none;
  border-bottom: 1px solid rgba(240,235,224,0.06);
  text-align: left;
  cursor: pointer;
}
#home-mobile-nav a:hover, #home-mobile-nav button:hover { color: #EDE5D0; }
.home-mobile-cta {
  margin-top: 20px !important;
  color: #C4973F !important;
  border: 1px solid rgba(196,151,63,0.3) !important;
  padding: 14px 20px !important;
  text-align: center !important;
  border-radius: 2px;
  border-bottom: 1px solid rgba(196,151,63,0.3) !important;
}

/* ── LANDING WRAPPER ── */
#landing-wrapper {
  background: #07060B;
  color: #EDE5D0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}
#landing-wrapper img { display: block; max-width: 100%; }

/* ── LANDING HERO ── */
#landing-wrapper .hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10vh;
}
#landing-wrapper .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform-origin: center center;
  will-change: transform;
}
#landing-wrapper .hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}
#landing-wrapper .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7,6,11,0.94) 0%, rgba(7,6,11,0.72) 45%, rgba(7,6,11,0.2) 70%, rgba(7,6,11,0.45) 100%),
    linear-gradient(to top, rgba(7,6,11,0.85) 0%, transparent 45%),
    radial-gradient(ellipse at 0% 100%, rgba(7,6,11,0.4) 0%, transparent 60%);
  z-index: 1;
}
#landing-wrapper .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 900px;
}
#landing-wrapper .hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C4973F;
  margin-bottom: 32px;
  overflow: hidden;
}
#landing-wrapper .hero-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #C4973F;
  flex-shrink: 0;
}
#landing-wrapper .hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(4.5rem, 10vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: #EDE5D0;
  margin-bottom: 40px;
  overflow: hidden;
}
#landing-wrapper .hero-h1 .line { display: block; overflow: hidden; }
#landing-wrapper .hero-h1 .word { display: inline-block; }
#landing-wrapper .hero-h1 em { font-style: italic; color: #C4973F; display: inline-block; }
#landing-wrapper .hero-sub {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(237,229,208,0.65);
  max-width: 400px;
  margin-bottom: 44px;
}
#landing-wrapper .hero-actions { display: flex; align-items: center; gap: 24px; }
#landing-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: #C4973F;
  color: #07060B;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
#landing-wrapper .btn-primary:hover {
  background: #D4A94F;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(196,151,63,0.28);
}
@keyframes btn-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
#landing-wrapper .btn-primary.shimmer-ready {
  background-image: linear-gradient(105deg, #C4973F 40%, #E8C870 50%, #C4973F 60%);
  background-size: 200% auto;
  animation: btn-shimmer 3.5s ease infinite;
}
#landing-wrapper .btn-primary.shimmer-ready:hover {
  background-image: none;
  background: #D4A94F;
}
#landing-wrapper .btn-primary svg { width: 14px; height: 14px; }
#landing-wrapper .btn-ghost {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,229,208,0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
#landing-wrapper .btn-ghost:hover { color: #EDE5D0; }
#landing-wrapper .hero-scroll {
  position: absolute;
  bottom: 10vh;
  right: 5vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: lp-fade-in 1s ease 2.4s forwards;
}
#landing-wrapper .hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(196,151,63,0.5));
}
#landing-wrapper .hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(237,229,208,0.3);
  writing-mode: vertical-rl;
}
@keyframes lp-fade-in { to { opacity: 1; } }

/* ── MARQUEE ── */
#landing-wrapper .marquee {
  background: #C4973F;
  overflow: hidden;
  padding: 11px 0;
  position: relative;
}
#landing-wrapper .marquee-track { display: flex; white-space: nowrap; }
#landing-wrapper .marquee-inner {
  display: flex;
  flex-shrink: 0;
  animation: lp-mq 30s linear infinite;
}
@keyframes lp-mq { from { transform: translateX(0); } to { transform: translateX(-100%); } }
#landing-wrapper .marquee:hover .marquee-inner { animation-play-state: paused; }
#landing-wrapper .marquee-inner span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #07060B;
  padding: 0 28px;
}
#landing-wrapper .marquee-dot { opacity: 0.35; padding: 0 6px !important; }

/* ── EDITORIAL ── */
#landing-wrapper .editorial {
  padding: 14vh 5vw;
  background: #07060B;
  position: relative;
  overflow: hidden;
}
#landing-wrapper .editorial-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 0 80px;
  align-items: center;
}
#landing-wrapper .editorial-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196,151,63,0.7);
  line-height: 1.8;
  padding-top: 6px;
}
#landing-wrapper .editorial-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: #C4973F;
  margin-bottom: 14px;
}
#landing-wrapper .editorial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #EDE5D0;
}
#landing-wrapper .editorial-text em { font-style: italic; color: #C4973F; }
#landing-wrapper .editorial-sub {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(237,229,208,0.4);
  max-width: 420px;
  margin-top: 36px;
  grid-column: 2;
}

/* ── HOW IT WORKS ── */
#landing-wrapper .how {
  padding: 12vh 5vw;
  background: #0D0C12;
  border-top: 1px solid rgba(237,229,208,0.05);
  border-bottom: 1px solid rgba(237,229,208,0.05);
}
#landing-wrapper .how-inner { max-width: 1100px; margin: 0 auto; }
#landing-wrapper .sec-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C4973F;
  margin-bottom: 56px;
}
#landing-wrapper .sec-label::before { content: ''; width: 20px; height: 1px; background: #C4973F; }
#landing-wrapper .how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
#landing-wrapper .how-step {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(237,229,208,0.06);
  margin-right: -1px;
}
#landing-wrapper .how-step:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
#landing-wrapper .how-step:nth-child(2) { padding: 0 40px; }
#landing-wrapper .step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  line-height: 0.85;
  color: rgba(196,151,63,0.07);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  user-select: none;
  transition: color 0.4s ease;
}
#landing-wrapper .how-step:hover .step-num { color: rgba(196,151,63,0.12); }
#landing-wrapper .step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #EDE5D0;
  margin-bottom: 14px;
  line-height: 1.2;
}
#landing-wrapper .step-body {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(237,229,208,0.52);
  line-height: 1.9;
  max-width: 260px;
}

/* ── EXPERTS ── */
#landing-wrapper .experts { padding: 12vh 5vw; background: #07060B; }
#landing-wrapper .experts-inner { max-width: 1100px; margin: 0 auto; }
#landing-wrapper .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
#landing-wrapper .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  color: #EDE5D0;
  letter-spacing: -0.02em;
}
#landing-wrapper .section-title em { font-style: italic; color: #C4973F; }
#landing-wrapper .section-link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,229,208,0.35);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  padding-bottom: 6px;
}
#landing-wrapper .section-link:hover { color: #C4973F; }
#landing-wrapper .experts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
#landing-wrapper .expert-card {
  position: relative;
  background: #0D0C12;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
#landing-wrapper .expert-card::after { content: ''; display: block; padding-top: 145%; }
#landing-wrapper .expert-card-inner { position: absolute; inset: 0; }
#landing-wrapper .expert-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.75) saturate(0.85);
}
#landing-wrapper .expert-card:hover .expert-img { transform: scale(1.06); filter: brightness(0.85) saturate(1); }
#landing-wrapper .expert-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,6,11,0.96) 0%, rgba(7,6,11,0.3) 50%, transparent 100%);
  transition: opacity 0.4s;
}
#landing-wrapper .expert-card:hover .expert-grad { opacity: 0.8; }
#landing-wrapper .expert-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
#landing-wrapper .expert-initials {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-style: italic;
  color: rgba(237,229,208,0.07);
  user-select: none;
  pointer-events: none;
  transition: color 0.4s;
}
#landing-wrapper .expert-card:hover .expert-initials { color: rgba(196,151,63,0.09); }
#landing-wrapper .expert-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
#landing-wrapper .expert-stars {
  color: #C4973F;
  font-size: 0.72rem;
  letter-spacing: 1px;
}
#landing-wrapper .expert-rating-val {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(237,229,208,0.75);
}
#landing-wrapper .expert-avail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,229,208,0.45);
  margin-left: auto;
}
#landing-wrapper .expert-avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 0 rgba(110,231,183,0.5);
  animation: pulse-dot 2.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110,231,183,0.5); }
  50% { box-shadow: 0 0 0 4px rgba(110,231,183,0); }
}
#landing-wrapper .expert-avail.offline .expert-avail-dot { background: rgba(237,229,208,0.2); animation: none; box-shadow: none; }
#landing-wrapper .expert-loc { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(196,151,63,0.7); margin-bottom: 6px; }
#landing-wrapper .expert-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: #EDE5D0; line-height: 1.1; margin-bottom: 10px; }
#landing-wrapper .expert-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
#landing-wrapper .expert-tag { font-size: 0.6rem; letter-spacing: 0.06em; color: rgba(237,229,208,0.35); border: 1px solid rgba(237,229,208,0.1); padding: 3px 9px; border-radius: 2px; }
#landing-wrapper .expert-footer { display: flex; align-items: center; justify-content: space-between; }
#landing-wrapper .expert-price { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: #C4973F; }
#landing-wrapper .expert-price span { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; color: rgba(237,229,208,0.3); }
#landing-wrapper .expert-book {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #07060B;
  background: #C4973F;
  padding: 7px 16px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}
#landing-wrapper .expert-card:hover .expert-book { opacity: 1; transform: translateY(0); }
#landing-wrapper .expert-book:hover { background: #D4A94F; }

/* ── CITIES ── */
#landing-wrapper .cities { padding: 0; background: #07060B; }
#landing-wrapper .cities-header { padding: 10vh 5vw 48px; max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; }
#landing-wrapper .cities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
#landing-wrapper .cities-grid .city-card:first-child { grid-column: 1 / -1; }
#landing-wrapper .cities-grid .city-card:first-child::after { padding-top: 42%; }
#landing-wrapper .cities-grid .city-card:first-child .city-name { font-size: clamp(3rem, 6vw, 5.5rem); }
#landing-wrapper .city-card { position: relative; overflow: hidden; cursor: pointer; background: #0D0C12; display: block; text-decoration: none; }
#landing-wrapper .city-card::after { content: ''; display: block; padding-top: 58%; }
#landing-wrapper .city-card:first-child::after { padding-top: 65%; }
#landing-wrapper .city-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.7) saturate(0.9);
}
#landing-wrapper .city-card:hover .city-img { transform: scale(1.06); filter: brightness(0.8) saturate(1); }
#landing-wrapper .city-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,6,11,0.88) 0%, rgba(7,6,11,0.15) 55%, transparent 100%); }
#landing-wrapper .city-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 36px; z-index: 1; }
#landing-wrapper .city-country { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(196,151,63,0.65); margin-bottom: 6px; opacity: 0; transition: opacity 0.35s ease; }
#landing-wrapper .city-card:hover .city-country { opacity: 1; }
#landing-wrapper .city-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 4.2rem); font-weight: 300; color: #EDE5D0; line-height: 0.95; letter-spacing: -0.03em; transform: translateY(0px); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
#landing-wrapper .city-card:hover .city-name { transform: translateY(-8px); }
#landing-wrapper .city-experts { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(237,229,208,0.3); margin-top: 8px; opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; }
#landing-wrapper .city-card:hover .city-experts { opacity: 1; transform: translateY(0); }
#landing-wrapper .city-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #C4973F; z-index: 2; transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
#landing-wrapper .city-card:hover::before { transform: scaleX(1); }

/* ── STATS ── */
#landing-wrapper .stats { padding: 12vh 5vw; background: #0D0C12; border-top: 1px solid rgba(237,229,208,0.05); }
#landing-wrapper .stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
#landing-wrapper .stat-item { padding: 40px 48px; border-right: 1px solid rgba(237,229,208,0.06); text-align: center; transition: background 0.3s; }
#landing-wrapper .stat-item:hover { background: rgba(196,151,63,0.03); }
#landing-wrapper .stat-item:last-child { border-right: none; }
#landing-wrapper .stat-val { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4rem, 8vw, 7.5rem); font-weight: 400; line-height: 1; color: #C4973F; letter-spacing: 0.02em; }
#landing-wrapper .stat-val em { font-style: normal; color: rgba(237,229,208,0.55); font-family: 'Bebas Neue', sans-serif; }
#landing-wrapper .stat-label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(237,229,208,0.35); margin-top: 14px; }

/* ── CLOSING CTA ── */
#landing-wrapper .cta { position: relative; overflow: hidden; background: #07060B; padding: 14vh 5vw; border-top: 1px solid rgba(237,229,208,0.05); }
#landing-wrapper .cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(196,151,63,0.06) 0%, transparent 65%); pointer-events: none; }
#landing-wrapper .cta-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
#landing-wrapper .cta-pre { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: #C4973F; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 14px; }
#landing-wrapper .cta-pre::before, #landing-wrapper .cta-pre::after { content: ''; width: 28px; height: 1px; background: #C4973F; }
#landing-wrapper .cta-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6.5vw, 7rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.03em; color: #EDE5D0; margin-bottom: 44px; }
#landing-wrapper .cta-h em { font-style: italic; color: #C4973F; }
#landing-wrapper .cta-sub { font-size: 0.88rem; font-weight: 300; color: rgba(237,229,208,0.38); line-height: 1.85; max-width: 420px; margin: 0 auto 44px; }
#landing-wrapper .cta-rule { width: 48px; height: 1px; background: rgba(196,151,63,0.3); margin: 0 auto 44px; }

/* ── ADVISOR SECTION ── */
#landing-wrapper .advisor-cta { position: relative; padding: 16vh 5vw; overflow: hidden; text-align: center; }
#landing-wrapper .advisor-cta-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&q=85'); background-size: cover; background-position: center; filter: brightness(0.25) saturate(0.7); }
#landing-wrapper .advisor-cta-overlay { position: absolute; inset: 0; background: rgba(7,6,11,0.65); }
#landing-wrapper .advisor-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
#landing-wrapper .advisor-eyebrow { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(196,151,63,0.7); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
#landing-wrapper .advisor-eyebrow::before, #landing-wrapper .advisor-eyebrow::after { content: ''; width: 24px; height: 1px; background: rgba(196,151,63,0.5); }
#landing-wrapper .advisor-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; color: #EDE5D0; margin-bottom: 20px; }
#landing-wrapper .advisor-earn { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: #C4973F; margin-bottom: 28px; line-height: 1.4; }
#landing-wrapper .advisor-body { font-size: 0.88rem; font-weight: 300; color: rgba(237,229,208,0.5); line-height: 1.85; max-width: 480px; margin: 0 auto 40px; }
#landing-wrapper .btn-advisor { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: transparent; color: #C4973F; border: 1px solid rgba(196,151,63,0.4); border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background 0.3s, border-color 0.3s, color 0.3s; }
#landing-wrapper .btn-advisor:hover { background: rgba(196,151,63,0.08); border-color: rgba(196,151,63,0.7); color: #E8C870; }

/* ── WHY LOCALS ── */
#lp-why-locals {
  padding: 12vh 5vw;
  background: #0B0A10;
  border-top: 1px solid rgba(237,229,208,0.05);
}
#lp-why-locals .why-inner { max-width: 1100px; margin: 0 auto; }
.why-comparison {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.why-col {
  padding: 32px 24px;
  background: rgba(237,229,208,0.02);
  border: 1px solid rgba(237,229,208,0.05);
  position: relative;
  transition: background 0.2s;
}
.why-col.why-col--us {
  background: rgba(196,151,63,0.06);
  border-color: rgba(196,151,63,0.18);
  transition: background 0.2s;
}
.why-col.why-col--us:hover { background: rgba(196,151,63,0.09); }
.why-col-header {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,229,208,0.35);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(237,229,208,0.06);
}
.why-col.why-col--us .why-col-header {
  color: #C4973F;
  border-bottom-color: rgba(196,151,63,0.2);
}
.why-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: rgba(237,229,208,0.42);
  line-height: 1.5;
}
.why-row .why-icon { flex-shrink: 0; font-size: 0.65rem; margin-top: 2px; }
.why-col.why-col--us .why-row { color: rgba(237,229,208,0.75); }
.why-col.why-col--us .why-row .why-icon { color: #C4973F; }
@media (max-width: 768px) {
  .why-comparison { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-comparison { grid-template-columns: 1fr; }
}

/* ── FOUNDER ── */
#founder { padding: 120px clamp(24px, 5vw, 80px); background: #0D0C12; border-top: 1px solid rgba(196,151,63,0.1); }
#founder-inner { max-width: 680px; }
#landing-wrapper .section-eyebrow { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(196,151,63,0.7); margin-bottom: 32px; display: flex; align-items: center; gap: 12px; }
#landing-wrapper .section-eyebrow::before { content: ''; width: 20px; height: 1px; background: #C4973F; }
.founder-body { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 300; line-height: 1.9; color: rgba(240,235,224,0.55); margin-bottom: 20px; }
.founder-sig {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: #C4973F;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.founder-sig::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(196,151,63,0.4);
  flex-shrink: 0;
}

/* ── WAITLIST ── */
#launch-bar { background: #07060B; border-bottom: 1px solid rgba(196,151,63,0.12); padding: 14px 5vw; text-align: center; }
#launch-bar p { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: #C4973F; }
#waitlist-bar { background: #C4973F; padding: 28px clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: center; }
#waitlist-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; max-width: 800px; width: 100%; }
#waitlist-text { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; color: #07060B; letter-spacing: 0.04em; white-space: nowrap; }
#waitlist-form { display: flex; gap: 0; flex: 1; min-width: 280px; max-width: 400px; }
#waitlist-email { flex: 1; padding: 12px 16px; background: rgba(8,7,6,0.15); border: 1px solid rgba(8,7,6,0.2); border-right: none; border-radius: 2px 0 0 2px; font-family: 'DM Sans', sans-serif; font-size: 16px !important; color: #07060B; outline: none; }
#waitlist-email::placeholder { color: rgba(8,7,6,0.4); }
#waitlist-form button { padding: 12px 20px; background: #07060B; color: #C4973F; border: none; border-radius: 0 2px 2px 0; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.3s; }
#waitlist-form button:hover { background: #1a1928; }
#waitlist-sub { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; color: rgba(8,7,6,0.4); white-space: nowrap; }

/* ── LANDING FOOTER ── */
#landing-wrapper footer { background: #07060B; border-top: 1px solid rgba(196,151,63,0.1); padding: 40px 5vw 32px; }
#landing-wrapper .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid rgba(237,229,208,0.05); margin-bottom: 24px; }
#landing-wrapper .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; letter-spacing: 0.04em; color: #EDE5D0; text-decoration: none; cursor: pointer; background: none; border: none; }
#landing-wrapper .footer-logo em { font-style: italic; color: #C4973F; }
#landing-wrapper .footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
#landing-wrapper .footer-links a, #landing-wrapper .footer-links button { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(237,229,208,0.28); text-decoration: none; transition: color 0.2s; cursor: pointer; background: none; border: none; font-family: 'DM Sans', sans-serif; }
#landing-wrapper .footer-links a:hover, #landing-wrapper .footer-links button:hover { color: rgba(237,229,208,0.65); }
#landing-wrapper .footer-copy { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
#landing-wrapper .footer-copy span { font-size: 0.68rem; color: rgba(237,229,208,0.18); letter-spacing: 0.04em; }

/* ── LANDING RESPONSIVE ── */
@media (max-width: 900px) {
  #landing-wrapper .how-steps { grid-template-columns: 1fr; gap: 48px; }
  #landing-wrapper .how-step { border-right: none; padding: 0 !important; }
  #landing-wrapper .experts-grid { grid-template-columns: repeat(2, 1fr); }
  #landing-wrapper .editorial-inner { grid-template-columns: 1fr; gap: 24px; }
  #landing-wrapper .stats-inner { grid-template-columns: repeat(2, 1fr) !important; }
  #landing-wrapper .stat-item { border-right: none; border-bottom: 1px solid rgba(237,229,208,0.06); padding: 28px 24px; text-align: left; }
  #landing-wrapper .stat-item:last-child { border-bottom: none; }
  #landing-wrapper .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  #landing-wrapper .cities-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  #landing-wrapper .footer-inner { flex-direction: column; align-items: flex-start; }
  #landing-wrapper .footer-copy { flex-direction: column; align-items: flex-start; }
  #landing-wrapper .hero-sub { display: none; }
  #landing-wrapper .editorial-label { display: flex; flex-direction: row; gap: 16px; align-items: flex-start; }
}
@media (max-width: 768px) {
  #nav-landing .nav-link.hide-m { display: none; }
  #nav-landing .nav-cta.hide-m { display: none; }
  #nav-landing .nav-burger { display: none !important; }
  #home-hamburger { display: flex; }
}
@media (max-width: 600px) {
  #landing-wrapper .experts-grid { grid-template-columns: 1fr; }
  #landing-wrapper .cities-grid { grid-template-columns: 1fr; }
  #landing-wrapper .city-card::after { padding-top: 75%; }
  #landing-wrapper .hero-h1 { font-size: clamp(3.2rem, 13vw, 5.5rem); }
  #landing-wrapper .hero-actions { flex-direction: column; align-items: flex-start; }
  #landing-wrapper .btn-primary { width: 100%; justify-content: center; }
  #landing-wrapper .step-num { font-size: 5rem; }
  #landing-wrapper .expert-book { opacity: 1; transform: translateY(0); }
  #landing-wrapper .expert-tag, #landing-wrapper .expert-tags { display: none; }
  #landing-wrapper .cities-grid .city-card:first-child { grid-column: auto; }
  #landing-wrapper .cities-grid .city-card:first-child::after { padding-top: 75%; }
  #landing-wrapper .cities-grid .city-card:first-child .city-name { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ── MICRO-INTERACTIONS ── */
/* Gold line grow animation for section entries */
@keyframes gold-line-grow {
  from { width: 0; opacity: 0; }
  to { width: 48px; opacity: 1; }
}
.section-gold-line {
  display: block;
  height: 1px;
  background: rgba(196,151,63,0.4);
  width: 0;
  margin-bottom: 20px;
}
.section-gold-line.visible { animation: gold-line-grow 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }

/* Stat count-up: pre-style for JS animation */
#landing-wrapper .stat-val[data-count] { min-width: 2ch; display: inline-block; }

/* Expert card: name slide-up + initials fade on hover */
#landing-wrapper .expert-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #EDE5D0;
  line-height: 1.1;
  margin-bottom: 8px;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
#landing-wrapper .expert-card:hover .expert-name { transform: translateY(-3px); }

/* Floating pin bob animations (hero map pins) */
@keyframes pin-bob-1 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
@keyframes pin-bob-2 { 0%, 100% { transform: translateY(-4px); } 50% { transform: translateY(4px); } }
@keyframes pin-bob-3 { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(6px); } }
@keyframes pin-bob-4 { 0%, 100% { transform: translateY(3px); } 50% { transform: translateY(-5px); } }
.hero-pin:nth-child(1) .hero-pin-dot { animation: pin-bob-1 4.2s ease-in-out infinite; }
.hero-pin:nth-child(2) .hero-pin-dot { animation: pin-bob-2 3.8s ease-in-out infinite; }
.hero-pin:nth-child(3) .hero-pin-dot { animation: pin-bob-3 4.8s ease-in-out infinite; }
.hero-pin:nth-child(4) .hero-pin-dot { animation: pin-bob-4 4.0s ease-in-out infinite; }
.hero-pin:nth-child(5) .hero-pin-dot { animation: pin-bob-1 5.2s ease-in-out infinite 0.6s; }

/* Section title word-clip animation */
@keyframes word-clip-up {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
.section-word-clip { display: inline-block; overflow: hidden; }
.section-word-clip span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
}
.section-word-clip.visible span { transform: translateY(0); opacity: 1; }

/* CTA shimmer button (every 4 seconds) */
#landing-wrapper .cta .btn-primary {
  position: relative;
  overflow: hidden;
}
#landing-wrapper .cta .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: cta-shimmer 4s ease-in-out infinite;
}
@keyframes cta-shimmer {
  0%, 75% { left: -100%; opacity: 0; }
  80% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

/* Improved stats mobile: make them feel more impactful */
@media (max-width: 900px) {
  #landing-wrapper .stat-val { font-size: clamp(3.5rem, 14vw, 6rem); }
}

/* ─── MICRO-INTERACTION: Expert card hover image zoom ─── */
.expert-card:hover .ec-img-wrap::after,
.exp-card-v2:hover .exp-card-v2-img::after {
  opacity: 1;
}

/* ─── MICRO-INTERACTION: Gold line decoration on .sec-label ─── */
#landing-wrapper .sec-label {
  position: relative;
}
#landing-wrapper .sec-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 1px;
  background: rgba(196,151,63,0.5);
}

/* ─── MICRO-INTERACTION: Expert detail modal stat values ─── */
.ed-stat b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.ed-stat span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(237,229,208,0.3);
}

/* ─── MICRO-INTERACTION: Smooth selection ring on form inputs ─── */
.f-input:focus-visible {
  outline: none;
  border-color: rgba(196,151,63,0.5);
  box-shadow: 0 0 0 3px rgba(196,151,63,0.1);
}

/* ─── MICRO-INTERACTION: Expert card shimmer on load ─── */
@keyframes card-shimmer-bg {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.expert-card.loading, .exp-card-v2.loading {
  background: linear-gradient(90deg, var(--charcoal) 25%, rgba(237,229,208,0.04) 50%, var(--charcoal) 75%);
  background-size: 200% 100%;
  animation: card-shimmer-bg 1.4s ease infinite;
}

/* ─── IMPROVEMENT: Focus-visible for buttons ─── */
button:focus-visible, a:focus-visible {
  outline: 2px solid rgba(196,151,63,0.6);
  outline-offset: 2px;
}
.btn-primary:focus-visible, .confirm-btn:focus-visible {
  outline: 2px solid rgba(196,151,63,0.8);
  outline-offset: 3px;
}

/* ─── LANDING: Section title em → gold italic ─── */
/* Defined above at #landing-wrapper .section-title em with color: #C4973F */

/* ─── INTERACTION STATES: Active press ─── */
button:active { transform: scale(0.98) !important; }
.btn-hero-primary:active,
.btn-hero-ghost:active,
.btn-primary:active,
.f-submit:active:not(:disabled),
.save-btn:active,
.ed-book-btn:active,
.req-accept-btn:active,
.req-decline-btn:active,
.admin-approve-btn:active,
.admin-reject-btn:active { transform: scale(0.98) !important; transition-duration: 0.08s !important; }

/* ─── INTERACTION STATES: Disabled buttons ─── */
.btn-primary:disabled,
.btn-hero-primary:disabled,
.save-btn:disabled,
.ed-book-btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ─── INPUT STATES: Error border ─── */
.f-input--error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important;
}
.f-input--error:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.18) !important;
}

/* ─── INPUT STATES: Valid indicator ─── */
.f-input--valid {
  border-color: rgba(52,211,153,0.45) !important;
}
.f-input--valid:focus {
  border-color: rgba(52,211,153,0.6) !important;
  box-shadow: 0 0 0 3px rgba(52,211,153,0.1) !important;
}

/* ─── WHY LOCAL NOT GUIDE ─── */
.why-local-guide {
  background: var(--deep);
  padding: var(--space-2xl) 6vw;
  border-top: 1px solid rgba(200,168,75,0.08);
}
.wlg-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.wlg-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 800px;
}
.wlg-col {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  border: 1px solid rgba(242,237,224,0.06);
  transition: border-color 0.3s;
}
.wlg-col:hover { border-color: rgba(200,168,75,0.18); }
.wlg-col--solution {
  background: rgba(200,168,75,0.06);
  border-color: rgba(200,168,75,0.15);
}
.wlg-col--solution:hover { border-color: rgba(200,168,75,0.3); }
.wlg-col-header {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: var(--space-md);
  letter-spacing: 0.01em;
}
.wlg-col--solution .wlg-col-header { color: var(--gold); }
.wlg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wlg-list li {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(242,237,224,0.55);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.wlg-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(242,237,224,0.25);
}
.wlg-list--gold li {
  color: rgba(242,237,224,0.75);
}
.wlg-list--gold li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  top: 4px;
}
@media (max-width: 640px) {
  .wlg-cols { grid-template-columns: 1fr; gap: var(--space-md); }
  .why-local-guide { padding: var(--space-xl) 6vw; }
}

/* ─── TRAVELER FLAGS ─── */
.traveler-flags {
  background: var(--charcoal);
  padding: var(--space-lg) 6vw;
  border-top: 1px solid rgba(242,237,224,0.06);
  border-bottom: 1px solid rgba(242,237,224,0.06);
}
.flags-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.flags-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}
.flag-emoji {
  font-size: 1.75rem;
  line-height: 1;
  transition: transform 0.2s var(--ease);
  cursor: default;
}
.flag-emoji:hover { transform: scale(1.2) translateY(-2px); }
.flags-caption {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,237,224,0.3);
}

/* ─── TRUST BADGES ─── */
.trust-badges {
  background: var(--deep);
  padding: var(--space-lg) 6vw;
  border-top: 1px solid rgba(242,237,224,0.06);
}
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(242,237,224,0.4);
  text-transform: uppercase;
  transition: color 0.2s;
}
.trust-item:hover { color: rgba(242,237,224,0.65); }
.trust-icon {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.trust-item:hover .trust-icon { opacity: 1; }
.trust-dot {
  color: rgba(242,237,224,0.15);
  font-size: 1rem;
}
@media (max-width: 640px) {
  .trust-inner { gap: var(--space-sm); }
  .trust-dot { display: none; }
  .trust-item { font-size: 0.68rem; }
}
