/* ============================================================
   visit.css — Музейд зочлох хуудас
   vis- prefix. index.css-ийн дараа уншигдана.
   ============================================================ */


/* ─── SIDE PANEL (slide-in from right) ─── */
.vis-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3,31,62,.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 1100;
}
.vis-panel-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.vis-side-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 92vw);
  height: 100vh;
  background: #fff;
  box-shadow: -16px 0 50px rgba(3,31,62,.25);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.vis-side-panel.is-open { transform: translateX(0); }

.vis-panel-header {
  background: linear-gradient(180deg, #022954 0%, #00142B 100%);
  color: #fff;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 3px solid var(--gold, #C9A24A);
}
.vis-panel-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light, #E5C97B);
  margin-bottom: 4px;
}
.vis-panel-title h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: .005em;
}
.vis-panel-close {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.vis-panel-close:hover { background: rgba(255,255,255,.16); transform: rotate(90deg); }

.vis-panel-nav {
  flex: 1;
  overflow-y: auto;
  padding: 22px 22px 30px;
}

.vis-panel-cta {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.btn-block {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px !important;
  font-size: .82rem !important;
  letter-spacing: .06em !important;
}
.btn-ghost {
  background: transparent !important;
  border: 1.5px solid var(--vis-line) !important;
  color: var(--navy) !important;
}
.btn-ghost:hover { background: var(--vis-bg) !important; }

.vis-panel-group { margin-bottom: 22px; }
.vis-panel-group-title {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  padding-left: 4px;
}

.vis-panel-subdomains { list-style: none; margin: 0; padding: 0; }
.vis-panel-subdomains a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.vis-panel-subdomains a i {
  width: 28px;
  text-align: center;
  color: var(--red);
}
.vis-panel-subdomains a:hover { background: var(--vis-bg); color: var(--red); }

.vis-panel-main { list-style: none; margin: 0; padding: 0; }
.vis-panel-main > li {
  border-bottom: 1px solid var(--vis-line);
}
.vis-panel-main > li:last-child { border-bottom: none; }
.vis-panel-main > li > a {
  display: grid;
  grid-template-columns: 40px 1fr 16px;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
  text-decoration: none;
  transition: color .2s;
}
.vis-panel-main > li > a:hover { color: var(--red); }
.vis-panel-num {
  font-family: 'Montserrat', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold-deep, #8C6A1F);
  letter-spacing: .04em;
}
.vis-panel-name {
  font-size: .96rem;
  font-weight: 700;
  color: var(--navy);
}
.vis-panel-main > li > a > i {
  color: var(--muted);
  font-size: .72rem;
  transition: transform .2s, color .2s;
}
.vis-panel-main > li > a:hover > i { transform: translateX(3px); color: var(--red); }
.vis-panel-main > li > a:hover .vis-panel-name { color: var(--red); }
.vis-panel-sub {
  font-size: .76rem;
  color: var(--muted);
  padding: 0 8px 14px 60px;
  line-height: 1.55;
}
.vis-panel-main > li.active > a .vis-panel-name { color: var(--red); }
.vis-panel-main > li.active { background: linear-gradient(90deg, rgba(233,21,24,.04), transparent); }

/* ─── Accordion (3-level nested) ─── */
.vis-panel-main > li > a > i.fa-chevron-right { transition: transform .25s; }
.vis-panel-main > li.is-open > a > i.fa-chevron-right { transform: rotate(90deg); color: var(--red); }
.vis-panel-tree {
  list-style: none;
  margin: 0;
  padding: 0 8px 14px 60px;
  display: none;
}
.vis-panel-main > li.is-open .vis-panel-tree { display: block; animation: visTreeFade .25s ease-out; }
@keyframes visTreeFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.vis-panel-tree li { margin: 0; }
.vis-panel-tree > li > a {
  display: block;
  padding: 7px 10px;
  font-size: .82rem;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all .15s;
}
.vis-panel-tree > li > a:hover { background: var(--vis-bg); color: var(--red); }
.vis-panel-tree > li.has-children > .vis-panel-tree-label {
  display: block;
  padding: 8px 10px 4px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-deep, #8C6A1F);
}
.vis-panel-tree-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 6px 14px;
  border-left: 1px solid var(--vis-line);
  margin-left: 6px;
}
.vis-panel-tree-sub li a {
  display: block;
  padding: 5px 10px;
  font-size: .76rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 4px;
  transition: all .15s;
}
.vis-panel-tree-sub li a:hover { background: var(--vis-bg); color: var(--red); }

.vis-panel-foot {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--vis-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: .86rem;
}
.vis-panel-foot a:not(.vis-panel-socials a) {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.vis-panel-foot a i { color: var(--red); margin-right: 6px; }
.vis-panel-socials {
  display: flex;
  gap: 8px;
}
.vis-panel-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  transition: background .2s, transform .2s;
}
.vis-panel-socials a:hover { background: var(--red); transform: translateY(-2px); }

/* Burger: index.css дахь display rule-ыг хадгална. Зөвхөн open state animation. */
.burger span { transition: transform .25s, opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }




:root {
  --vis-bg: #faf8f3;
  --vis-line: #ece6d4;
  --vis-card: #ffffff;
}

.vis-body { background: var(--vis-bg); }


/* ─── HERO ─── */
.vis-hero {
  position: relative;
  height: 78vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.vis-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.vis-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,31,62,.35) 0%, rgba(3,31,62,.85) 100%);
}
.vis-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 0 60px;
}
.vis-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light, #d4a93f);
  margin-bottom: 16px;
}
.vis-hero-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light, #d4a93f);
}
.vis-hero-title {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: .005em;
  line-height: 1.1;
  max-width: 800px;
}
.vis-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 640px;
  line-height: 1.65;
  margin: 0;
}


/* ─── QUICK INFO BAR ─── */
.vis-quick {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--vis-line);
  padding: 14px 0;
}
.vis-quick-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}
.vis-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 700;
  color: #1b6e2c;
}
.vis-status .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ea043;
  box-shadow: 0 0 0 4px rgba(46,160,67,.18);
}
.vis-status.closed { color: #b00020; }
.vis-status.closed .dot { background: #b00020; box-shadow: 0 0 0 4px rgba(176,0,32,.18); }
.vis-quick-time {
  font-size: .86rem;
  color: var(--text);
  font-weight: 500;
}
.vis-quick-time strong {
  color: var(--navy);
  font-weight: 700;
}
.vis-quick-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.vis-quick-call i { color: var(--red); }
.vis-quick-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s;
}
.vis-quick-cta:hover { background: #c81e21; }


/* ─── SECTION ─── */
.vis-section { padding: 80px 0; }
.vis-section-light { background: #fff; }
.vis-section-cream { background: var(--vis-bg); }
.vis-section-dark { background: var(--navy); color: #fff; }
.vis-section-dark .vis-sec-title { color: #fff; }
.vis-section-dark .vis-sec-desc { color: rgba(255,255,255,.78); }

.vis-sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.vis-sec-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.vis-sec-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: .005em;
}
.vis-sec-desc {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}


/* ─── HOURS (Summer / Winter) ─── */
.vis-hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.vis-hours {
  background: #fff;
  border: 1px solid var(--vis-line);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.vis-hours-sun {
  border-top: 4px solid var(--red);
}
.vis-hours-snow {
  border-top: 4px solid var(--navy);
  background: linear-gradient(180deg, #fff 0%, var(--vis-bg) 100%);
}
.vis-hours-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 3rem;
  color: var(--vis-line);
  opacity: .6;
}
.vis-hours-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.vis-hours-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}
.vis-hours-period {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.vis-hours-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--vis-line);
}
.vis-hours-line:last-of-type { border-bottom: none; }
.vis-hours-day {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.vis-hours-time {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.vis-hours-time.closed {
  color: var(--red);
}
.vis-hours-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--vis-line);
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.vis-hours-note i { color: var(--red); margin-top: 3px; flex-shrink: 0; }


/* ─── TICKETS TABLE ─── */
.vis-tickets-wrap {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--vis-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(3,31,62,.05);
}
.vis-tickets-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.vis-tickets-head > div:not(:first-child) { text-align: center; color: var(--gold-light, #d4a93f); }

.vis-ticket-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--vis-line);
  align-items: center;
  transition: background .2s;
}
.vis-ticket-row:hover { background: var(--vis-bg); }
.vis-ticket-row:last-child { border-bottom: none; }
.vis-ticket-row.featured {
  background: linear-gradient(90deg, rgba(233,21,24,.03), rgba(233,21,24,.06));
}

.vis-ticket-cat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vis-ticket-cat i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(3,31,62,.07);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.vis-ticket-cat strong {
  display: block;
  font-size: .96rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.vis-ticket-cat span {
  font-size: .78rem;
  color: var(--muted);
}
.vis-ticket-price {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.vis-ticket-price.free {
  color: #1b6e2c;
  font-size: .88rem;
  letter-spacing: .04em;
}
.vis-ticket-price.dash {
  color: var(--muted);
  font-weight: 500;
}

.vis-tickets-foot {
  background: var(--vis-bg);
  padding: 18px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--text);
}
.vis-tickets-foot i { color: var(--red); margin-right: 6px; }
.vis-tickets-foot a {
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.vis-tickets-foot a:hover { background: #c81e21; }

.vis-photo-note {
  max-width: 1080px;
  margin: 16px auto 0;
  background: #fff;
  border: 1px dashed var(--vis-line);
  border-radius: 6px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .88rem;
  color: var(--text);
}
.vis-photo-note i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(233,21,24,.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vis-photo-note strong { color: var(--navy); }


/* ─── HALLS / FLOOR INTRODUCTION ─── */
.vis-section-halls {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.vis-halls-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(201,162,74,.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(233,21,24,.06), transparent 60%),
    linear-gradient(180deg, #021a35 0%, #031F3E 100%);
  z-index: 0;
}
.vis-halls-wrap { position: relative; z-index: 1; }
.vis-section-halls .vis-sec-title { color: #fff; }
.vis-section-halls .vis-sec-desc { color: rgba(255,255,255,.78); }

.vis-halls {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.vis-hall {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: stretch;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--gold, #C9A24A);
  border-radius: 8px;
  padding: 22px 26px;
  transition: background .25s, transform .25s, border-color .25s;
}
.vis-hall:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--gold-light, #E5C97B);
  transform: translateX(4px);
}
.vis-hall-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.1);
  padding-right: 24px;
}
.vis-hall-num span {
  font-family: 'Montserrat', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light, #E5C97B);
  line-height: 1;
  letter-spacing: .04em;
}
.vis-hall-num em {
  display: block;
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}

.vis-hall-body { padding: 4px 0; }
.vis-hall-tag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.vis-hall-tag-gold { color: var(--gold-light, #E5C97B); }

.vis-hall-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: .005em;
}
.vis-hall-desc {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin: 0 0 12px;
}
.vis-hall-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vis-hall-tags li {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.vis-hall-featured {
  background: linear-gradient(90deg, rgba(201,162,74,.10), rgba(201,162,74,.02));
  border-color: rgba(201,162,74,.45);
  border-left-width: 4px;
}
.vis-hall-featured .vis-hall-num span { color: var(--gold, #C9A24A); }

.vis-halls-foot {
  max-width: 1080px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 6px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}
.vis-halls-foot i { color: var(--gold-light, #E5C97B); }
.vis-halls-foot a { color: var(--gold-light, #E5C97B); text-decoration: underline; }
.vis-halls-foot a:hover { color: #fff; }


/* ─── GUIDES ─── */
.vis-guides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.vis-guide {
  background: #fff;
  border: 1px solid var(--vis-line);
  border-radius: 8px;
  padding: 30px 32px;
  position: relative;
}
.vis-guide-flag {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--red);
  color: #fff;
  padding: 6px 14px 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  border-radius: 0 0 4px 4px;
}
.vis-guide-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.vis-guide-lang i { color: var(--red); }
.vis-guide-desc {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 22px;
}
.vis-guide-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.vis-gprice {
  background: var(--vis-bg);
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
}
.vis-gprice-people {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.vis-gprice-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.vis-gprice-amount em {
  font-style: normal;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}
.vis-guide-foot {
  font-size: .8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--vis-line);
}
.vis-guide-foot i { color: var(--red); }


/* ─── LOCATION ─── */
.vis-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.vis-map {
  background: #ddd;
  border-radius: 8px;
  overflow: hidden;
  min-height: 360px;
  position: relative;
}
.vis-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.vis-loc-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vis-loc-item {
  background: #fff;
  border: 1px solid var(--vis-line);
  border-radius: 6px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.vis-loc-item i {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.vis-loc-item strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.vis-loc-item p,
.vis-loc-item a {
  font-size: .98rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  text-decoration: none;
}
.vis-loc-item a:hover { color: var(--red); }


/* ─── SERVICES (icon grid) ─── */
.vis-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.vis-svc {
  background: #fff;
  border: 1px solid var(--vis-line);
  border-radius: 8px;
  padding: 26px 22px;
  text-align: center;
  transition: all .2s;
}
.vis-svc:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 16px 32px rgba(3,31,62,.06);
}
.vis-svc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #022954);
  color: var(--gold-light, #d4a93f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.vis-svc strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.vis-svc span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}


/* ─── APP / AUDIO TOUR (split feature) ─── */
.vis-app {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.vis-app-text h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: .005em;
}
.vis-app-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin: 0 0 26px;
}
.vis-app-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vis-app-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .94rem;
  color: rgba(255,255,255,.88);
}
.vis-app-features li i {
  color: var(--gold-light, #d4a93f);
  margin-top: 4px;
}
.vis-app-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.vis-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--navy);
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s;
}
.vis-app-btn:hover { transform: translateY(-2px); }
.vis-app-btn i { font-size: 1.6rem; color: var(--navy); }
.vis-app-btn span { display: block; }
.vis-app-btn small {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
}

.vis-app-visual {
  position: relative;
  height: 420px;
}
.vis-app-phone {
  position: absolute;
  inset: 0;
  background-image: url('../../Photo/_DSC7572.JPG');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.vis-app-phone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3,31,62,.5) 100%);
  border-radius: 12px;
}


/* ─── RULES ─── */
.vis-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.vis-rule {
  background: #fff;
  border: 1px solid var(--vis-line);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vis-rule i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(233,21,24,.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.vis-rule strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.vis-rule p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}


/* ─── FAQ ─── */
.vis-faq {
  max-width: 860px;
  margin: 0 auto;
}
.vis-faq details {
  background: #fff;
  border: 1px solid var(--vis-line);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}
.vis-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
  font-size: .98rem;
  transition: background .2s;
}
.vis-faq summary::-webkit-details-marker { display: none; }
.vis-faq summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 300;
  line-height: 1;
  transition: transform .2s;
}
.vis-faq details[open] summary::after { content: '−'; }
.vis-faq details[open] summary { background: var(--vis-bg); }
.vis-faq details p {
  padding: 0 24px 22px;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}


/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .vis-hero { height: 60vh; min-height: 380px; }
  .vis-quick-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vis-hours-grid { grid-template-columns: 1fr; }
  .vis-tickets-head, .vis-ticket-row { grid-template-columns: 1.4fr 80px 80px 80px; padding: 14px 16px; font-size: .8rem; }
  .vis-tickets-head { font-size: .65rem; padding: 12px 16px; }
  .vis-ticket-cat i { width: 30px; height: 30px; font-size: .76rem; }
  .vis-ticket-cat strong { font-size: .86rem; }
  .vis-ticket-cat span { font-size: .7rem; }
  .vis-guides { grid-template-columns: 1fr; }
  .vis-loc-grid { grid-template-columns: 1fr; }
  .vis-rules-grid { grid-template-columns: 1fr; }
  .vis-app { grid-template-columns: 1fr; }
  .vis-app-visual { height: 300px; }
  .vis-section { padding: 50px 0; }
  .vis-section-halls { padding: 60px 0; }
  .vis-hall { grid-template-columns: 70px 1fr; gap: 16px; padding: 18px 18px; }
  .vis-hall-num { padding-right: 14px; }
  .vis-hall-num span { font-size: 1.7rem; }
  .vis-hall-num em { font-size: .58rem; letter-spacing: .18em; }
  .vis-hall-title { font-size: 1.05rem; }
  .vis-hall-desc { font-size: .85rem; }
}

/* ===== merged: visit-hub.css ===== */
/* ============================================================
   visit-hub.css — Visit Hub хуудасны загвар
   vh- prefix. index.css-ийн дараа уншигдана.
   Brandbook: --navy #031F3E, --bb-red #E91518, --gold #C9A24A
   Mobile-first. Breakpoint: 600 / 900 / 1200
   ============================================================ */

.vh-body {
  background: #FAF8F3;
  color: var(--text, #222);
}

/* ─── Skip link (a11y) ─── */
.vh-skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  transition: top .2s;
}
.vh-skip-link:focus { top: 0; outline: 3px solid var(--gold, #C9A24A); }


/* ─── Shared buttons ─── */
.vh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.vh-btn-sm { padding: 10px 18px; font-size: .76rem; }
.vh-btn-primary { background: var(--bb-red, #E91518); color: #fff; }
.vh-btn-primary:hover { background: #c81418; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(233,21,24,.25); }
.vh-btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.vh-btn-ghost-light:hover { background: rgba(255,255,255,.18); border-color: #fff; }


/* ─── Shared section head ─── */
.vh-sec-head {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}
.vh-sec-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bb-red, #E91518);
  margin-bottom: 10px;
}
.vh-sec-title {
  font-family: 'Montserrat', 'Noto Sans Mongolian', sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy, #031F3E);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.vh-sec-desc {
  font-size: 1rem;
  color: var(--muted, #5a5a5a);
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.65;
}
.vh-sec-desc strong { color: var(--navy); font-weight: 700; }

.vh-sec-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--navy);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all .2s;
}
.vh-sec-cta:hover { color: var(--bb-red); border-color: var(--bb-red); gap: 12px; }

.vh-mini-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-light, #E5C97B);
  display: inline-block;
}


/* ════════════════════════════════════════════════════
   § 1 — HERO (split: text + quick-action box)
   ════════════════════════════════════════════════════ */
.vh-hero {
  position: relative;
  padding: 60px 0 50px;
  color: #fff;
  overflow: hidden;
  min-height: 0;
}
.vh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55) saturate(1.15);
}
.vh-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3,31,62,.92) 0%, rgba(3,31,62,.55) 55%, rgba(3,31,62,.88) 100%),
    radial-gradient(ellipse at 85% 15%, rgba(201,162,74,.20), transparent 55%);
}

.vh-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}

.vh-hero-text { max-width: 600px; }
.vh-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light, #E5C97B);
  border: 1px solid rgba(201,162,74,.5);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.vh-hero-title {
  font-family: 'Montserrat', 'Noto Sans Mongolian', sans-serif;
  font-size: clamp(1.45rem, 6vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.vh-hero-desc {
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  margin: 0 0 20px;
}
.vh-hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.vh-hero-meta-link {
  color: rgba(255,255,255,.95);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all .2s;
}
.vh-hero-meta-link:hover { color: var(--gold-light, #E5C97B); border-color: var(--gold-light); }
.vh-hero-meta-link i { color: var(--gold-light); }

/* Quick-action box (right side) */
.vh-hero-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 22px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  gap: 18px;
}
.vh-hero-box-status {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.vh-hero-box-status .vh-status-pill {
  margin-bottom: 4px;
  font-size: .68rem;
}
.vh-hero-box-time {
  font-family: 'Montserrat', monospace;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light, #E5C97B);
  letter-spacing: -.01em;
  line-height: 1;
}
.vh-hero-box-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
}
.vh-hero-box-sub span {
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', monospace;
}
.vh-hero-box-season {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 6px;
}

/* Main book CTA */
.vh-hero-book {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--bb-red, #E91518);
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}
.vh-hero-book:hover {
  background: #c81418;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(233,21,24,.35);
}
.vh-hero-book-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.vh-hero-book strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .005em;
}
.vh-hero-book small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  color: rgba(255,255,255,.85);
  margin-top: 2px;
  font-weight: 500;
}
.vh-hero-book small i { font-size: .66rem; }

.vh-hero-box-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.vh-hero-box-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  transition: all .2s;
}
.vh-hero-box-foot a:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold-light);
}
.vh-hero-box-foot i { color: var(--gold-light); }


/* ════════════════════════════════════════════════════
   § 2 — PERSONA SELECTOR
   ════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════
   § 2 — PLAN-A-VISIT CTA (compact)
   ════════════════════════════════════════════════════ */
.vh-plan-cta {
  padding: 48px 0;
  background: #fff;
  position: relative;
}
.vh-plan-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold, #C9A24A), transparent);
}
.vh-plan-card {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #FAF8F3 0%, #fff 100%);
  border: 1px solid #EFE9DA;
  border-radius: 12px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
}
.vh-plan-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,162,74,.15), transparent 70%);
  pointer-events: none;
}
.vh-plan-text { position: relative; z-index: 1; }
.vh-plan-text .vh-sec-tag { margin-bottom: 8px; }
.vh-plan-text h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.25;
}
.vh-plan-text p {
  font-size: .95rem;
  color: var(--text, #2a2a2a);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 720px;
}
.vh-plan-text p strong { color: var(--navy); font-weight: 700; }
.vh-plan-icons {
  display: grid;
  grid-template-columns: repeat(3, 56px);
  gap: 10px;
  justify-content: start;
  position: relative;
  z-index: 1;
}
.vh-plan-icons span {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #EFE9DA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bb-red, #E91518);
  font-size: 1.2rem;
  transition: all .25s;
}
.vh-plan-card:hover .vh-plan-icons span:nth-child(odd) { transform: translateY(-3px); border-color: var(--bb-red); }
.vh-plan-card:hover .vh-plan-icons span:nth-child(even) { transform: translateY(3px); border-color: var(--gold, #C9A24A); }


/* ════════════════════════════════════════════════════
   § 2-legacy — original PERSONA grid (kept for plan.html)
   ════════════════════════════════════════════════════ */
.vh-persona {
  padding: 56px 0;
  background: #fff;
  position: relative;
}
.vh-persona::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold, #C9A24A), transparent);
}
.vh-persona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 40px;
}
.vh-persona-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  background: #FAF8F3;
  border: 2px solid #EFE9DA;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.vh-persona-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color .25s;
}
.vh-persona-card:hover,
.vh-persona-card:focus-visible {
  background: #fff;
  border-color: var(--bb-red, #E91518);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(3,31,62,.10);
  outline: none;
}
.vh-persona-card:focus-visible::after { border-color: var(--gold); }
.vh-persona-icon {
  font-size: 2.2rem;
  color: var(--bb-red, #E91518);
  margin-bottom: 6px;
}
.vh-persona-card strong {
  font-family: 'Montserrat', 'Noto Sans Mongolian', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.vh-persona-card > span:not(.vh-persona-go) {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
  flex-grow: 1;
}
.vh-persona-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bb-red);
  transition: gap .2s;
}
.vh-persona-card:hover .vh-persona-go { gap: 12px; }


/* ════════════════════════════════════════════════════
   § 3 — HOURS — live status banner + season tabs
   ════════════════════════════════════════════════════ */
.vh-hours {
  padding: 56px 0;
  background: #FAF8F3;
  text-align: center;
}

/* Status pill (used in hero box) */
.vh-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #6fdd86;
}
.vh-status-pill.vh-status-closed { color: #ff8585; }
.vh-status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

/* Season tabs */
.vh-season-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto 14px;
}
.vh-season-tab {
  background: #fff;
  border: 2px solid #EFE9DA;
  border-radius: 8px 8px 0 0;
  padding: 14px 18px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: all .2s;
  position: relative;
}
.vh-season-tab i {
  font-size: 1.3rem;
  color: var(--muted);
  width: 28px;
  text-align: center;
}
.vh-season-tab[data-season="summer"] i { color: var(--gold, #C9A24A); }
.vh-season-tab[data-season="winter"] i { color: #4A8BBC; }
.vh-season-name {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.vh-season-date {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  font-family: monospace;
}
.vh-season-tab.is-current::after {
  content: 'ИДЭВХТЭЙ';
  position: absolute;
  top: -10px;
  right: 12px;
  background: #2ea043;
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 3px 10px;
  border-radius: 100px;
}
.vh-season-tab.is-on {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  border-bottom-color: var(--navy);
}
.vh-season-tab.is-on .vh-season-name { color: #fff; }
.vh-season-tab.is-on .vh-season-date { color: var(--gold-light); }
.vh-season-tab.is-on i { color: var(--gold-light) !important; }

/* Season panels */
.vh-season-panels {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.vh-season-panel {
  display: none;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 0 0 10px 10px;
  padding: 24px 28px;
}
.vh-season-panel.is-on {
  display: block;
  animation: vhFade .25s ease-out;
}
@keyframes vhFade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}
.vh-season-panel header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid #EFE9DA;
}
.vh-season-panel header > i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.vh-season-panel[data-season="summer"] header > i { background: rgba(201,162,74,.15); color: var(--gold, #C9A24A); }
.vh-season-panel[data-season="winter"] header > i { background: rgba(74,139,188,.15); color: #4A8BBC; }
.vh-season-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.vh-season-panel h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2px 0;
  font-family: 'Montserrat', sans-serif;
}
.vh-season-panel header p {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
}
.vh-season-dl {
  display: grid;
  gap: 4px;
  margin: 0;
}
.vh-season-dl > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #EFE9DA;
  font-size: .94rem;
}
.vh-season-dl > div:last-child { border-bottom: none; }
.vh-season-dl dt { color: var(--muted); font-weight: 500; margin: 0; }
.vh-season-dl dd {
  color: var(--navy);
  font-weight: 700;
  margin: 0;
  font-family: 'Montserrat', monospace;
}
.vh-season-dl .is-closed dt,
.vh-season-dl .is-closed dd {
  color: var(--bb-red);
  font-style: italic;
}
.vh-season-dl .is-closed dt::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 8px;
  color: var(--bb-red);
}


/* ════════════════════════════════════════════════════
   § 4 — TICKETS preview + price matrix
   ════════════════════════════════════════════════════ */
.vh-tickets {
  padding: 56px 0;
  background: #fff;
  text-align: center;
}
.vh-tickets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 40px auto 0;
  text-align: left;
}
.vh-ticket {
  background: #FAF8F3;
  border: 2px solid #EFE9DA;
  border-radius: 10px;
  padding: 30px 28px;
  position: relative;
  transition: all .25s;
}
.vh-ticket:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(3,31,62,.08); }
.vh-ticket-popular {
  border-color: var(--bb-red);
  background: #fff;
}
.vh-ticket-special {
  border-color: var(--gold, #C9A24A);
  background: linear-gradient(135deg, #fff, #fdfbf3);
}
.vh-ticket-combo {
  border-color: var(--navy);
  background: linear-gradient(135deg, #fff, #f3f5fa);
}
.vh-ticket-free {
  border-color: #2ea043;
  background: linear-gradient(135deg, #fff, #f3fbf5);
}
.vh-ticket-badge-gold { background: var(--gold, #C9A24A); }
.vh-ticket-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--gold);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.vh-ticket-badge-free { background: #2ea043; }
.vh-ticket-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.vh-ticket-popular .vh-ticket-icon { color: var(--bb-red); }
.vh-ticket-special .vh-ticket-icon { color: var(--gold); }
.vh-ticket-free .vh-ticket-icon { color: #2ea043; }
.vh-ticket h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.3;
}
.vh-ticket-price {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: .9rem;
}
.vh-ticket-price strong {
  font-family: 'Montserrat', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bb-red);
  letter-spacing: -.02em;
}
.vh-ticket-special .vh-ticket-price strong { color: var(--gold-deep, #8C6A1F); }
.vh-ticket-free .vh-ticket-price strong { color: #2ea043; }
.vh-ticket-note {
  font-size: .82rem;
  color: var(--muted);
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #d8d0bd;
}
.vh-ticket-feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.vh-ticket-feat li {
  font-size: .86rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vh-ticket-feat i {
  color: var(--bb-red);
  font-size: .76rem;
  flex-shrink: 0;
}
.vh-ticket-special .vh-ticket-feat i { color: var(--gold); }
.vh-ticket-free .vh-ticket-feat i { color: #2ea043; }
.vh-ticket-combo .vh-ticket-icon { color: var(--navy); }
.vh-ticket-combo .vh-ticket-price strong { color: var(--navy); }
.vh-ticket-combo .vh-ticket-feat i { color: var(--navy); }


/* Price matrix (collapsible) */
.vh-price-table {
  max-width: 1100px;
  margin: 28px auto 0;
  background: #FAF8F3;
  border: 1px solid #EFE9DA;
  border-radius: 10px;
  overflow: hidden;
}
.vh-price-table summary {
  padding: 16px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
  font-size: .94rem;
  list-style: none;
  transition: background .2s;
}
.vh-price-table summary::-webkit-details-marker { display: none; }
.vh-price-table summary:hover { background: #fff; }
.vh-price-table summary i:first-child { color: var(--bb-red); margin-right: 8px; }
.vh-price-arrow { transition: transform .25s; color: var(--muted); }
.vh-price-table[open] .vh-price-arrow { transform: rotate(180deg); }

.vh-price-scroll {
  background: #fff;
  border-top: 1px solid #EFE9DA;
  overflow-x: auto;
}
.vh-price-matrix {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .9rem;
  text-align: left;
}
.vh-price-matrix th, .vh-price-matrix td {
  padding: 14px 16px;
  border-bottom: 1px solid #EFE9DA;
  vertical-align: middle;
}
.vh-price-matrix thead th {
  background: var(--navy);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 1;
}
.vh-price-matrix thead th .th-rom {
  display: inline-block;
  background: var(--gold-light, #E5C97B);
  color: var(--navy);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: serif;
  margin-bottom: 4px;
}
.vh-price-matrix tbody tr:hover { background: #FAF8F3; }
.vh-price-matrix td:first-child { font-weight: 700; color: var(--navy); }
.vh-price-matrix td small { color: var(--muted); font-weight: 500; }
.vh-price-matrix .td-rowspan {
  text-align: center;
  background: #FAF8F3;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.vh-price-matrix .td-free {
  text-align: center;
  background: rgba(46,160,67,.08);
  color: #1b6e2c;
  font-weight: 700;
  font-style: italic;
}
.vh-price-matrix .is-free td { background: rgba(46,160,67,.04); }
.vh-price-matrix .is-primary td { background: rgba(233,21,24,.04); }
.vh-price-matrix .is-primary td:nth-child(3),
.vh-price-matrix .is-primary td:nth-child(4),
.vh-price-matrix .is-primary td:nth-child(5) {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--bb-red);
}
.vh-price-matrix .is-extra td { background: rgba(201,162,74,.06); font-size: .84rem; }

.vh-price-sub {
  margin: 24px 22px 12px;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .005em;
}
.vh-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 22px 22px;
}
.vh-guide {
  background: #fff;
  border: 1px solid #EFE9DA;
  border-radius: 6px;
  padding: 16px 20px;
}
.vh-guide-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bb-red);
  margin-bottom: 10px;
}
.vh-guide ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.vh-guide li {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed #EFE9DA;
  font-size: .88rem;
}
.vh-guide li:last-child { border-bottom: none; }
.vh-guide li span { color: var(--navy); font-weight: 600; }
.vh-guide li strong { color: var(--bb-red); font-weight: 700; font-family: 'Montserrat', monospace; }
.vh-guide li em { font-style: normal; font-size: .76rem; color: var(--muted); text-align: right; }


.vh-tickets-foot {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
}


/* ════════════════════════════════════════════════════
   § 5 — HALLS — filter, tally, thumbs, cross-section
   ════════════════════════════════════════════════════ */
.vh-halls {
  padding: 56px 0;
  background: #FAF8F3;
  text-align: center;
}

/* Control row: filter chips + tally */
.vh-halls-control {
  max-width: 1100px;
  margin: 28px auto 24px;
  display: grid;
  gap: 16px;
  text-align: left;
}
.vh-halls-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.vh-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1.5px solid #EFE9DA;
  border-radius: 100px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.vh-chip i { font-size: .82rem; color: var(--muted); }
.vh-chip:hover { border-color: var(--bb-red); color: var(--bb-red); }
.vh-chip:hover i { color: var(--bb-red); }
.vh-chip.is-on {
  background: var(--bb-red);
  border-color: var(--bb-red);
  color: #fff;
  box-shadow: 0 6px 14px rgba(233,21,24,.25);
}
.vh-chip.is-on i { color: #fff; }

.vh-halls-tally {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.vh-halls-tally::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(201,162,74,.2), transparent 70%);
  pointer-events: none;
}
.vh-tally-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bb-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.vh-halls-tally > div { display: grid; gap: 2px; position: relative; z-index: 1; }
.vh-halls-tally strong {
  font-size: 1rem;
  color: var(--gold-light, #E5C97B);
  font-family: 'Montserrat', monospace;
}
.vh-halls-tally strong span { font-family: inherit; color: #fff; }
.vh-halls-tally > div > span {
  font-size: .8rem;
  color: rgba(255,255,255,.78);
}
.vh-halls-tally > div > span strong {
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', monospace;
  letter-spacing: -.005em;
}

.vh-halls-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
}

/* Building cross-section — hidden on mobile, shown on desktop */
.vh-building { display: none; }
.vh-floors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vh-floor {
  background: linear-gradient(135deg, var(--navy), #022954);
  color: rgba(255,255,255,.5);
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 14px;
  cursor: pointer;
  position: relative;
  transition: all .25s;
  border-radius: 2px;
}
.vh-floor:hover, .vh-floor.is-active { color: #fff; background: linear-gradient(135deg, #033a72, #03224b); }
.vh-floor.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--bb-red);
}
.vh-floor-rom {
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  min-width: 36px;
}
.vh-floor-num {
  font-size: .76rem;
  color: rgba(255,255,255,.4);
  font-family: monospace;
}
.vh-floor-star {
  margin-left: auto;
  color: var(--gold);
  font-size: 1rem;
}
.vh-floor-featured { background: linear-gradient(135deg, #3B0002, var(--navy)); color: #fff; }
.vh-building-base {
  height: 14px;
  margin-top: 4px;
  background: linear-gradient(180deg, var(--navy), #000);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

/* Hall cards (with thumb image) */
.vh-halls-stack {
  display: grid;
  gap: 14px;
}
.vh-hall {
  background: #fff;
  border: 1px solid #EFE9DA;
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.vh-hall.is-hidden {
  display: none;
}
.vh-hall:hover {
  border-color: var(--bb-red);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(3,31,62,.10);
}
.vh-hall-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  position: relative;
}
.vh-hall-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.45) 100%);
}
.vh-hall-body {
  padding: 20px 22px 22px;
  position: relative;
}
.vh-hall-featured {
  background: linear-gradient(135deg, #fff, #fdfbf3);
  border-color: var(--gold);
}
.vh-hall-featured:hover { border-color: var(--gold-deep); }
.vh-hall-featured .vh-hall-thumb::after {
  background: linear-gradient(180deg, rgba(59,0,2,.1) 0%, rgba(3,31,62,.65) 100%);
}
.vh-hall-star {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.vh-hall-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.vh-hall-rom {
  font-family: 'Montserrat', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bb-red);
  letter-spacing: .04em;
}
.vh-hall-featured .vh-hall-rom { color: var(--gold-deep); }
.vh-hall-period {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.vh-hall-title {
  font-family: 'Montserrat', 'Noto Sans Mongolian', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.25;
}
.vh-hall-tag {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 14px;
}
.vh-hall-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.vh-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: #EFE9DA;
  color: var(--navy);
}
.vh-badge-gold {
  background: var(--gold);
  color: #fff;
}
.vh-hall-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bb-red);
  text-decoration: none;
  transition: gap .2s;
}
.vh-hall-cta:hover { gap: 12px; }

.vh-halls-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border: 1px dashed #EFE9DA;
  border-radius: 10px;
  color: var(--muted);
  font-size: .94rem;
  font-style: italic;
}


/* ════════════════════════════════════════════════════
   § 6 — ENHANCEMENT
   ════════════════════════════════════════════════════ */
.vh-enhance {
  padding: 56px 0;
  background: #fff;
  text-align: center;
}
.vh-enhance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}
.vh-enhance-card {
  display: block;
  background: #FAF8F3;
  border: 1px solid #EFE9DA;
  border-radius: 10px;
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
}
.vh-enhance-card:hover, .vh-enhance-card:focus-visible {
  background: #fff;
  border-color: var(--bb-red);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(3,31,62,.08);
  outline: none;
}
.vh-enhance-icon {
  font-size: 1.8rem;
  color: var(--bb-red);
  margin-bottom: 12px;
}
.vh-enhance-card h3 {
  font-family: 'Montserrat', 'Noto Sans Mongolian', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.vh-enhance-card > p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.5;
}
.vh-enhance-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 6px;
}
.vh-enhance-card li {
  font-size: .82rem;
  color: var(--text);
  position: relative;
  padding-left: 18px;
}
.vh-enhance-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bb-red);
  font-weight: 700;
}
.vh-enhance-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bb-red);
  transition: gap .2s;
}
.vh-enhance-card:hover .vh-enhance-go { gap: 12px; }


/* ════════════════════════════════════════════════════
   § 7 — PREPARE (tips + faq + transport + contact)
   ════════════════════════════════════════════════════ */
.vh-prepare {
  padding: 56px 0;
  background: #FAF8F3;
  text-align: center;
}

.vh-tips-inline {
  list-style: none;
  padding: 0;
  margin: 28px auto 40px;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.vh-tips-inline li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #EFE9DA;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .82rem;
  color: var(--navy);
  font-weight: 600;
}
.vh-tips-inline i { color: var(--bb-red); font-size: .82rem; }

.vh-prepare-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

/* FAQ */
.vh-faq-item {
  background: #fff;
  border: 1px solid #EFE9DA;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 0;
  overflow: hidden;
  transition: border-color .2s;
}
.vh-faq-item:hover, .vh-faq-item[open] { border-color: var(--bb-red); }
.vh-faq-item summary {
  padding: 16px 22px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  list-style: none;
  padding-right: 50px;
}
.vh-faq-item summary::-webkit-details-marker { display: none; }
.vh-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bb-red);
  transition: transform .25s;
}
.vh-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.vh-faq-item p {
  margin: 0;
  padding: 0 22px 18px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
}
.vh-faq-item p a { color: var(--bb-red); font-weight: 700; }

/* Transport */
.vh-transport-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  background: #fff;
  border: 1px solid #EFE9DA;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.vh-transport-item > i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light, #E5C97B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.vh-transport-item strong {
  display: block;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.vh-transport-item span {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 4px;
}
.vh-transport-item a {
  font-size: .82rem;
  color: var(--bb-red);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Contact */
.vh-contact {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--navy), #022954);
  color: #fff;
  padding: 30px 36px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vh-contact::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(201,162,74,.18), transparent 70%);
  pointer-events: none;
}
.vh-contact strong {
  font-size: 1.15rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.vh-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.vh-contact-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  transition: all .2s;
}
.vh-contact-actions a:hover { background: rgba(255,255,255,.1); border-color: var(--gold-light); }
.vh-contact-actions i { color: var(--gold-light); }


/* ════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   600 = small tablet | 900 = tablet | 1200 = desktop
   ════════════════════════════════════════════════════ */

@media (min-width: 600px) {
  .vh-persona-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-tickets-grid { grid-template-columns: repeat(3, 1fr); }
  .vh-tickets-foot { flex-direction: row; }
  .vh-enhance-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-guide-grid { grid-template-columns: 1fr 1fr; }
  .vh-halls-control { grid-template-columns: 1fr auto; align-items: center; }
  .vh-halls-filter { justify-content: flex-start; }
}

@media (min-width: 900px) {
  .vh-persona-grid { grid-template-columns: repeat(3, 1fr); }
  .vh-plan-card { grid-template-columns: 1fr 200px; padding: 36px 40px; gap: 36px; }
  .vh-plan-icons { grid-template-columns: repeat(3, 1fr); }
  .vh-enhance-grid { grid-template-columns: repeat(4, 1fr); }
  .vh-prepare-split { grid-template-columns: 1fr 1fr; gap: 40px; }
  .vh-contact { flex-direction: row; justify-content: space-between; text-align: left; }
  .vh-hall { grid-template-columns: 280px 1fr; }
  .vh-hall-thumb { height: 100%; min-height: 200px; }
  .vh-hero-grid { grid-template-columns: 1.4fr 1fr; gap: 40px; }
  .vh-hero { padding: 80px 0 70px; }
}

@media (min-width: 1200px) {
  .vh-halls-layout {
    grid-template-columns: 120px 1fr;
    gap: 40px;
  }
  .vh-building {
    display: block;
    position: sticky;
    top: 100px;
    align-self: start;
  }
}


/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* ─── Focus visible (a11y) ─── */
.vh-body :focus-visible {
  outline: 3px solid var(--gold, #C9A24A);
  outline-offset: 2px;
}
.vh-body a:focus-visible {
  outline-offset: 4px;
}

/* ===== merged: visit_v2.css ===== */
/* ═══════════════════════════════════════════════
   visit_v2.css — Музейд зочлох v2
   Үнэ → 3 highlight → Цаг → Танхим
   prefix: v2-*
   ═══════════════════════════════════════════════ */

:root {
  --v2-navy: #031F3E;
  --v2-navy-soft: #1A3458;
  --v2-red: #E91518;
  --v2-red-soft: #F94144;
  --v2-maroon: #3B0002;
  --v2-accent: #C9A24A;       /* алтан — зөвхөн жижиг accent-д */
  --v2-bg: #F4F6F9;            /* нейтрал саарал-цэнхэр */
  --v2-bg-soft: #FFFFFF;
  --v2-border: #DDE3EA;
  --v2-border-soft: #ECEFF4;
  --v2-text: #1F2937;
  --v2-text-mute: #6B7280;
  --v2-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --v2-shadow-md: 0 6px 24px rgba(15, 23, 42, 0.08);
  --v2-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --v2-radius: 12px;
}

.v2-body {
  background: #fff;
  color: var(--v2-text);
}

/* ─── Section head ─── */
.v2-sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.v2-sec-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-navy);
  padding: 0.35rem 0.95rem;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  background: #fff;
  margin-bottom: 1rem;
}
.v2-sec-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--v2-navy);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.v2-sec-desc {
  color: var(--v2-text-mute);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}
.v2-sec-desc strong { color: var(--v2-navy); }

/* ─── Buttons ─── */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.v2-btn--primary {
  background: var(--v2-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(233, 21, 24, 0.28);
}
.v2-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233, 21, 24, 0.40);
}
.v2-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--v2-navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.v2-link-cta:hover { border-bottom-color: var(--v2-navy); }
.v2-link-cta i { transition: transform 0.2s ease; }
.v2-link-cta:hover i { transform: translateX(3px); }


/* ═══════════════════════════════════════════════
   § ҮНЭ — matrix + 3 highlight banner + guide
   ═══════════════════════════════════════════════ */
.v2-fare {
  padding: 5rem 0 4rem;
  background: var(--v2-bg);
}

/* — Block (matrix, guide) — */
.v2-fare-block + .v2-fare-block,
.v2-fare-block + .v2-highlight,
.v2-highlight + .v2-fare-block {
  margin-top: 2rem;
}
.v2-block-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.v2-block-head > i {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--v2-navy);
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
}
.v2-block-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin: 0;
}
.v2-block-note {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--v2-text-mute);
}

.v2-block-head-en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--v2-text-mute);
  letter-spacing: 0.02em;
  margin-left: 0.4rem;
}

/* — Matrix table (bilingual, зургийн дагуу) — */
.v2-matrix-scroll {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--v2-border);
  background: var(--v2-bg-soft);
  box-shadow: var(--v2-shadow-sm);
}
.v2-matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.v2-matrix th,
.v2-matrix td {
  padding: 1rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--v2-border-soft);
  border-right: 1px solid var(--v2-border-soft);
  font-size: 0.9rem;
  vertical-align: middle;
}
.v2-matrix th:last-child,
.v2-matrix td:last-child { border-right: none; }

/* Header */
.v2-matrix thead th {
  background: var(--v2-navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  vertical-align: middle;
  border-bottom: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 1.1rem 0.95rem;
  position: relative;
}
.v2-matrix thead th:last-child { border-right: none; }
.v2-mx-h-mn {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.3;
}
.v2-mx-h-en {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  color: #B8C2D1;
  margin-top: 0.25rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.v2-mx-h-note {
  display: block;
  font-size: 0.7rem;
  color: var(--v2-accent);
  margin-top: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.v2-mx-h-audience,
.v2-mx-h-age {
  width: 22%;
  min-width: 130px;
}

/* "БАГЦ" combo header (зургийн өнцгөн тэмдэг) */
.v2-mx-h-combo {
  background: linear-gradient(135deg, var(--v2-navy) 0%, var(--v2-navy-soft) 100%);
  position: relative;
}
.v2-mx-h-combo-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--v2-red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem 0.3rem 1.5rem;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.v2-mx-h-combo .v2-mx-h-mn strong { color: var(--v2-accent); margin: 0 0.15rem; }

/* Body */
.v2-matrix tbody tr:hover { background: var(--v2-bg); }
.v2-matrix tbody tr:last-child td { border-bottom: none; }

.v2-mx-aud {
  text-align: left;
  background: #FAFBFD;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--v2-navy);
  line-height: 1.4;
}
.v2-mx-mn {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--v2-navy);
  line-height: 1.4;
  font-size: 0.92rem;
}
.v2-mx-en {
  display: block;
  font-size: 0.75rem;
  color: var(--v2-text-mute);
  line-height: 1.3;
  margin-top: 0.2rem;
  font-style: italic;
}

/* Rowspan-той үнэ (Ахлах/Foreign/Ахмад → 15,000₮) */
.v2-mx-rowspan {
  background: #FFF7E0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--v2-navy);
  border-left: 2px solid var(--v2-accent);
  border-right: 2px solid var(--v2-accent);
}

/* Free rows */
.v2-mx-free .v2-mx-aud {
  background: #F0F7F0;
}
.v2-mx-free-cell {
  text-align: center;
  font-weight: 600;
  background: #F0F7F0;
  color: #2C6B2C;
  vertical-align: middle;
}
.v2-mx-free-cell strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.v2-mx-free-cell small {
  display: block;
  color: var(--v2-text-mute);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  font-weight: 400;
}

/* Primary (Adult) row */
.v2-mx-primary { background: rgba(233, 21, 24, 0.035); }
.v2-mx-primary .v2-mx-aud { background: rgba(233, 21, 24, 0.06); }
.v2-mx-primary td:not(.v2-mx-aud) {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--v2-navy);
}

/* Extra row */
.v2-mx-extra td:not(.v2-mx-aud) {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--v2-text-mute);
}
.v2-mx-extra .v2-mx-aud small {
  display: block;
  color: var(--v2-text-mute);
  font-size: 0.72rem;
  font-style: italic;
  margin-top: 0.15rem;
  font-weight: 400;
}

/* Compact (доод 3 мөр) — нарийсгасан row */
.v2-mx-compact td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  font-size: 0.85rem;
}
.v2-mx-compact .v2-mx-aud {
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--v2-navy);
}
.v2-mx-compact .v2-mx-free-cell strong {
  font-size: 0.9rem;
}

/* Generic price cell (Adult, Senior, Senior school...) */
.v2-matrix tbody td:not(.v2-mx-aud):not(.v2-mx-free-cell):not(.v2-mx-rowspan) {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--v2-text);
}

/* — 3 highlight (нимгэн horizontal banner) — */
.v2-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1.5rem 0;
}
.v2-hl-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.85rem;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-left: 3px solid var(--v2-navy);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.v2-hl-card:hover {
  background: #fff;
}
.v2-hl-card--special { border-left-color: var(--v2-red); }
.v2-hl-card--combo { border-left-color: var(--v2-navy-soft); }

/* Side хасагдсан — icon ашиглахгүй */
.v2-hl-side { display: none; }

/* Main: tag + title — нэг компакт block */
.v2-hl-main {
  min-width: 0;
}
.v2-hl-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v2-text-mute);
  margin-bottom: 0.15rem;
  line-height: 1;
}
.v2-hl-card--special .v2-hl-tag { color: var(--v2-red); }
.v2-hl-card--combo .v2-hl-tag { color: var(--v2-navy-soft); }

.v2-hl-main h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--v2-navy);
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v2-hl-main p {
  font-size: 0.72rem;
  color: var(--v2-text-mute);
  margin: 0.15rem 0 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v2-hl-main p em {
  font-style: normal;
  color: var(--v2-red);
  font-weight: 600;
}

/* Price — compact */
.v2-hl-price {
  text-align: right;
  line-height: 1;
  white-space: nowrap;
}
.v2-hl-price strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--v2-navy);
  letter-spacing: -0.01em;
}
.v2-hl-price span {
  font-size: 0.75rem;
  color: var(--v2-text-mute);
  margin-left: 0.1rem;
  font-weight: 600;
}
.v2-hl-card--special .v2-hl-price strong { color: var(--v2-red); }

/* — Guide grid — */
.v2-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.v2-guide {
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--v2-shadow-sm);
}
.v2-guide-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--v2-navy);
  margin-bottom: 0.75rem;
}
.v2-guide-lang i { color: var(--v2-navy-soft); }
.v2-guide ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v2-guide li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-top: 1px dashed var(--v2-border-soft);
  font-size: 0.9rem;
}
.v2-guide li:first-child { border-top: none; }
.v2-guide li span { color: var(--v2-text); }
.v2-guide li strong {
  font-weight: 700;
  color: var(--v2-red);
  font-family: 'Montserrat', sans-serif;
}
.v2-guide li em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--v2-text-mute);
}

/* — Fare foot — */
.v2-fare-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--v2-border);
}

/* Тасалбар авах сувгууд (Касс / KIOSK / Онлайн) */
.v2-buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.v2-buy-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--v2-bg);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
}
.v2-buy-icon {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--v2-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.v2-buy-body h4 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  color: var(--v2-navy);
}
.v2-buy-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--v2-text-mute);
}
.v2-buy-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--v2-red, #E91518);
  text-decoration: none;
}
@media (max-width: 860px) { .v2-buy-grid { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════
   § ЦАГИЙН ХУВААРЬ (тусдаа section)
   ═══════════════════════════════════════════════ */
.v2-hours {
  padding: 4rem 0;
  background: var(--v2-bg-soft);
  border-top: 1px solid var(--v2-border-soft);
  border-bottom: 1px solid var(--v2-border-soft);
}
.v2-hours .v2-sec-tag { background: var(--v2-bg); }

/* — 2-col grid: info | image — */
.v2-hours-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 1rem;
}
.v2-hours-info {
  display: flex;
  flex-direction: column;
}

/* Image side */
.v2-hours-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--v2-navy);
  transition: background-image 0.4s ease;
  box-shadow: var(--v2-shadow-md);
}
.v2-hours-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 31, 62, 0.65) 100%);
  pointer-events: none;
}
.v2-hours-img[data-season="summer"] {
  background-image: var(--summer-img, url('https://chinggismuseum.com/landing/b_ch_01.jpg'));
}
.v2-hours-img[data-season="winter"] {
  background-image: var(--winter-img, url('https://chinggismuseum.com/landing/web_desktop.jpg'));
}
.v2-hours-img-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--v2-navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.v2-hours-img[data-season="summer"] .v2-hours-img-label i {
  color: #F59E0B;
}
.v2-hours-img[data-season="winter"] .v2-hours-img-label i {
  color: #4A6FA5;
}

/* — Season tabs — */
.v2-season-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}
.v2-season-tab {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1.1rem 1.4rem;
  background: var(--v2-bg);
  border: 2px solid var(--v2-border);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  color: var(--v2-text);
  font-family: inherit;
}
.v2-season-tab i {
  font-size: 1.5rem;
  color: var(--v2-navy-soft);
  width: 2.25rem;
  text-align: center;
}
.v2-season-tab[data-season="winter"] i { color: #4A6FA5; }
.v2-season-tab div { display: flex; flex-direction: column; }
.v2-season-tab strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v2-navy);
}
.v2-season-tab span {
  font-size: 0.8rem;
  color: var(--v2-text-mute);
}
.v2-season-tab:hover {
  border-color: var(--v2-navy-soft);
  transform: translateY(-1px);
}
.v2-season-tab.is-active {
  border-color: var(--v2-navy);
  background: var(--v2-navy);
  color: #fff;
}
.v2-season-tab.is-active strong,
.v2-season-tab.is-active span,
.v2-season-tab.is-active i {
  color: #fff;
}

/* — Season panels — */
.v2-season-panels {
  margin: 0;
}
.v2-season-panel {
  display: none;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--v2-shadow-sm);
}
.v2-season-panel.is-active {
  display: block;
  animation: v2-fade-in 0.25s ease;
}
@keyframes v2-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.v2-season-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.v2-season-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.1rem;
  background: var(--v2-bg);
  border-radius: 8px;
  gap: 1rem;
  border-left: 3px solid var(--v2-navy);
}
.v2-season-day {
  font-weight: 600;
  color: var(--v2-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.v2-season-day i {
  color: var(--v2-navy-soft);
  font-size: 0.95rem;
}
.v2-season-time {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--v2-navy);
  letter-spacing: -0.01em;
}
.v2-season-row--ticket {
  border-left-color: var(--v2-navy-soft);
}
.v2-season-row--ticket .v2-season-time { color: var(--v2-navy-soft); }
.v2-season-row--closed {
  background: #FEF0F0;
  border-left-color: var(--v2-red);
}
.v2-season-row--closed .v2-season-day i,
.v2-season-row--closed .v2-season-day,
.v2-season-row--closed .v2-season-time { color: var(--v2-red); }

.v2-season-foot {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--v2-text-mute);
  font-style: italic;
  text-align: center;
}

.v2-hours-foot {
  text-align: left;
  margin-top: 1.5rem;
}


/* ═══════════════════════════════════════════════
   § ТАНХИМ — Floor-plan cross-section
   ═══════════════════════════════════════════════ */
.v2-halls {
  padding: 5rem 0 4rem;
  background: var(--v2-bg);
}
.v2-fp {
  display: grid;
  grid-template-columns: minmax(380px, 460px) 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1rem;
}

/* — Building cross-section — */
.v2-fp-building {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--v2-bg-soft);
  border-radius: 18px;
  box-shadow: var(--v2-shadow-lg);
  padding: 1.25rem;
  border: 1px solid var(--v2-border);
}
.v2-fp-roof {
  position: relative;
  height: 1.5rem;
  background:
    linear-gradient(135deg, var(--v2-maroon) 50%, transparent 50%) left top / 0.75rem 1.5rem repeat-x,
    linear-gradient(225deg, var(--v2-maroon) 50%, transparent 50%) left top / 0.75rem 1.5rem repeat-x;
  border-bottom: 3px solid var(--v2-navy);
  margin: 0 -1.25rem 0.75rem;
}
.v2-fp-floor {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  grid-template-areas:
    "rom tag min"
    "rom extras extras";
  align-items: center;
  gap: 0.5rem 1.15rem;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-bottom: 2px solid var(--v2-border);
  padding: 1rem 1.25rem;
  margin-bottom: 0.6rem;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--v2-text);
  transition: all 0.2s ease;
  position: relative;
  text-decoration: none;
}
.v2-fp-floor .v2-fp-rom { grid-area: rom; }
.v2-fp-floor .v2-fp-tag { grid-area: tag; }
.v2-fp-floor .v2-fp-min { grid-area: min; }
.v2-fp-floor .v2-fp-extras { grid-area: extras; }
.v2-fp-floor:hover,
.v2-fp-floor:focus-visible {
  background: var(--v2-bg);
  border-color: var(--v2-navy-soft);
  transform: translateX(-4px);
  box-shadow: -4px 4px 12px rgba(15, 23, 42, 0.06);
  outline: none;
}
.v2-fp-floor.is-active {
  background: var(--v2-navy);
  color: #fff;
  border-color: var(--v2-navy);
  transform: translateX(-4px);
  box-shadow: -6px 6px 18px rgba(3, 31, 62, 0.22);
}
.v2-fp-floor.is-active .v2-fp-rom { color: #fff; }
.v2-fp-floor.is-active .v2-fp-tag { color: #fff; }
.v2-fp-floor.is-active .v2-fp-min {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.v2-fp-rom {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--v2-navy);
  text-align: center;
  letter-spacing: 0;
}
.v2-fp-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--v2-text);
  line-height: 1.4;
}
.v2-fp-min {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--v2-navy-soft);
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  white-space: nowrap;
  background: var(--v2-bg);
}
/* Extra-rooms icon row inside each floor */
.v2-fp-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding-top: 0.2rem;
}
.v2-fp-extras i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--v2-bg);
  color: var(--v2-navy-soft);
  border: 1px solid var(--v2-border);
  border-radius: 5px;
  font-size: 0.7rem;
  cursor: help;
}
.v2-fp-floor.is-active .v2-fp-extras i {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}
.v2-fp-floor--featured-red.is-active .v2-fp-extras i {
  background: #fff;
  border-color: rgba(233, 21, 24, 0.3);
  color: var(--v2-red);
}
.v2-fp-floor--featured-gold.is-active .v2-fp-extras i {
  background: rgba(3, 31, 62, 0.1);
  border-color: rgba(3, 31, 62, 0.2);
  color: var(--v2-navy);
}

/* ─ Featured RED — 5 давхар (Их Монгол улс) ─ */
.v2-fp-floor--featured-red {
  border-color: var(--v2-red);
  border-width: 2px;
  border-bottom-width: 3px;
  background: linear-gradient(135deg, #FFFAFA 0%, #FEEEEE 100%);
}
.v2-fp-floor--featured-red .v2-fp-rom { color: var(--v2-red); }
.v2-fp-floor--featured-red.is-active {
  background: linear-gradient(135deg, #FFF5F5 0%, #FCDCDC 100%);
  border-color: var(--v2-red);
  border-width: 2px;
  border-bottom-width: 3px;
  box-shadow: 0 0 0 3px rgba(233, 21, 24, 0.18), -6px 6px 18px rgba(233, 21, 24, 0.15);
}
.v2-fp-floor--featured-red.is-active .v2-fp-rom { color: var(--v2-red); }
.v2-fp-floor--featured-red.is-active .v2-fp-tag { color: var(--v2-navy); }
.v2-fp-floor--featured-red.is-active .v2-fp-min {
  border-color: var(--v2-red);
  color: var(--v2-red);
  background: #fff;
}

/* ─ Featured GOLD — 9 давхар (Их хааны өргөө) ─ */
.v2-fp-floor--featured-gold {
  border-color: var(--v2-accent);
  border-width: 2px;
  border-bottom-width: 3px;
  background: linear-gradient(135deg, #FFFCF2 0%, #FAF0D2 100%);
}
.v2-fp-floor--featured-gold .v2-fp-rom { color: var(--v2-gold-deep, #8C6A1F); }
.v2-fp-floor--featured-gold.is-active {
  background: linear-gradient(135deg, var(--v2-accent) 0%, #B58C2D 100%);
  border-color: var(--v2-accent);
}
.v2-fp-floor--featured-gold.is-active .v2-fp-rom { color: #fff; }
.v2-fp-floor--featured-gold.is-active .v2-fp-tag { color: #fff; }
.v2-fp-floor--featured-gold.is-active .v2-fp-star--gold {
  background: var(--v2-navy);
  color: var(--v2-accent);
}

/* Star badge — top-right corner */
.v2-fp-star {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
}
.v2-fp-star--red {
  background: var(--v2-red);
  box-shadow: 0 2px 6px rgba(233, 21, 24, 0.4);
}
.v2-fp-star--gold {
  background: var(--v2-accent);
  color: var(--v2-navy);
  box-shadow: 0 2px 6px rgba(201, 162, 74, 0.5);
}

.v2-fp-ground {
  position: relative;
  margin: 0.5rem -1.25rem -1px;
  padding: 0.5rem 1.25rem 0.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.04) 100%);
  border-top: 2px solid var(--v2-navy);
  text-align: center;
  font-size: 0.72rem;
  color: var(--v2-text-mute);
  font-style: italic;
}
.v2-fp-ground-line {
  display: block;
  height: 6px;
  background: repeating-linear-gradient(
    45deg,
    var(--v2-navy),
    var(--v2-navy) 4px,
    transparent 4px,
    transparent 8px
  );
  border-radius: 2px;
  margin-bottom: 0.3rem;
}
.v2-fp-ground-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* — Detail panel — */
.v2-fp-detail {
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--v2-shadow-md);
  position: sticky;
  top: 8rem; /* site-header height (~7rem) + 1rem завсар */
  min-height: 360px;
  max-height: calc(100vh - 9rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--v2-border) transparent;
}
.v2-fp-detail::-webkit-scrollbar { width: 6px; }
.v2-fp-detail::-webkit-scrollbar-track { background: transparent; }
.v2-fp-detail::-webkit-scrollbar-thumb {
  background: var(--v2-border);
  border-radius: 999px;
}
.v2-fp-detail-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--v2-text-mute);
}
.v2-fp-detail-empty > i {
  font-size: 2.5rem;
  color: var(--v2-border);
  margin-bottom: 1rem;
  display: block;
}
.v2-fp-detail-empty p {
  font-size: 1rem;
  margin: 0 0 1.25rem;
}
.v2-fp-detail-empty small {
  display: block;
  font-size: 0.85rem;
}
.v2-fp-pick-default {
  background: none;
  border: none;
  color: var(--v2-red);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  border-bottom: 1px dashed var(--v2-red);
  padding: 0;
}
.v2-fp-pick-default:hover { border-bottom-style: solid; }

.v2-fp-detail-card header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--v2-border);
}
.v2-fp-detail-floor {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--v2-navy);
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.v2-fp-detail-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--v2-navy);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.v2-fp-detail-tagline {
  font-size: 1rem;
  color: var(--v2-text);
  margin: 0;
  line-height: 1.5;
}

.v2-fp-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}
.v2-fp-meta > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--v2-border-soft);
}
.v2-fp-meta > div:last-child { border-bottom: none; }
.v2-fp-meta dt {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--v2-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.v2-fp-meta dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--v2-navy);
}
.v2-fp-meta dd i {
  color: var(--v2-navy-soft);
  margin-right: 0.3rem;
}

.v2-fp-aud {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.v2-fp-aud li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--v2-bg);
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  color: var(--v2-text);
  font-weight: 500;
}
.v2-fp-aud li i {
  color: var(--v2-navy-soft);
  font-size: 0.85rem;
}

/* Preview rooms pill block */
.v2-fp-rooms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  background: var(--v2-bg);
  border-radius: 8px;
  border-left: 3px solid var(--v2-navy-soft);
}
.v2-fp-rooms:empty { display: none; }
.v2-fp-room {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  color: var(--v2-text);
  font-weight: 500;
}
.v2-fp-room i { color: var(--v2-navy-soft); font-size: 0.85rem; }

.v2-fp-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--v2-border-soft);
}


/* ═══════════════════════════════════════════════
   § HALL SLIDER (horizontal carousel)
   ═══════════════════════════════════════════════ */
.v2-hall-slider {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px dashed var(--v2-border);
}
.v2-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.v2-slider-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-navy);
  background: var(--v2-bg);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.v2-slider-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--v2-navy);
  margin: 0;
}
.v2-slider-nav {
  display: flex;
  gap: 0.5rem;
}
.v2-slider-btn {
  width: 40px;
  height: 40px;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  color: var(--v2-navy);
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.v2-slider-btn:hover:not(:disabled) {
  background: var(--v2-navy);
  color: #fff;
  border-color: var(--v2-navy);
  transform: scale(1.05);
}
.v2-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Track (scroll-snap carousel) */
.v2-slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--v2-border) transparent;
  padding: 0.5rem 0 1rem;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.v2-slider-track::-webkit-scrollbar { height: 6px; }
.v2-slider-track::-webkit-scrollbar-track { background: transparent; }
.v2-slider-track::-webkit-scrollbar-thumb {
  background: var(--v2-border);
  border-radius: 999px;
}

/* Slide card */
.v2-slide {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--v2-shadow-sm);
}
.v2-slide:hover {
  transform: translateY(-3px);
  box-shadow: var(--v2-shadow-md);
  border-color: var(--v2-navy-soft);
}
.v2-slide header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--v2-border-soft);
}
.v2-slide-rom {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--v2-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.v2-slide-min {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--v2-navy-soft);
  background: var(--v2-bg);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.v2-slide h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin: 0;
  line-height: 1.3;
}
.v2-slide p {
  font-size: 0.82rem;
  color: var(--v2-text-mute);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
.v2-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: var(--v2-navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 0;
  cursor: pointer;
  font-family: inherit;
  align-self: flex-start;
  border-bottom: 1px dashed var(--v2-navy-soft);
  transition: all 0.2s ease;
}
.v2-slide-cta:hover {
  border-bottom-style: solid;
  color: var(--v2-red);
}
.v2-slide-cta:hover i { transform: translateX(2px); }
.v2-slide-cta i { transition: transform 0.2s ease; font-size: 0.7rem; }

/* Badge */
.v2-slide-badge {
  position: absolute;
  top: -10px;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--v2-red);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(233, 21, 24, 0.4);
}
.v2-slide-badge i { font-size: 0.7rem; }
.v2-slide-badge--gold {
  background: var(--v2-accent);
  color: var(--v2-navy);
  box-shadow: 0 2px 6px rgba(201, 162, 74, 0.5);
}

/* Slide variants */
.v2-slide--red {
  border-color: var(--v2-red);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, #FEEEEE 100%);
}
.v2-slide--red .v2-slide-rom { color: var(--v2-red); }
.v2-slide--gold {
  border-color: var(--v2-accent);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, #FAF0D2 100%);
}
.v2-slide--gold .v2-slide-rom { color: var(--v2-gold-deep, #8C6A1F); }


/* ─── Бусад танхим slider — link card ─── */
.v2-slider-track--extras { padding-bottom: 0.75rem; }
.v2-extra {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--v2-shadow-sm);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  position: relative;
}
.v2-extra:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-md);
  border-color: var(--v2-navy-soft);
}

/* Image header */
.v2-extra-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background-color: var(--v2-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.v2-extra-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

/* "ТАНХИМ" label badge */
.v2-extra-tag {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--v2-navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Body */
.v2-extra-body {
  padding: 1rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.v2-extra h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin: 0;
  line-height: 1.35;
}

/* Capacity — даруухан, цэвэр */
.v2-extra-cap {
  font-size: 0.78rem;
  color: var(--v2-text-mute);
  margin: 0;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid var(--v2-border-soft);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.v2-extra-cap strong {
  font-weight: 600;
  color: var(--v2-navy);
}


/* ═══════════════════════════════════════════════
   § НЭМЭЛТ ҮЙЛЧИЛГЭЭ (зурагтай)
   ═══════════════════════════════════════════════ */
.v2-enhance {
  padding: 4rem 0;
  background: var(--v2-bg-soft);
}
.v2-enh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.v2-enh-card {
  background: var(--v2-bg);
  border: 1px solid var(--v2-border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--v2-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.v2-enh-card:hover {
  box-shadow: var(--v2-shadow-md);
}
.v2-enh-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-color: var(--v2-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.v2-enh-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18) 100%);
}
.v2-enh-body {
  padding: 1.1rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.v2-enh-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin: 0;
  line-height: 1.3;
}
.v2-enh-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--v2-text-mute);
}
.v2-enh-meta li {
  padding: 0.15rem 0;
}
.v2-enh-meta strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--v2-navy);
}
.v2-enh-go {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--v2-red);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--v2-border-soft);
}
.v2-enh-go i { transition: transform 0.2s ease; font-size: 0.75rem; }
.v2-enh-card:hover .v2-enh-go i { transform: translateX(3px); }


/* ═══════════════════════════════════════════════
   § МУЗЕЙН ЗӨВЛӨМЖ (видео-той)
   ═══════════════════════════════════════════════ */
.v2-tips {
  padding: 4rem 0;
  background: var(--v2-bg);
}
.v2-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .v2-tips-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .v2-tips-grid { grid-template-columns: 1fr; }
}
.v2-tip {
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--v2-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.v2-tip:hover {
  transform: translateY(-3px);
  box-shadow: var(--v2-shadow-md);
}

/* Video block */
.v2-tip-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--v2-navy) 0%, var(--v2-navy-soft) 100%);
  overflow: hidden;
}
.v2-tip-video iframe,
.v2-tip-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
.v2-tip-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.2s ease;
}
.v2-tip-video-placeholder:hover {
  background: rgba(0, 0, 0, 0.15);
}
.v2-tip-video-placeholder i {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease, color 0.2s ease;
}
.v2-tip-video-placeholder:hover i {
  color: var(--v2-red);
  transform: scale(1.1);
}
.v2-tip-duration {
  position: absolute;
  bottom: 0.6rem;
  right: 0.65rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* YouTube видеотой зөвлөмж — товшиход байрандаа тоглоно */
.v2-tip-video--yt {
  cursor: pointer;
}
.v2-tip-video--yt .v2-tip-video-placeholder {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.v2-tip-video--yt .v2-tip-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease;
}
.v2-tip-video--yt:hover .v2-tip-video-placeholder::before {
  background: rgba(0, 0, 0, 0.2);
}
.v2-tip-video--yt .v2-tip-video-placeholder i,
.v2-tip-video--yt .v2-tip-duration {
  position: relative;
  z-index: 1;
}
.v2-tip-video--yt.is-playing {
  cursor: default;
}

/* Body */
.v2-tip-body {
  padding: 1.15rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.v2-tip-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-red);
  margin-bottom: 0.1rem;
}
.v2-tip-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin: 0;
  line-height: 1.3;
}
.v2-tip-body p {
  font-size: 0.88rem;
  color: var(--v2-text);
  line-height: 1.6;
  margin: 0;
}
.v2-tip-body p strong { color: var(--v2-navy); font-weight: 700; }

.v2-tips-foot {
  text-align: center;
  margin-top: 2rem;
}


/* ═══════════════════════════════════════════════
   § HALL POPUP MODAL
   ═══════════════════════════════════════════════ */
.v2-modal[hidden] { display: none; }
.v2-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: v2-modal-fade 0.18s ease;
}
@keyframes v2-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.v2-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 31, 62, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.v2-modal-dialog {
  position: relative;
  background: var(--v2-bg-soft);
  border-radius: 16px;
  max-width: 760px;
  width: 100%;
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.4);
  overflow: hidden;
  animation: v2-modal-slide 0.22s ease;
}
@keyframes v2-modal-slide {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.v2-modal-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--v2-navy) 0%, var(--v2-navy-soft) 100%);
  color: #fff;
  border-bottom: 4px solid var(--v2-red);
}
.v2-modal-head-floor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  min-width: 80px;
}
.v2-modal-rom {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
.v2-modal-floor-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.v2-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.3rem;
  line-height: 1.25;
}
.v2-modal-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}
.v2-modal-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.v2-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Body */
.v2-modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  flex: 1;
}

.v2-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px dashed var(--v2-border);
}
.v2-modal-stat {
  background: var(--v2-bg);
  border-radius: 10px;
  padding: 1rem 0.85rem;
  text-align: center;
  border: 1px solid var(--v2-border);
}
.v2-modal-stat i {
  font-size: 1.2rem;
  color: var(--v2-navy-soft);
  margin-bottom: 0.4rem;
  display: block;
}
.v2-modal-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--v2-navy);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}
.v2-modal-stat small {
  font-size: 0.7rem;
  color: var(--v2-text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.v2-modal-section {
  margin-bottom: 1.5rem;
}
.v2-modal-section:last-child { margin-bottom: 0; }
.v2-modal-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--v2-navy);
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}
.v2-modal-section h4 i {
  color: var(--v2-red);
  font-size: 0.85rem;
}
.v2-modal-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--v2-text);
  margin: 0;
}

/* Exhibits */
.v2-modal-exhibits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
}
.v2-modal-exhibits li {
  padding: 0.65rem 0.85rem;
  background: var(--v2-bg);
  border-left: 3px solid var(--v2-navy);
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--v2-text);
  line-height: 1.4;
}

/* Facilities */
.v2-modal-facilities,
.v2-modal-aud {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.v2-modal-facilities li,
.v2-modal-aud li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--v2-bg);
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  color: var(--v2-text);
  font-weight: 500;
}
.v2-modal-facilities li i {
  color: var(--v2-red);
  font-size: 0.95rem;
}
.v2-modal-aud li i {
  color: var(--v2-navy-soft);
  font-size: 0.95rem;
}

/* Footer */
.v2-modal-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: var(--v2-bg);
  border-top: 1px solid var(--v2-border);
}

/* — Mobile fallback list — */
.v2-halls-list {
  margin-top: 2rem;
  background: var(--v2-bg-soft);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 0;
  display: none;
}
.v2-halls-list summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--v2-navy);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.v2-halls-list summary::-webkit-details-marker { display: none; }
.v2-halls-list summary i { color: var(--v2-navy-soft); }
.v2-halls-list[open] summary { border-bottom: 1px solid var(--v2-border); }
.v2-halls-list-items {
  list-style: none;
  padding: 1rem 1.25rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.v2-halls-list-items li {
  padding: 0.55rem 0.8rem;
  background: var(--v2-bg);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--v2-text);
}


/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .v2-highlight { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .v2-fp {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .v2-fp-detail {
    position: static;
    min-height: auto;
  }
  .v2-block-head { gap: 0.5rem; }
  .v2-block-note { margin-left: 0; flex-basis: 100%; }

  /* Hours: 2-col → single col */
  .v2-hours-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .v2-hours-img { min-height: 220px; }
}

@media (max-width: 640px) {
  .v2-fare { padding: 3rem 0; }
  .v2-hours { padding: 2.5rem 0; }
  .v2-halls { padding: 3rem 0; }

  .v2-mx-h-mn { font-size: 0.78rem; }
  .v2-mx-h-en { font-size: 0.66rem; }
  .v2-mx-mn { font-size: 0.82rem; }
  .v2-mx-en { font-size: 0.68rem; }
  .v2-mx-h-combo-badge { font-size: 0.6rem; padding: 0.25rem 0.6rem 0.25rem 1.1rem; }
  .v2-mx-rowspan { font-size: 0.88rem; }

  /* ── Үнийн тариф: утсан дээр хүснэгтийг картан болгож хэвтээ scroll-гүй ── */
  .v2-matrix-scroll { overflow-x: visible; }
  .v2-matrix { min-width: 0; display: block; }
  .v2-matrix thead { display: none; }
  .v2-matrix tbody { display: block; }
  .v2-matrix tbody tr {
    display: block;
    padding: 0.4rem 0.9rem 0.7rem;
    border-bottom: 1px solid var(--v2-border);
  }
  .v2-matrix tbody tr:last-child { border-bottom: none; }
  .v2-matrix td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: right;
    padding: 0.5rem 0;
    border: none;
    font-size: 0.88rem;
  }
  .v2-matrix td[data-label]::before {
    content: attr(data-label);
    flex: 1;
    text-align: left;
    font-weight: 600;
    color: var(--v2-navy);
    font-size: 0.8rem;
  }
  /* Үзэгчийн ангилал — картын толгой */
  .v2-matrix td.v2-mx-aud {
    display: block;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--v2-navy);
    padding: 0.3rem 0 0.5rem;
    border-bottom: 1px dashed var(--v2-border-soft);
    margin-bottom: 0.25rem;
  }
  .v2-matrix td.v2-mx-aud::before { content: none; }
  /* Үнэгүй мөр — нийт өргөн */
  .v2-matrix td.v2-mx-free-cell { justify-content: center; text-align: center; padding-top: 0.4rem; }
  .v2-matrix td.v2-mx-free-cell::before { content: none; }
  .v2-mx-primary td:not(.v2-mx-aud),
  .v2-mx-extra td:not(.v2-mx-aud) { border-left: none; }

  .v2-hl-card {
    padding: 0.65rem 0.9rem;
  }
  .v2-hl-main h4 { font-size: 0.82rem; }
  .v2-hl-main p { font-size: 0.68rem; }
  .v2-hl-price strong { font-size: 1.05rem; }
  .v2-hl-price span { font-size: 0.7rem; }

  .v2-season-tabs { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .v2-season-tab { padding: 0.8rem 0.7rem; gap: 0.55rem; }
  .v2-season-tab i { font-size: 1.2rem; width: 1.5rem; }
  .v2-season-tab strong { font-size: 0.92rem; }
  .v2-season-tab span { font-size: 0.7rem; }
  .v2-fare-foot { flex-direction: column; align-items: stretch; }
  .v2-fare-foot .v2-btn { justify-content: center; }

  .v2-fp-building { padding: 1rem; }
  .v2-fp-floor {
    grid-template-columns: 40px 1fr auto;
    padding: 0.7rem 0.85rem;
    gap: 0.3rem 0.65rem;
  }
  .v2-fp-rom { font-size: 1.1rem; }
  .v2-fp-tag { font-size: 0.78rem; }
  .v2-fp-min { font-size: 0.66rem; padding: 0.15rem 0.45rem; }
  .v2-fp-extras { gap: 0.25rem; }
  .v2-fp-extras i { width: 20px; height: 20px; font-size: 0.62rem; }
  .v2-fp-detail { padding: 1.5rem 1.25rem; }
  .v2-fp-detail-card h3 { font-size: 1.25rem; }
  .v2-fp-meta > div { grid-template-columns: 90px 1fr; gap: 0.5rem; }

  /* Slider mobile */
  .v2-slide { flex-basis: 240px; padding: 1rem; }
  .v2-slide-rom { font-size: 1.5rem; }
  .v2-slide h4 { font-size: 0.92rem; }
  .v2-slide p { font-size: 0.78rem; }
  .v2-extra { flex-basis: 210px; }
  .v2-extra-body { padding: 0.85rem 1rem 0.95rem; }
  .v2-extra h4 { font-size: 0.88rem; }
  .v2-extra-cap { font-size: 0.73rem; padding-top: 0.5rem; }
  .v2-slider-btn { width: 36px; height: 36px; }

  /* Modal mobile */
  .v2-modal { padding: 0; }
  .v2-modal-dialog {
    max-height: 100vh;
    max-width: 100%;
    border-radius: 0;
  }
  .v2-modal-head {
    grid-template-columns: auto 1fr auto;
    padding: 1.1rem 1.25rem;
    gap: 0.85rem;
  }
  .v2-modal-head-floor { min-width: 60px; padding: 0.65rem 0.75rem; }
  .v2-modal-rom { font-size: 1.4rem; }
  .v2-modal-title { font-size: 1.05rem; }
  .v2-modal-subtitle { font-size: 0.8rem; }
  .v2-modal-body { padding: 1.25rem; }
  .v2-modal-stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.45rem; }
  .v2-modal-stat { padding: 0.75rem 0.4rem; }
  .v2-modal-stat strong { font-size: 0.9rem; }
  .v2-modal-stat small { font-size: 0.62rem; }
  .v2-modal-foot {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
  }
  .v2-modal-foot .v2-btn { justify-content: center; }
}
