/* ═══════════════════════════════════════════════
   BATUMI STATE THEATRE — style.css v7
   ═══════════════════════════════════════════════ */

/* ── CUSTOM GEORGIAN FONTS ── */
@font-face {
  font-family: 'HelveticaGeo';
  src: url('../fonts/helvetica-neue-lt-geo-75-bold-caps.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaGeo';
  src: url('../fonts/helvetica-neue-lt-geo-65-medium.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaGeoBoldCaps';
  src: url('../fonts/helvetica-neue-lt-geo-75-bold-caps.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #0a0a0a;
  --gray-95:      #f2f2f2;
  --gray-90:      #e6e6e6;
  --gray-80:      #cccccc;
  --gray-50:      #808080;
  --gray-30:      #4d4d4d;
  --gray-15:      #262626;
  --gray-10:      #1a1a1a;
  --white:        #ffffff;
  --navy:         #1a2340;
  --red:          #8b1a1a;
  --red2:         #a82020;
  --red-light:    #c23030;

  /* Typography — Georgian headings + body */
  --font-head:  'HelveticaGeo', 'Barlow', sans-serif;
  --font-body:  'HelveticaGeo', 'Barlow', sans-serif;
  --font-ui:    'Barlow', 'HelveticaGeo', sans-serif;

  --border-dark:  rgba(255,255,255,0.1);
  --border-light: rgba(0,0,0,0.12);
  --nav-h:        138px;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ──────────────────────────────────────────
   HEADINGS — use bold Georgian font
────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 56px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; }

/* ──────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }

.nav-top {
  display: flex; align-items: center;
  padding: 0 52px; height: 96px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { flex-shrink: 0; margin-right: auto; }
.nav-logo img { height: 77px; display: block; }

.nav-top-right { display: flex; align-items: center; gap: 20px; }

.nav-lang {
  display: flex;
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 0.14em;
}
.nav-lang span {
  padding: 4px 10px; cursor: pointer;
  color: var(--gray-50); transition: color 0.2s;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.nav-lang span:last-child { border-right: none; }
.nav-lang span.active { color: var(--white); }
.nav-lang span:hover { color: var(--gray-90); }

.nav-social { display: flex; gap: 8px; }
.nav-social a {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-50); text-decoration: none;
  transition: all 0.2s;
}
.nav-social a svg { display: block; }
.nav-social a:hover { border-color: var(--white); color: var(--white); }

.nav-cta {
  padding: 9px 22px;
  background: var(--red); color: var(--white);
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--red2); }

/* ── Hamburger (hidden desktop, shown mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Desktop nav bottom bar ── */
.nav-bottom {
  display: flex; align-items: center; justify-content: center;
  padding: 0 52px; height: 42px;
}

.nav-link {
  font-family: 'HelveticaGeoBoldCaps', 'HelveticaGeo', var(--font-ui);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-50);
  padding: 0 14px; height: 42px;
  display: flex; align-items: center;
  cursor: pointer; text-decoration: none;
  position: relative; transition: color 0.2s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 1px; background: var(--white);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.08); flex-shrink: 0;
}

.page-wrap { padding-top: var(--nav-h); }

/* ──────────────────────────────────────────
   HERO SLIDER
────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 600px;
  background: var(--black);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out), transform 8s ease;
  transform: scale(1.04);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(10,10,10,0.88) 35%, rgba(10,10,10,0.4) 70%, rgba(10,10,10,0.2) 100%),
    linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 52px 80px; max-width: 600px;
}
.hero-tag {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 1s var(--ease-out) 0.1s both;
}
.hero-tag::before { content: ''; width: 36px; height: 1px; background: var(--red-light); }
.hero-title {
  font-family: var(--font-head);
  font-size: 64px; font-weight: 700; line-height: 1.05;
  color: var(--white); margin-bottom: 20px;
  animation: fadeUp 1s var(--ease-out) 0.25s both;
}
.hero-title em { font-style: normal; color: var(--gray-80); }
.hero-desc {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400; line-height: 1.8;
  color: var(--gray-50); margin-bottom: 14px; max-width: 420px;
  animation: fadeUp 1s var(--ease-out) 0.38s both;
}
.hero-meta {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--gray-80); margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.44s both;
}
.hero-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-30); flex-shrink: 0; }
.hero-btns {
  display: flex; gap: 14px; align-items: center;
  animation: fadeUp 1s var(--ease-out) 0.52s both;
}
.hero-dots {
  position: absolute; bottom: 36px; right: 52px; z-index: 2;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 30px; height: 1.5px;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: all 0.4s; border: none; padding: 0;
}
.hero-dot.active { background: var(--white); width: 50px; }
.hero-scroll-hint {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); animation: fadeIn 2s ease 1.5s both;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn-red {
  padding: 14px 30px; background: var(--red); color: var(--white);
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-red:hover { background: var(--red2); transform: translateY(-1px); text-decoration: none; }
.btn-outline-white {
  padding: 13px 26px; border: 1px solid rgba(255,255,255,0.22); color: var(--gray-80);
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  background: none; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.btn-outline-white:hover { text-decoration: none; }
.btn-outline-white:hover { border-color: var(--white); color: var(--white); }
.btn-outline-red {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 28px; border: 1px solid rgba(139,26,26,0.5); color: var(--white);
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; background: none; transition: all 0.25s; text-decoration: none;
}
.btn-outline-red:hover { background: var(--red); border-color: var(--red); }

/* ──────────────────────────────────────────
   SECTIONS
────────────────────────────────────────── */
.sec-dark  { background: var(--black);   color: var(--white); }
.sec-light { background: var(--white);   color: var(--black); }
.sec-mid   { background: var(--gray-95); color: var(--black); }
.sec-navy  { background: var(--navy);    color: var(--white); }
.section-pad    { padding: 96px 52px; }
.section-pad-sm { padding: 64px 52px; }

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-dark .section-eyebrow, .sec-navy .section-eyebrow { color: var(--gray-50); }
.sec-light .section-eyebrow, .sec-mid .section-eyebrow { color: var(--gray-30); }

.section-rule { width: 40px; height: 1.5px; margin-bottom: 18px; }
.sec-dark .section-rule, .sec-navy .section-rule { background: rgba(255,255,255,0.2); }
.sec-light .section-rule, .sec-mid .section-rule { background: rgba(0,0,0,0.15); }

.section-h {
  font-family: var(--font-head);
  font-size: 38px; font-weight: 700; line-height: 1.15;
}
.section-h em { font-style: normal; font-weight: 400; }
.sec-dark .section-h, .sec-navy .section-h { color: var(--white); }
.sec-light .section-h, .sec-mid .section-h { color: var(--black); }

.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }

.sec-link {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  transition: gap 0.2s;
}
.sec-link::after { content: '→'; font-size: 12px; }
.sec-link:hover { gap: 16px; }
.sec-dark .sec-link, .sec-navy .sec-link { color: var(--gray-50); }
.sec-dark .sec-link:hover, .sec-navy .sec-link:hover { color: var(--white); }
.sec-light .sec-link, .sec-mid .sec-link { color: var(--gray-30); }
.sec-light .sec-link:hover, .sec-mid .sec-link:hover { color: var(--black); }

.sec-divider       { height: 1px; background: rgba(255,255,255,0.07); }
.sec-divider-light { height: 1px; background: rgba(0,0,0,0.08); }

/* ──────────────────────────────────────────
   SCROLL ANIMATIONS
────────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0; will-change: opacity, transform;
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.97) translateY(20px); }
.reveal-up.in-view, .reveal-left.in-view,
.reveal-right.in-view, .reveal-scale.in-view { opacity: 1; transform: none; }

/* ──────────────────────────────────────────
   CALENDAR
────────────────────────────────────────── */
.calendar-wrap {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.calendar-head { padding: 52px 52px 20px; display: flex; justify-content: space-between; align-items: flex-end; }
.calendar-scroll {
  display: flex; overflow-x: auto; scrollbar-width: none;
  padding: 0 52px 52px; gap: 2px; cursor: grab;
}
.calendar-scroll::-webkit-scrollbar { display: none; }
.calendar-scroll.dragging { cursor: grabbing; user-select: none; }

/* Static homepage calendar grid (replaces the carousel) */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 0 52px;
}
.calendar-grid .cal-card { width: auto; }
.calendar-cta {
  display: flex;
  justify-content: center;
  padding: 36px 52px 52px;
}
.calendar-cta .btn-outline-red {
  color: var(--red);
  border-color: var(--red);
}
.calendar-cta .btn-outline-red:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
@media (max-width: 1100px) {
  .calendar-grid { grid-template-columns: repeat(3, 1fr); padding: 0 32px; }
  .calendar-cta { padding: 28px 32px 40px; }
}
@media (max-width: 760px) {
  .calendar-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .calendar-cta { padding: 24px 20px 32px; }
}
@media (max-width: 460px) {
  .calendar-grid { grid-template-columns: 1fr; }
}

/* Static grid layout used on the full calendar page */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
  padding: 0 52px 52px;
}

.cal-grid .cal-card { width: auto; }

.cal-card {
  flex-shrink: 0; width: 220px; border: 1px solid var(--border-light);
  padding: 28px 22px; cursor: pointer; position: relative;
  transition: background 0.25s, transform 0.2s;
  background: var(--white); text-decoration: none; display: block; color: inherit;
}
.cal-card:hover { background: var(--black); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.cal-date-big {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 700; line-height: 1;
  color: var(--black); opacity: 0.1; margin-bottom: 2px;
  transition: color 0.25s, opacity 0.25s;
}
.cal-card:hover .cal-date-big { color: var(--white); opacity: 0.2; }
.cal-day {
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-30); margin-bottom: 16px; transition: color 0.25s;
}
.cal-card:hover .cal-day { color: var(--gray-50); }
.cal-time {
  font-family: var(--font-body);
  font-size: 15px; color: var(--black); margin-bottom: 4px; transition: color 0.25s;
}
.cal-card:hover .cal-time { color: var(--white); }
.cal-venue {
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-30); margin-bottom: 10px; transition: color 0.25s;
}
.cal-card:hover .cal-venue { color: var(--gray-50); }
.cal-show {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700; line-height: 1.3;
  color: var(--black); margin-bottom: 8px; transition: color 0.25s;
}
.cal-card:hover .cal-show { color: var(--white); }
.cal-age {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 400;
  color: var(--gray-50); margin-left: 4px; letter-spacing: 0.05em;
}
.cal-tkt {
  font-family: var(--font-ui);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-30); border: 1px solid var(--border-light);
  padding: 7px 14px; transition: all 0.25s; margin-top: 12px;
}
.cal-card:hover .cal-tkt { border-color: rgba(255,255,255,0.2); color: var(--white); }

/* ──────────────────────────────────────────
   ABOUT
────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-body {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400; line-height: 1.85;
  color: var(--gray-50); margin-bottom: 40px;
}
.about-visual {
  position: relative; height: 440px; background: var(--gray-10);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.about-visual-play { position: relative; z-index: 1; cursor: pointer; }
.play-circle {
  width: 76px; height: 76px; border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; position: relative; background: rgba(0,0,0,0.3);
}
.play-circle::before {
  content: ''; position: absolute; inset: -10px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  animation: ringPulse 2.5s ease-in-out infinite;
}
.play-circle:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.play-tri { width:0; height:0; border-top:9px solid transparent; border-bottom:9px solid transparent; border-left:16px solid var(--white); margin-left:4px; }
.about-visual-caption {
  position: absolute; bottom: 20px; z-index: 1;
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.2);
}

/* ──────────────────────────────────────────
   CAST
────────────────────────────────────────── */
.cast-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; }
.cast-card { text-align: center; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.cast-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--gray-90); border: 2px solid var(--gray-80);
  margin: 0 auto 14px; overflow: hidden; position: relative;
  transition: border-color 0.2s, transform 0.3s var(--ease-out);
}
.cast-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.45s ease;
}
.cast-card:hover .cast-avatar img { filter: grayscale(0%); }
.cast-avatar-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gray-90) 0%, var(--gray-80) 100%);
  font-family: var(--font-ui);
  font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-30);
}
.cast-card:hover .cast-avatar { border-color: var(--black); transform: scale(1.06); }
.cast-name {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  color: var(--black); margin-bottom: 4px; transition: color 0.2s;
}
.cast-card:hover .cast-name { color: var(--red); }
.cast-role {
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-30);
}

/* ──────────────────────────────────────────
   GALLERY
────────────────────────────────────────── */
.gallery-mosaic {
  display: grid; grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 300px 220px 220px; gap: 3px; margin-top: 52px;
}
.g-cell {
  position: relative; overflow: hidden; cursor: pointer;
  display: flex; align-items: center; justify-content: center; background: var(--gray-15);
}
.g-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out), filter 0.3s; filter: grayscale(15%); }
.g-cell:hover img { transform: scale(1.06); filter: grayscale(0%); }
.g-cell-overlay { position: absolute; inset: 0; background: var(--black); opacity: 0; transition: opacity 0.3s; z-index: 1; }
.g-cell:hover .g-cell-overlay { opacity: 0.35; }
.g-cell-label {
  position: absolute; z-index: 2; bottom: 18px; left: 18px;
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.g-cell:hover .g-cell-label { color: rgba(255,255,255,0.85); }
.g-cell-expand {
  position: absolute; z-index: 2; bottom: 18px; right: 18px;
  width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); opacity: 0; transform: scale(0.7); transition: all 0.3s;
}
.g-cell:hover .g-cell-expand { opacity: 1; transform: scale(1); }
.g-main { grid-row: span 2; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ──────────────────────────────────────────
   LIGHTBOX
────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 82vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: var(--white);
  font-size: 32px; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; font-weight: 300;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 10;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 24px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
.lightbox-caption {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-50);
}

/* ──────────────────────────────────────────
   NEWS
────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-80); margin-top: 52px; }
.news-card {
  background: var(--white); padding: 40px 34px;
  cursor: pointer; position: relative; transition: background 0.25s;
  text-decoration: none; color: inherit; display: block;
}
.news-card:hover { background: var(--black); }
.news-num {
  font-family: var(--font-head);
  font-size: 64px; font-weight: 700; line-height: 1;
  color: rgba(0,0,0,0.04); position: absolute; top: 28px; right: 28px;
  transition: color 0.25s; pointer-events: none;
}
.news-card:hover .news-num { color: rgba(255,255,255,0.04); }
.news-date {
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-30); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px; transition: color 0.25s;
}
.news-date::before { content: ''; width: 20px; height: 1px; background: currentColor; }
.news-card:hover .news-date { color: var(--gray-50); }
.news-title {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700; line-height: 1.35;
  color: var(--black); margin-bottom: 14px; transition: color 0.25s;
}
.news-card:hover .news-title { color: var(--white); }
.news-excerpt {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400; line-height: 1.75;
  color: var(--gray-30); margin-bottom: 26px; transition: color 0.25s;
}
.news-card:hover .news-excerpt { color: var(--gray-50); }
.news-more {
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-30); display: flex; align-items: center; gap: 8px; transition: all 0.25s;
}
.news-card:hover .news-more { color: var(--white); gap: 14px; }
.news-more::after { content: '→'; }

/* ──────────────────────────────────────────
   SPONSORS
────────────────────────────────────────── */
.sponsors-wrap { background: var(--gray-95); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 52px; }
.sponsors-label {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray-30); margin-bottom: 36px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.sponsors-label::before, .sponsors-label::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--gray-80); }
.sponsors-row { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.sponsor-box {
  width: 160px; height: 72px; border: 1px solid var(--gray-80); background: var(--white);
  display: flex; align-items: center; justify-content: center; padding: 12px 16px;
  filter: grayscale(1) opacity(0.5); transition: filter 0.3s, transform 0.2s; cursor: pointer;
}
.sponsor-box img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.sponsor-box:hover { filter: grayscale(0) opacity(1); transform: translateY(-2px); }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 72px 52px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 36px; }
.footer-logo-img { height: 68px; margin-bottom: 20px; display: block; opacity: 0.85; }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.35); margin-bottom: 28px; max-width: 220px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); text-decoration: none; transition: all 0.2s;
}
.footer-social a svg { display: block; }
.footer-social a:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.footer-col-head {
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li, .footer-links li a {
  font-family: var(--font-body);
  font-size: 13px; color: rgba(255,255,255,0.35); cursor: pointer; transition: color 0.2s; text-decoration: none; display: block;
}
.footer-links li:hover, .footer-links li a:hover { color: var(--white); }

/* Sub-section heading inside a footer column (e.g. გუნდი / მომსახურება) */
.footer-col-head--sub {
  margin-top: 28px;
}
.footer-links + .footer-col-head--sub {
  margin-top: 28px;
}

/* Scroll-up button at bottom of contact column */
.footer-scroll-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer-scroll-top:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy {
  font-family: var(--font-ui);
  font-size: 11px; color: rgba(255,255,255,0.2);
}
.footer-dev {
  font-family: var(--font-ui);
  font-size: 11px; color: rgba(255,255,255,0.2);
}
.footer-dev a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-dev a:hover { color: var(--white); }

/* ──────────────────────────────────────────
   KEYFRAMES
────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%       { transform: scale(1.15); opacity: 0.05; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}

/* ──────────────────────────────────────────
   TABLET  ≤1024px
────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --nav-h: 152px; }
  .nav-top  { padding: 0 24px; height: 110px; }
  .nav-logo img { height: 77px; }
  .nav-bottom { padding: 0 12px; flex-wrap: wrap; height: auto; padding-top: 6px; padding-bottom: 6px; justify-content: flex-start; }
  .nav-link { font-size: 9px; padding: 0 10px; height: 36px; }
  .nav-sep  { height: 10px; }
  .section-pad { padding: 72px 32px; }
  .hero-title  { font-size: 50px; }
  .hero-content { padding: 0 32px 72px; max-width: 500px; }
  .section-h   { font-size: 30px; }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 320px; }
  .cast-grid   { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-main, .g-tall, .g-wide { grid-row: auto; grid-column: auto; height: 240px; }
  .news-grid   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .calendar-head { padding: 40px 32px 16px; }
  .calendar-scroll { padding: 0 32px 40px; }
  .cal-grid { padding: 0 32px 40px; }
}

/* ──────────────────────────────────────────
   MOBILE  ≤640px
────────────────────────────────────────── */
@media (max-width: 640px) {
  :root { --nav-h: 72px; }

  /* NAV compact */
  .nav-top { height: 72px; padding: 0 16px; }
  .nav-logo img { height: 50px; }

  /* SHOW hamburger */
  .nav-hamburger { display: flex; }

  /* Hide social, lang switch, and desktop CTA on mobile top bar */
  .nav-social { display: none; }
  .nav-top-right > .nav-lang,
  .nav-top-right > .nav-cta { display: none !important; }

  /* Mobile extras shown inside hamburger dropdown */
  .nav-mobile-extras {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 22px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.25);
  }
  .nav-mobile-extras .nav-lang-mobile {
    display: flex;
    justify-content: center;
    gap: 0;
  }
  .nav-mobile-extras .nav-lang-mobile span {
    padding: 8px 18px;
    font-size: 11px;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .nav-mobile-extras .nav-lang-mobile span:last-child { border-right: none; }
  .nav-mobile-extras .nav-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-ui);
  }
  .nav-mobile-extras .nav-cta-mobile:hover { background: var(--red2); }

  /* Mobile dropdown — block layout, slides down */
  .nav-bottom {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(6,6,6,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: block !important;   /* override desktop flex */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 198;
  }
  .nav-bottom.mobile-open { max-height: 820px; overflow-y: auto; }

  .nav-sep { display: none; }

  .nav-link {
    display: flex; align-items: center;
    height: 50px; padding: 0 20px; width: 100%;
    font-size: 12px; letter-spacing: 0.08em;
    color: var(--gray-50);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-decoration: none; white-space: nowrap;
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.04); }

  /* HERO */
  .hero-title { font-size: 38px; }
  .hero-desc  { font-size: 14px; }
  .hero-content { padding: 0 20px 60px; max-width: 100%; }
  .hero-tag { font-size: 8px; }
  .hero-dots { right: 20px; bottom: 20px; }
  .hero-scroll-hint { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-meta { font-size: 10px; gap: 8px; }

  /* SECTIONS */
  .section-pad { padding: 52px 20px; }
  .section-h   { font-size: 26px; }
  .section-head-row { flex-direction: column; gap: 16px; align-items: flex-start; margin-bottom: 32px; }

  /* CALENDAR */
  .calendar-head  { padding: 36px 20px 16px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .calendar-scroll { padding: 0 20px 36px; }
  .cal-grid { padding: 0 20px 36px; grid-template-columns: repeat(2, 1fr); }
  .cal-card { width: 175px; padding: 18px 14px; }
  .cal-grid .cal-card { width: auto; }
  .cal-date-big { font-size: 44px; }

  /* ABOUT */
  .about-grid  { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { height: 240px; }
  .about-body  { font-size: 15px; }

  /* CAST */
  .cast-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .cast-avatar { width: 80px; height: 80px; }
  .cast-name   { font-size: 11px; }

  /* GALLERY */
  .gallery-mosaic { grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 28px; }
  .g-cell { height: 140px; }
  .g-main, .g-tall, .g-wide { grid-row: auto; grid-column: auto; height: 140px; }

  /* NEWS */
  .news-grid { grid-template-columns: 1fr; }
  .news-card { padding: 28px 20px; }
  .news-num  { font-size: 48px; }
  .news-title { font-size: 16px; }

  /* SPONSORS */
  .sponsors-wrap { padding: 36px 20px; }
  .sponsors-row  { gap: 14px; }
  .sponsor-box   { width: 95px; height: 48px; padding: 8px; }

  /* FOOTER */
  .footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; margin-bottom: 24px; }
  .footer-logo-img { height: 52px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Very small ≤380px ── */
@media (max-width: 380px) {
  .hero-title { font-size: 32px; }
  .cast-grid  { grid-template-columns: repeat(2, 1fr); }
  .nav-cta    { font-size: 8px; padding: 7px 10px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ═══════════════════════════════════════════════
   MULTI-PAGE ADDITIONS — v8
   ═══════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   NAV CTA AS LINK (tickets page)
────────────────────────────────────────── */
a.nav-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Mobile-only extras inside hamburger dropdown — hidden on desktop */
.nav-mobile-extras { display: none; }

/* ──────────────────────────────────────────
   DROPDOWN NAV
────────────────────────────────────────── */
.nav-has-sub {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link-has-sub {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-link-has-sub .nav-chevron {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-has-sub.open .nav-chevron,
.nav-has-sub:hover .nav-chevron {
  transform: rotate(-135deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--red);
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
  white-space: nowrap;
}

.nav-has-sub:hover .nav-dropdown,
.nav-has-sub.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
  border-left: 2px solid transparent;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--white);
  background: rgba(255,255,255,0.04);
  padding-left: 24px;
  border-left-color: var(--red);
}

/* ──────────────────────────────────────────
   PAGE BANNER (inner pages top hero)
────────────────────────────────────────── */
.page-banner {
  padding-top: var(--nav-h);
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,26,26,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner-inner {
  padding: 52px 60px 44px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: rgba(255,255,255,0.7); }

.breadcrumb-sep {
  width: 14px; height: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.breadcrumb-current { color: rgba(255,255,255,0.55); }

.page-banner h1 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}

.page-banner .page-sub {
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}

/* ── Shared page share bar (injected by js/share-buttons.js) ── */
.page-share-bar {
  position: absolute;
  top: 52px;
  right: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.page-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-share-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.page-share-btn svg { flex-shrink: 0; }

.page-share-btn--fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.page-share-btn.is-copied {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

@media (max-width: 900px) {
  .page-share-bar {
    position: static;
    margin-top: 20px;
    gap: 6px;
  }
  .page-share-btn {
    padding: 8px 12px;
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }
  .page-share-btn span { display: inline; }
}

@media (max-width: 520px) {
  .page-share-btn span { display: none; }
  .page-share-btn { padding: 10px; }
}

/* ══════════════════════════════════════════
   PRINT — full-page document, PDF-ready
══════════════════════════════════════════ */
@media print {
  @page { margin: 14mm 12mm; size: A4; }

  html, body {
    background: #fff !important;
    color: #111 !important;
    font-family: 'Barlow', 'Sylfaen', Georgia, serif !important;
    font-size: 11pt;
    line-height: 1.55;
  }

  /* Hide site chrome, navigation, interactive UI */
  .nav,
  #nav,
  .nav-top,
  .nav-bottom,
  .nav-hamburger,
  .nav-mobile-extras,
  .footer,
  #loader,
  #loader-logo,
  .hero,
  .page-share-bar,
  .share-bar,
  .article-back,
  .album-back,
  .breadcrumb,
  .subpage-nav,
  .gallery-lightbox,
  .article-lightbox,
  .lightbox,
  .event-side,
  .event-tabs-nav,
  .event-video-wrap,
  .visit-download,
  .btn-red,
  .btn-outline-white,
  .btn-outline-red,
  .hero-btns,
  .news-more,
  .cal-tkt,
  .sec-link,
  .scroll-line,
  .hero-scroll-hint,
  .contact-map-btn,
  iframe,
  video,
  audio,
  button,
  .visit-link,
  .visit-email[href^="mailto:"]::after,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    /* keep reveal containers visible — handled below */
  }
  .nav, #nav, .footer, .nav-hamburger, .nav-mobile-extras,
  #loader, #loader-logo, .page-share-bar, .share-bar,
  .article-back, .album-back, .subpage-nav, .gallery-lightbox,
  .article-lightbox, .lightbox, .event-tabs-nav,
  .event-video-wrap, iframe, video, audio,
  .hero-scroll-hint, .scroll-line,
  .hero-dots, .contact-map-btn,
  .article-actions, .article-action,
  .visit-download {
    display: none !important;
  }

  /* Force reveal animations to be visible in print */
  .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Page wrap and main */
  .page-wrap, main, .page-content, .sec-dark-page, .sec-dark, .sec-light {
    background: #fff !important;
    color: #111 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .page-banner, .page-banner-inner {
    background: #fff !important;
    color: #111 !important;
    padding: 0 0 12pt 0 !important;
    border-bottom: 1pt solid #999 !important;
    margin-bottom: 14pt !important;
    position: static !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .page-banner h1, .page-banner-inner h1 {
    color: #111 !important;
    font-size: 22pt !important;
    margin: 0 0 6pt 0 !important;
  }
  .page-sub { color: #555 !important; font-size: 10pt !important; }

  /* Headings */
  h1, h2, h3, h4 { color: #111 !important; page-break-after: avoid; }
  h1 { font-size: 22pt; }
  h2 { font-size: 17pt; margin-top: 14pt; }
  h3 { font-size: 13pt; margin-top: 10pt; }
  p, li { color: #222 !important; orphans: 3; widows: 3; }
  a { color: #111 !important; text-decoration: underline; }
  a[href]:after { content: ""; }

  /* Open all tab panels — show all content */
  .event-tab-panel { display: block !important; opacity: 1 !important; page-break-inside: avoid; margin-bottom: 14pt; }
  .event-tab-panel:not(.active)::before {
    content: attr(data-panel) " ↓";
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 10pt;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6pt;
    border-bottom: 0.5pt solid #ccc;
    padding-bottom: 2pt;
  }

  /* Layouts → single column */
  .event-layout, .show-layout, .article-layout,
  .visit-layout, .visit-grid,
  .contact-layout, .contact-layout--stages, .contact-layout--general,
  .about-grid, .footer-grid, .news-grid, .cast-page-grid, .cast-grid,
  .gallery-mosaic, .gallery-page-grid, .album-grid,
  .rep-grid {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }

  /* Hide sticky/sidebar items (already hidden via .event-side) */
  .show-cover { position: static !important; }

  /* Cover images & gallery imgs */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .event-cover-img, .show-cover-img, .article-cover-img,
  .news-page-img, .rep-card-img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover;
    margin: 0 0 12pt 0 !important;
    page-break-inside: avoid;
  }

  /* Galleries → simple grid */
  .article-gallery, .gallery-page-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6pt !important;
  }
  .article-gallery-item, .gallery-page-item {
    page-break-inside: avoid;
  }
  .article-gallery-item img, .gallery-page-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    display: block;
  }
  .gallery-page-overlay { display: none !important; }

  /* Cards */
  .cast-card, .cast-page-card, .news-card,
  .rep-card, .album-card, .cal-card,
  .visit-card, .contact-block, .event-side-card {
    background: #fff !important;
    color: #111 !important;
    border: 0.5pt solid #ddd !important;
    padding: 10pt !important;
    margin-bottom: 10pt !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .cast-page-photo-wrap, .cast-avatar {
    border: 0 !important;
  }

  /* Description rich blocks */
  .desc-section { page-break-inside: avoid; margin-bottom: 12pt; }
  .desc-section-title { color: #111 !important; }
  .desc-credit-row { color: #222 !important; }
  .desc-warning { background: #f8f0f0 !important; border-left: 2pt solid #b00 !important; color: #222 !important; }

  /* Print header — show site name on each page */
  body::before {
    content: "ბათუმის სახელმწიფო თეატრი";
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 9pt;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    border-bottom: 0.5pt solid #bbb;
    padding-bottom: 4pt;
    margin-bottom: 10pt;
  }

  /* Print footer — URL */
  body::after {
    content: "© 2026 · drama.shindi.ge";
    display: block;
    margin-top: 18pt;
    padding-top: 6pt;
    border-top: 0.5pt solid #bbb;
    font-family: 'Barlow', sans-serif;
    font-size: 8.5pt;
    letter-spacing: 0.12em;
    color: #888;
    text-transform: uppercase;
  }
}

/* ──────────────────────────────────────────
   SUBPAGE NAV (sibling pages tabs)
────────────────────────────────────────── */
.subpage-nav {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.subpage-nav-inner {
  display: flex;
  align-items: center;
  padding: 0 60px;
  overflow-x: auto;
  scrollbar-width: none;
}

.subpage-nav-inner::-webkit-scrollbar { display: none; }

.subpage-nav-link {
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 16px 20px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.subpage-nav-link:hover { color: rgba(255,255,255,0.8); }
.subpage-nav-link.active { color: var(--white); border-bottom-color: var(--red); }

/* ──────────────────────────────────────────
   PAGE CONTENT AREA
────────────────────────────────────────── */
.page-content {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-content-wide {
  padding: 80px 60px;
}

/* ──────────────────────────────────────────
   SECTION BACKGROUNDS (inner pages reuse)
────────────────────────────────────────── */
.sec-dark-page  { background: var(--black); }
.sec-light-page { background: var(--gray-95); color: var(--black); }
.sec-mid-page   { background: #111; }

/* ──────────────────────────────────────────
   PROSE (long text content)
────────────────────────────────────────── */
.prose {
  max-width: 780px;
}

.prose h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.prose h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin: 28px 0 8px;
  letter-spacing: 0.02em;
}

.prose p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray-30);
  margin-bottom: 18px;
}

.prose ul, .prose ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

.prose li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-30);
  margin-bottom: 6px;
}

/* prose on dark background */
.sec-dark-page .prose h2,
.sec-dark-page .prose h3 { color: var(--white); }
.sec-dark-page .prose h2 { border-top-color: rgba(255,255,255,0.08); }
.sec-dark-page .prose p,
.sec-dark-page .prose li  { color: rgba(255,255,255,0.65); }

/* ──────────────────────────────────────────
   BIOGRAPHY LAYOUT
────────────────────────────────────────── */
.bio-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}

.bio-photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.bio-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: var(--gray-15);
}

.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.bio-meta {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bio-name {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.bio-role {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light);
}

.bio-facts {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bio-fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bio-fact-label {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.bio-fact-value {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.bio-body .prose h2 {
  font-size: 20px;
  padding-top: 32px;
  margin-top: 32px;
}

/* ──────────────────────────────────────────
   CAST PAGE INNER
────────────────────────────────────────── */
.cast-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 32px 24px;
  padding: 72px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.cast-page-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

/* Bio roles/films/awards list */
.bio-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.bio-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}
.bio-list li:last-child { border-bottom: none; }

.cast-page-card:hover .cast-page-photo { transform: scale(1.03); filter: grayscale(0%); }

.cast-page-photo-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-15);
  margin-bottom: 14px;
}

.cast-page-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.5s var(--ease-out);
}

.cast-page-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  background: var(--gray-15);
}

.cast-page-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
}

.cast-page-role {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ──────────────────────────────────────────
   INFO CARDS (tickets, services)
────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.info-card {
  background: var(--gray-95);
  padding: 40px 36px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.info-card:hover { border-left-color: var(--red); }

.info-card-icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
  color: var(--red);
}

.info-card-label {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 10px;
}

.info-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.2;
}

.info-card-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-30);
}

.info-card-body a {
  color: var(--red);
  text-decoration: none;
}

.info-card-body a:hover { text-decoration: underline; }

/* ──────────────────────────────────────────
   REPERTOIRE GRID
────────────────────────────────────────── */
.rep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.rep-card {
  display: flex;
  flex-direction: column;
}

.rep-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray-15);
  margin-bottom: 20px;
  text-decoration: none;
}

.rep-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.rep-card-img-wrap:hover .rep-card-img { transform: scale(1.04); }

.rep-card-age {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.12em;
  padding: 4px 7px;
  border-radius: 2px;
}

.rep-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rep-card-meta {
  margin-bottom: 8px;
}

.rep-card-stage {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light, #e05050);
}

.rep-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}

.rep-card-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.rep-card-title a:hover { color: rgba(255,255,255,0.65); }

.rep-card-author {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.rep-card-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  flex: 1;
}

.rep-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color 0.2s, color 0.2s;
}

.rep-card-btn:hover {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.5);
}

/* ── Show detail page ── */
.show-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.show-cover {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.show-cover-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.show-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.show-tag {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 10px;
  border-radius: 2px;
}

.show-prose {
  margin-bottom: 28px;
}

.show-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.show-cal-link {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.show-cal-link:hover { color: var(--white); }

@media (max-width: 1100px) {
  .rep-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .show-layout { grid-template-columns: 1fr; gap: 32px; }
  .show-cover { position: static; }
  .show-cover-img { aspect-ratio: 1 / 1; }
}

@media (max-width: 640px) {
  .rep-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ──────────────────────────────────────────
   COMING SOON SECTION
────────────────────────────────────────── */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 60px;
  min-height: 60vh;
}

.coming-soon-line {
  width: 40px; height: 1px;
  background: var(--red);
  margin: 0 auto 32px;
}

.coming-soon h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.coming-soon p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 420px;
  line-height: 1.8;
}

/* ──────────────────────────────────────────
   SERVICES — GROUP VISITS PAGE
────────────────────────────────────────── */
.visit-layout {
  max-width: 1100px;
  margin: 0 auto;
}

.visit-intro {
  text-align: center;
  padding: 0 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px;
}

.visit-eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light, #e0636b);
  margin-bottom: 12px;
}

.visit-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.visit-lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 720px;
  margin: 0 auto 14px;
}
.visit-lead:last-child { margin-bottom: 0; }

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.visit-card {
  position: relative;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 36px 32px 32px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.visit-card:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.visit-card--contact {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(175,20,32,0.08) 0%, rgba(255,255,255,0.035) 100%);
  border-color: rgba(175,20,32,0.25);
}

.visit-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
}

.visit-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.visit-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0 0 12px;
}

.visit-card p strong {
  color: #fff;
  font-weight: 600;
}

.visit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.visit-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}

.visit-list li:last-child {
  border-bottom: none;
}

.visit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 1px;
  background: var(--red);
}

.visit-list li strong {
  color: #fff;
  font-weight: 600;
}

.visit-email {
  display: inline-block;
  margin-top: 4px;
  color: var(--red-light, #ff5566);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,85,102,0.3);
  transition: border-color 0.2s ease;
}

.visit-email:hover {
  border-bottom-color: var(--red-light, #ff5566);
}

.visit-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.visit-download:hover {
  background: var(--red2, #c4162a);
  transform: translateY(-1px);
}

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--red);
  transition: gap 0.2s ease;
}

.visit-link:hover {
  gap: 12px;
}

.visit-contact-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.visit-contact-list li {
  margin: 0;
}

.visit-contact-list a {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.visit-contact-list a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.visit-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 36px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--red);
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.visit-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.visit-note strong {
  color: #fff;
  font-weight: 600;
  margin-right: 4px;
}

@media (max-width: 780px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-card--contact { grid-column: auto; }
  .visit-title { font-size: 24px; }
  .visit-card { padding: 30px 22px 26px; }
}

/* ──────────────────────────────────────────
   CALENDAR PAGE FULL-WIDTH
────────────────────────────────────────── */
.calendar-wrap--page {
  background: #f5f4f0;
  padding-bottom: 80px;
}

/* ──────────────────────────────────────────
   CALENDAR EVENT DETAIL PAGE
────────────────────────────────────────── */
.event-layout {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

.event-title-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.event-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  flex: 1;
}

.event-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  margin-top: 6px;
}

.event-author {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light, #e05050);
  margin-bottom: 28px;
}

.event-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
}

/* Clean paragraph + bulleted-list description style */
.event-desc p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.78);
}
.event-desc p:last-child { margin-bottom: 0; }

.event-desc ul.desc-bullets {
  list-style: disc;
  padding-left: 22px;
  margin: 4px 0 22px;
  color: rgba(255,255,255,0.78);
}
.event-desc ul.desc-bullets li {
  margin: 0 0 6px;
  padding: 0;
  line-height: 1.7;
}
.event-desc ul.desc-bullets li::marker { color: rgba(255,255,255,0.35); }

.event-desc-body {
  padding: 4px 0 8px;
}

.event-desc-body .event-credits {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Rich description sections (e.g. რევიზორი) */
.event-desc .desc-section {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.event-desc .desc-section:first-child {
  padding-top: 0;
  border-top: none;
}

.event-desc .desc-section-title {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light, #e05050);
  margin: 0 0 18px;
}

.event-desc .desc-credits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-desc .desc-credit-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  font-size: 14px;
  line-height: 1.6;
  padding: 6px 0;
}

.event-desc .desc-credit-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.event-desc .desc-credit-value {
  color: rgba(255,255,255,0.9);
}

.event-desc .desc-cast {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 28px;
  row-gap: 2px;
}

.event-desc .desc-cast li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  font-size: 13px;
}

.event-desc .cast-char {
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.event-desc .cast-actor {
  color: #fff;
  text-align: right;
  font-weight: 500;
}

.event-desc .desc-annotation p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin: 0 0 14px;
}

.event-desc .desc-annotation p:last-child { margin-bottom: 0; }

.event-desc .desc-box-office p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0 0 10px;
}

.event-desc .desc-box-office p:last-child { margin-bottom: 0; }

.event-desc .desc-box-office strong {
  color: #fff;
  font-weight: 600;
}

.event-desc a {
  color: var(--red-light, #e05050);
  text-decoration: none;
  border-bottom: 1px solid rgba(224,80,80,0.3);
  transition: border-color 0.2s ease;
}

.event-desc a:hover {
  border-bottom-color: var(--red-light, #e05050);
}

.event-desc .desc-plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-desc .desc-plain-list li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  padding: 4px 0;
}

.event-desc .desc-plain-list strong {
  color: #fff;
  font-weight: 600;
}

.event-desc .desc-warning {
  display: block;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: rgba(175,20,32,0.08);
  border-left: 2px solid var(--red);
  border-radius: 0 3px 3px 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

.event-desc .desc-contact {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

@media (max-width: 700px) {
  .event-desc .desc-credit-row { grid-template-columns: 1fr; gap: 2px; padding: 4px 0; }
  .event-desc .desc-cast { grid-template-columns: 1fr; }
  .event-desc .desc-cast li { grid-template-columns: 1fr; gap: 2px; }
  .event-desc .cast-actor { text-align: left; }
}

.event-credits {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13px;
}

.event-credit-label {
  color: rgba(255,255,255,0.35);
  min-width: 90px;
  flex-shrink: 0;
}

.event-credit-value {
  color: rgba(255,255,255,0.75);
}

.event-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 28px;
}

.event-info-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.event-info-row:first-child { padding-top: 0; }

.event-info-label {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.event-info-value {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* Upcoming-dates list inside repertoire-show sidebar */
.event-info-upcoming .event-info-value {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.event-upcoming-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.event-upcoming-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.35);
  color: var(--white);
}
.event-upcoming-time {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--red-light, #e0636b);
  white-space: nowrap;
}

.event-ticket-btn {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 14px 24px;
  text-decoration: none;
}

.event-cover {
  width: 100%;
  overflow: hidden;
  margin: 0 0 24px;
}

.event-cover-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .event-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ──────────────────────────────────────────
   CALENDAR EVENT — MEDIA TABS
────────────────────────────────────────── */
.event-tabs {
  margin-top: 20px;
}

.event-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.event-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.event-tab-btn:hover {
  color: rgba(255,255,255,0.85);
}

.event-tab-btn.active {
  color: #fff;
  border-bottom-color: var(--red);
}

.event-tab-btn svg {
  flex-shrink: 0;
}

.event-tabs-panels {
  position: relative;
}

.event-tab-panel {
  display: none;
  animation: eventPanelFade 0.25s ease;
}

.event-tab-panel.active {
  display: block;
}

@keyframes eventPanelFade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.event-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.event-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* YouTube thumbnail click-through (used when iframe embedding is disabled) */
.event-video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.event-video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
  transition: filter 0.3s ease, transform 0.5s ease;
}
.event-video-thumb:hover .event-video-thumb-img {
  filter: brightness(0.92);
  transform: scale(1.03);
}
.event-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78px; height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 0, 0.92);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, background 0.25s ease;
  pointer-events: none;
}
.event-video-thumb:hover .event-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(229, 9, 20, 1);
}
.event-video-play svg { margin-left: 4px; }
.event-video-thumb-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.55);
  padding: 6px 12px;
  border-radius: 2px;
  pointer-events: none;
}
@media (max-width: 600px) {
  .event-video-play { width: 60px; height: 60px; }
  .event-video-play svg { width: 26px; height: 26px; }
  .event-video-thumb-label { font-size: 9px; padding: 5px 10px; left: 10px; bottom: 10px; }
}

.event-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.event-photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.04);
}

.event-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.4s ease;
}

.event-photo-item img:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

@media (max-width: 700px) {
  .event-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

.event-audio-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-audio-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 18px 20px;
}

.event-audio-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}

.event-audio-title svg {
  flex-shrink: 0;
  color: var(--red);
}

.event-audio-item audio {
  width: 100%;
  display: block;
}

.event-audio-empty {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.event-press-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.event-press-list li {
  margin: 0;
}

.event-press-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.event-press-list a:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}

.event-press-list a svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}

.event-press-list a:hover svg {
  color: var(--red);
}

.event-press-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.event-press-list a:hover .event-press-icon {
  background: rgba(175,20,32,0.15);
}

.event-press-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.event-press-title {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  line-height: 1.35;
}

.event-press-source {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: lowercase;
}

.event-press-type {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.event-press-list a:hover .event-press-type {
  background: var(--red);
  color: #fff;
}

.event-empty {
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 4px;
}

.event-venue-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.event-venue-link:hover {
  color: #fff;
  border-bottom-color: var(--red);
}

.event-venue-link svg {
  opacity: 0.55;
}

/* ──────────────────────────────────────────
   HISTORY PAGE TIMELINE
────────────────────────────────────────── */
.history-layout {
  display: grid;
  grid-template-columns: 1fr 680px;
  gap: 80px;
  padding: 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.history-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.history-sidebar-title {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.history-toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.history-toc a {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}

.history-toc a:hover {
  color: var(--white);
  border-left-color: rgba(255,255,255,0.2);
  padding-left: 16px;
}

.history-toc a.active {
  color: var(--white);
  border-left-color: var(--red);
  padding-left: 16px;
}

.history-body {}

.history-era {
  margin-bottom: 64px;
}

.history-era-year {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 12px;
}

.history-era h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.history-era p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.62);
  margin-bottom: 16px;
}

/* Productions timeline (history-productions.html) */
.history-era .productions-intro {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  font-style: italic;
}

.productions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.productions-list li {
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.productions-list li:last-child { border-bottom: none; }

.productions-list li::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 20px;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.7;
}

.history-era.history-era-productions {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ──────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.contact-layout--stages {
  grid-template-columns: repeat(3, 1fr);
}

.contact-layout--general {
  grid-template-columns: 1fr 1fr;
  margin-top: 2px;
}

.contact-layout--three {
  grid-template-columns: 1.2fr 1fr 1fr;
}

/* Per-stage block inside the stages column */
.contact-stage + .contact-stage {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.contact-stage-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.contact-block-dark .contact-stage + .contact-stage {
  border-top-color: rgba(255,255,255,0.08);
}
.contact-block-dark .contact-stage-name { color: var(--white); }

.contact-addr-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,0,0,0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-addr-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.contact-block-dark .contact-addr-link {
  border-bottom-color: rgba(255,255,255,0.2);
}
.contact-block-dark .contact-addr-link:hover {
  color: var(--red-light, #e0636b);
  border-bottom-color: var(--red-light, #e0636b);
}

.contact-tickets-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.contact-tickets-btn:hover { background: var(--red2); }

/* ──────────────────────────────────────────
   SERVICES — RENTAL CARDS
────────────────────────────────────────── */
.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.rental-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.3s ease;
}
.rental-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
}
.rental-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-15);
}
.rental-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.rental-card-img-wrap:hover .rental-card-img { transform: scale(1.04); }

.rental-card-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rental-card-meta {
  margin-bottom: 14px;
}
.rental-card-stage {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light, #e0636b);
}
.rental-card-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.25;
}
.rental-card-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}
.rental-card-title a:hover { color: var(--red-light, #e0636b); }
.rental-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin: 0 0 22px;
}
.rental-card-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.rental-card-btn:hover {
  background: var(--red);
  border-color: var(--red);
}
@media (max-width: 900px) {
  .rental-grid { grid-template-columns: 1fr; gap: 28px; }
  .rental-card-body { padding: 26px 24px 30px; }
  .rental-card-title { font-size: 20px; }
}

/* Rental detail page (services-rental-show.html) */
.rental-show-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 28px;
}
.rental-show-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rental-show-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
.rental-show-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light, #e0636b);
  border: 1px solid rgba(224,99,107,0.35);
  padding: 5px 10px;
}
.rental-show-title {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--white);
  margin: 0 0 24px;
  line-height: 1.2;
}
.rental-show-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}
.rental-show-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--white);
  margin: 28px 0 14px;
}
.rental-show-body p { margin: 0 0 16px; }
.rental-show-body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 22px;
}
.rental-show-body li {
  margin-bottom: 6px;
  line-height: 1.7;
}
.rental-show-back {
  margin-top: 36px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.rental-show-back a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.rental-show-back a:hover { color: var(--white); }
@media (max-width: 600px) {
  .rental-show-title { font-size: 24px; }
}

@media (max-width: 1100px) {
  .contact-layout--three { grid-template-columns: 1fr 1fr; }
  .contact-layout--three > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .contact-layout--three { grid-template-columns: 1fr; }
  .contact-layout--three > :first-child { grid-column: auto; }
}

.contact-block {
  padding: 60px 52px;
  background: var(--gray-95);
}

.contact-block-dark {
  background: var(--gray-10);
}

.contact-block-label {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 10px;
}

.contact-block-dark .contact-block-label { color: rgba(255,255,255,0.3); }

.contact-block-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
  line-height: 1.2;
}

.contact-block-dark .contact-block-title { color: var(--white); }

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 20px;
}

.contact-item-label {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-50);
}

.contact-block-dark .contact-item-label { color: rgba(255,255,255,0.3); }

.contact-item-value {
  font-size: 14px;
  color: var(--gray-30);
  line-height: 1.6;
}

.contact-item-value a {
  color: var(--red);
  text-decoration: none;
}

.contact-item-value a:hover { text-decoration: underline; }

.contact-block-dark .contact-item-value { color: rgba(255,255,255,0.7); }
.contact-block-dark .contact-item-value a { color: var(--red-light); }

.contact-map-btn-wrap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.contact-block-dark .contact-map-btn-wrap {
  border-top-color: rgba(255,255,255,0.08);
}

.contact-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.contact-map-btn:hover {
  background: var(--red);
  color: #fff;
}

.contact-block-dark .contact-map-btn {
  border-color: var(--red-light);
  color: var(--red-light);
}

.contact-block-dark .contact-map-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.contact-map {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(0.3) contrast(0.9);
}

/* ──────────────────────────────────────────
   SECTION LABEL (reusable)
────────────────────────────────────────── */
.sec-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.sec-label-row .sec-label {
  flex-shrink: 0;
}

.sec-label-row::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.sec-dark-page .sec-label-row::after { background: rgba(255,255,255,0.08); }

/* ──────────────────────────────────────────
   RESPONSIVE — INNER PAGES
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .history-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 40px;
  }
  .history-sidebar { position: static; }

  .bio-layout {
    grid-template-columns: 240px 1fr;
    gap: 48px;
  }

  .bio-photo-wrap { position: static; }

  .info-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-block { padding: 44px 32px; }
}

@media (max-width: 768px) {
  .page-banner-inner { padding: 36px 24px 32px; }
  .page-banner h1 { font-size: 32px; }

  .subpage-nav-inner { padding: 0 24px; }

  .page-content { padding: 52px 24px; }
  .page-content-wide { padding: 52px 24px; }

  .bio-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bio-photo-wrap { position: static; max-width: 260px; }

  .cast-page-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 48px 24px;
    gap: 24px 16px;
  }

  .contact-layout,
  .contact-layout--stages,
  .contact-layout--general { grid-template-columns: 1fr; }

  .contact-block { padding: 40px 24px; }

  .info-grid { grid-template-columns: 1fr 1fr; }

  .coming-soon { padding: 80px 24px; }

  .history-layout { padding: 48px 24px; }

}

@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────
   MOBILE DROPDOWN NAV  ≤640px
────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Increase max-height for dropdown content */
  .nav-bottom.mobile-open { max-height: 760px; }

  .nav-has-sub {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: none;
    border-top: none;
    background: rgba(255,255,255,0.03);
    padding: 0;
    display: none;
    min-width: unset;
  }

  .nav-has-sub.mobile-sub-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    height: 42px;
    padding: 0 20px 0 32px;
    font-size: 10px;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
  }

  .nav-dropdown a:hover, .nav-dropdown a.active {
    padding-left: 36px;
    border-left: none;
  }

  .nav-chevron {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .cast-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
}

/* ══════════════════════════════════════════
   NEWS LIST PAGE
══════════════════════════════════════════ */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* All cards equal size — featured behaves identically */
.news-page-card--featured {
  grid-column: auto;
  display: flex;
}

.news-page-card {
  background: var(--gray-15);
  display: flex;
  flex-direction: column;
}

.news-page-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-page-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.news-page-card:hover .news-page-img { transform: scale(1.04); }

.news-page-tag { display: none !important; }

/* Tickets — სასცენო სივრცეები */
.tickets-venues {
  background: var(--black);
  padding: 72px 60px;
  box-sizing: border-box;
}
.tickets-venues-label { margin-bottom: 48px; }
.tickets-venues-label .sec-label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.tickets-venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.tickets-venue-card {
  background: rgba(255,255,255,0.03);
  padding: 48px 44px;
  border-left: 3px solid rgba(255,255,255,0.1);
  box-sizing: border-box;
  min-width: 0;
}
.tickets-venue-card--accent { border-left-color: var(--red); }
.tickets-venue-num {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.tickets-venue-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.tickets-venue-addr {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .tickets-venues { padding: 56px 32px; }
  .tickets-venues-grid { grid-template-columns: 1fr; gap: 12px; }
  .tickets-venue-card { padding: 36px 28px; }
  .tickets-venue-name { font-size: 19px; }
}
@media (max-width: 540px) {
  .tickets-venues { padding: 44px 18px; }
  .tickets-venue-card { padding: 28px 20px; }
  .tickets-venue-name { font-size: 17px; }
}

/* News pager */
.news-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 56px 0 16px;
  flex-wrap: wrap;
}
.news-pager-num,
.news-pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.news-pager-num:hover,
.news-pager-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}
.news-pager-num.is-current {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  cursor: default;
}
.news-pager-num.is-current:hover {
  background: var(--red);
  border-color: var(--red);
}
.news-pager-dots {
  color: rgba(255,255,255,0.35);
  padding: 0 6px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media (max-width: 480px) {
  .news-pager-num,
  .news-pager-btn { min-width: 34px; height: 34px; font-size: 11px; }
}

.news-page-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-page-date {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.news-page-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
}

.news-page-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.news-page-title a:hover { color: var(--red); }

.news-page-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.news-page-read {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.news-page-read:hover { opacity: 0.7; }

/* ══════════════════════════════════════════
   NEWS ARTICLE PAGE
══════════════════════════════════════════ */
.article-layout {
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.article-tag {
  background: var(--red);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.article-date {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.article-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.article-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.article-action:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.article-action--video {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.article-action--video:hover {
  background: var(--red2);
  border-color: var(--red2);
  color: #fff;
}

.article-lightbox-video {
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16/9;
  max-height: 90vh;
}

.article-lightbox-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media print {
  .nav, .footer, .sponsors-wrap, .article-actions, .article-back, .article-gallery,
  .article-gallery-label, .page-banner .breadcrumb { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .sec-dark-page, .article-body, .article-title { background: #fff !important; color: #000 !important; }
}

.article-cover {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}

.article-cover-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.article-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
}

.article-body p { margin-bottom: 20px; }
.article-body a { color: var(--red); }

.article-gallery-label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 4px;
  margin-bottom: 48px;
}

.article-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.article-gallery-item img:hover { opacity: 0.85; }

.article-back {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}

.article-back a {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.article-back a:hover { color: var(--white); }

/* Article inline lightbox */
.article-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.article-lightbox-inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.article-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}

.article-lightbox-prev,
.article-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 9100;
}
.article-lightbox-prev { left: 24px; }
.article-lightbox-next { right: 24px; }
.article-lightbox-prev:hover,
.article-lightbox-next:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
@media (max-width: 600px) {
  .article-lightbox-prev,
  .article-lightbox-next { width: 40px; height: 40px; font-size: 24px; }
  .article-lightbox-prev { left: 8px; }
  .article-lightbox-next { right: 8px; }
}

/* ══════════════════════════════════════════
   GALLERY — ALBUMS
══════════════════════════════════════════ */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.album-card {
  display: block;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.album-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.album-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-15);
}
.album-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.92);
}
.album-card:hover .album-cover img { transform: scale(1.05); filter: brightness(1); }
.album-info {
  padding: 22px 24px 26px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.album-title {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 8px;
}
.album-meta {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 18px;
}
.album-open {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light, #e0636b);
}
.album-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.album-back:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.album-detail-title {
  font-family: var(--font-head);
  font-size: 34px;
  color: var(--white);
  margin: 8px 0 10px;
}
.album-detail-meta {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-50);
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .album-grid { grid-template-columns: 1fr; gap: 18px; }
  .album-detail-title { font-size: 26px; }
}

/* ══════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════ */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
}

.gallery-page-item {
  position: relative;
  overflow: hidden;
  background: var(--gray-15);
}

.gallery-page-item--wide  { grid-column: span 2; }
.gallery-page-item--tall  { grid-row: span 2; }

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.gallery-page-item:hover img { transform: scale(1.04); }

.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-page-item:hover .gallery-page-overlay { opacity: 1; }

.gallery-page-caption {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.gallery-page-expand {
  color: rgba(255,255,255,0.6);
  line-height: 1;
}

/* Gallery full-page lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
}

.gallery-lightbox[hidden] { display: none; }

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.94);
}

.gallery-lightbox-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}

.gallery-lightbox-caption {
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.gallery-lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.gallery-lightbox-close:hover { color: #fff; }

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 28px;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.gallery-lightbox-prev { left: 24px; }
.gallery-lightbox-next { right: 24px; }
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .news-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-page-item--wide { grid-column: span 2; }
  .gallery-page-item--tall { grid-row: auto; }
  .article-cover-img { height: 280px; }
}

@media (max-width: 540px) {
  .news-page-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-page-item--wide { grid-column: span 2; }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
}
