/* ==========================================================================
   Pune Ganeshotsav 2026 — Shared Stylesheet
   Tokens sourced from mandal-mitra-color-scheme.md — never hardcode a hex
   outside this block.
   ========================================================================== */

:root {
  /* Primary */
  --orange-zest: #AA3D1E;
  --orange-zest-dark: #7A2B14;
  --neon-citrus: #C36D30;
  --neon-citrus-deep: #A0551F;
  --citrus-fizz: #E8C19A;

  /* Secondary */
  --champagne-glow: #F1E3C8;
  --berry-pop: #7D0000;

  /* Text & surfaces */
  --ink: #2B1710;
  --ink-soft: #7A5D4E;
  --white: #FFFFFF;
  --line: #E4D2A8;

  /* Radii & shadow */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow-card: 0 1px 2px rgba(43, 20, 28, 0.06);
  --shadow-lift: 0 8px 24px rgba(43, 20, 28, 0.14);

  /* Layout */
  --header-h: 60px;
  --max-w: 1100px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--champagne-glow);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button, input, select { font: inherit; color: inherit; }
h1, h2, h3, .display { font-family: 'Fraunces', Georgia, serif; margin: 0 0 0.4em; line-height: 1.15; }
p { margin: 0 0 1em; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 8px; top: -48px;
  background: var(--orange-zest);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--champagne-glow);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(43,20,28,0.18);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--orange-zest-dark);
}
.brand-badge {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--neon-citrus);
  color: var(--orange-zest-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex: none;
  overflow: hidden;
}
.brand-badge img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.site-footer .brand-badge { width: 56px; height: 56px; }

.header-utils {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-select {
  background: rgba(0,0,0,0.04);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 7px 8px;
  font-size: 0.82rem;
  min-height: 36px;
}
.lang-select option { color: var(--ink); }

.nav-toggle {
  background: transparent;
  border: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--champagne-glow);
  border-top: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.site-nav.is-open { max-height: 480px; }
.site-nav ul {
  display: flex;
  flex-direction: column;
  padding: 0 16px 16px;
  order: 2;
}
.site-nav a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.site-nav a.is-active { color: var(--neon-citrus); }
.site-nav a.nav-emergency { color: var(--berry-pop); font-weight: 700; }

.nav-search-wrap { padding: 12px 16px 0; order: 1; }
.header-search-input {
  width: 100%;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.04);
  color: var(--ink);
}
.header-search-input::placeholder { color: var(--ink-soft); }

@media (min-width: 800px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    border-top: none;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .site-nav ul {
    flex-direction: row;
    flex-shrink: 0;
    padding: 0;
    gap: 4px;
    order: 1;
  }
  .site-nav ul li { flex-shrink: 0; }
  .site-nav a {
    border-bottom: none;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
  }
  .site-nav a:hover { background: rgba(0,0,0,0.06); }
  .nav-search-wrap {
    padding: 0;
    order: 2;
    flex: 1 1 100px;
    min-width: 90px;
    max-width: 190px;
  }
  .header-search-input { width: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
  min-height: 44px;
}
.btn:active { transform: scale(0.98); }

.btn-citrus { background: var(--neon-citrus); color: var(--orange-zest-dark); }
.btn-citrus:hover { background: var(--neon-citrus-deep); color: var(--white); }

.btn-dark { background: var(--orange-zest); color: var(--white); }
.btn-dark:hover { background: var(--orange-zest-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-berry { background: var(--berry-pop); color: var(--white); }
.btn-berry:hover { background: color-mix(in srgb, var(--berry-pop) 80%, black); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; min-height: 38px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  background: var(--neon-citrus);
  color: var(--white);
  padding: 32px 0 48px;
  text-align: left;
}
.hero h1 {
  color: #FEE3C8;
  font-size: clamp(2rem, 8vw, 3.2rem);
  margin-bottom: 10px;
}
.hero p.lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 0 20px;
}
.hero-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--champagne-glow);
  color: var(--orange-zest-dark);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.hero-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.hero-copy { flex: 1 1 380px; min-width: 0; }
.hero-photo {
  display: none;
  flex: 0 0 auto;
  height: clamp(240px, 36vw, 420px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.4));
}
@media (min-width: 640px) {
  .hero-photo { display: block; }
}
.hero-links-heading {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.grid.hero-quicklinks {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-quicklinks .card {
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--champagne-glow);
  color: var(--ink);
}
.quicklink-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quicklink-stat .stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange-zest-dark);
  line-height: 1;
}
.quicklink-stat .stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.hero-quicklinks .card h3 {
  display: inline-block;
  background: var(--orange-zest);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  margin: 0 0 12px;
}

/* ---------- Sections ---------- */
.section { padding: 44px 0; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(1.5rem, 5vw, 2.1rem); color: var(--neon-citrus); }
.section-head p { color: var(--neon-citrus); max-width: 520px; margin: 0 auto; }
.about-body { max-width: 720px; text-align: left; margin: 0 auto; }
.about-body p { color: var(--ink-soft); text-align: left; max-width: none; margin: 0 0 14px; }
.about-quote {
  text-align: left;
  font-style: italic;
  color: var(--orange-zest-dark);
  border-left: 3px solid var(--neon-citrus);
  padding-left: 16px;
  margin: 20px 0 0;
}

/* ---------- Stat / highlight cards ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.stat-card .num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.7rem;
  color: var(--neon-citrus);
  font-weight: 600;
}
.stat-card .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--citrus-fizz), var(--neon-citrus));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-zest-dark);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}
.card-media.has-photo { background: var(--ink); }
.media-bg {
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  filter: blur(16px) brightness(0.7) saturate(1.15);
  transform: scale(1.1);
}
.media-fg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
}
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-body h3 { font-size: 1.15rem; margin: 0; }
.card-meta { color: var(--ink-soft); font-size: 0.88rem; display: flex; align-items: center; gap: 6px; margin: 0 0 6px; }
.meta-icon { flex: none; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0; }
.card-actions { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; padding-top: 16px; }
.card-actions > * { flex: 1; text-align: center; }

.card-title-row { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.card-meta-inline-group { display: flex; flex-wrap: wrap; gap: 4px 10px; }
.card-meta-inline {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  white-space: nowrap;
}
.card-meta-inline .meta-icon { width: 12px; height: 12px; }

.mandal-modal-meta { display: flex; flex-direction: column; gap: 4px; margin: 4px 0 10px; }
.mandal-modal-meta .card-meta-inline { font-size: 0.88rem; }

.mandal-toggle {
  background: none;
  border: 1px solid var(--line);
  color: var(--orange-zest);
  font-weight: 600;
  cursor: pointer;
}
.mandal-toggle:hover { background: var(--champagne-glow); border-color: var(--neon-citrus); }

/* ---------- Manache Ganpati highlight ---------- */
.manache-title-card {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-zest), var(--berry-pop));
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  margin-bottom: 20px;
}
.manache-title-card h2 { color: var(--white); margin: 0; }

.section-title-card {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}
.section-title-card h2 { margin: 0; }
.card.card-manache {
  border-color: var(--neon-citrus);
  box-shadow: 0 0 0 2px var(--neon-citrus), var(--shadow-card);
}
.card.card-manache .card-media {
  background: linear-gradient(135deg, var(--neon-citrus), var(--berry-pop));
  color: var(--white);
}

/* ---------- Mandal detail modal ---------- */
.mandal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 20, 28, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.mandal-modal-overlay.is-open { display: flex; }
.mandal-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lift);
}
.mandal-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.mandal-modal-media {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--citrus-fizz), var(--neon-citrus));
  color: var(--orange-zest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.mandal-modal-media.has-photo { background: var(--ink); }
.mandal-modal-body { padding: 20px; }
.mandal-modal-history {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 10px 0 18px;
}

/* ---------- Tags / pills ---------- */
.tag {
  display: inline-block;
  background: var(--citrus-fizz);
  color: var(--orange-zest);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--orange-zest);
}
.field input[type="text"],
.field input[type="search"],
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1rem;
  min-height: 46px;
}
.field input:focus, .field select:focus {
  outline: 2px solid var(--neon-citrus);
  outline-offset: 1px;
  border-color: var(--neon-citrus);
}
.field-hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 6px; }
.field-row { display: flex; gap: 10px; flex-wrap: wrap; }
.field-row .field { flex: 1; min-width: 200px; }

.search-box { position: relative; margin-bottom: 16px; }
.search-box-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}
.search-box-input { background: var(--white); color: var(--ink); border-color: var(--line); width: 100%; padding-left: 44px; }

.filter-chips {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  padding: 4px 2px 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 16px, black calc(100% - 16px), transparent 100%);
}
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: none;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}
.filter-chip .meta-icon { opacity: 0.6; transition: opacity 0.15s; }
.filter-chip:hover { border-color: var(--neon-citrus); color: var(--ink); background: var(--citrus-fizz); }
.filter-chip:active { transform: scale(0.96); }
.filter-chip.is-active {
  background: linear-gradient(135deg, var(--neon-citrus), var(--orange-zest));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-lift);
}
.filter-chip.is-active .meta-icon { opacity: 1; }

/* ---------- Map panel ---------- */
.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px;
}
.map-frame-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--champagne-glow);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-frame-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.map-placeholder {
  text-align: center;
  color: var(--ink-soft);
  padding: 40px 20px;
}
.map-placeholder .icon { display: flex; justify-content: center; margin-bottom: 8px; color: var(--ink-soft); }

.status-msg {
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-bottom: 14px;
  display: none;
}
.status-msg.is-visible { display: block; }
.status-msg.is-info { background: var(--citrus-fizz); color: var(--orange-zest); }
.status-msg.is-error { background: color-mix(in srgb, var(--berry-pop) 12%, white); color: var(--berry-pop); }

/* ---------- Emergency ---------- */
.emergency-banner {
  background: var(--berry-pop);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}
.emergency-banner h2 { color: var(--white); font-size: 1.3rem; }
.emergency-banner p { color: rgba(255,255,255,0.88); }

.contact-list { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .contact-list { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.contact-card .name { font-weight: 600; }
.contact-card .num { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(160deg, var(--orange-zest) 0%, var(--orange-zest-dark) 100%);
  color: rgba(255,255,255,0.8);
  padding: 36px 0 24px;
  margin-top: 40px;
}
.site-footer .brand { color: var(--white); margin-bottom: 10px; }
.footer-about-body { white-space: pre-line; }
.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-grid > div:not(:first-child) { text-align: right; }
.footer-grid h4 {
  color: var(--citrus-fizz);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.footer-grid a { display: block; padding: 5px 0; color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

/* ---------- Tour popup ---------- */
.tour-popup {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  background: var(--champagne-glow);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 18px 18px 16px;
  max-width: 260px;
  width: calc(100% - 32px);
}
.tour-popup-close {
  position: absolute;
  top: 6px; right: 8px;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px;
}
.tour-popup-title { font-weight: 700; margin-bottom: 4px; padding-right: 22px; }
.tour-popup-desc { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 12px; }

/* ---------- Language picker modal ---------- */
.mm-lang-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,20,28,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.mm-lang-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  max-width: 320px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lift);
}
.mm-lang-modal-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--ink);
}
.mm-lang-modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mm-lang-modal-options button {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--champagne-glow);
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.mm-lang-modal-options button:hover,
.mm-lang-modal-options button:focus-visible {
  background: var(--neon-citrus);
  border-color: var(--neon-citrus);
  color: var(--orange-zest-dark);
  outline: none;
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.page-hero {
  background: var(--neon-citrus);
  color: var(--white);
  padding: 32px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 8px auto 0; }
