*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #C8102E;
  --red-dark: #a00d24;
  --black: #080808;
  --dark: #101010;
  --card: #141414;
  --card-hover: #1c1c1c;
  --white: #ffffff;
  --muted: #777777;
  --border: rgba(255,255,255,0.07);
  --border-red: rgba(200,16,46,0.25);
}

html {
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noscript-notice {
  background: var(--red-dark);
  color: var(--white);
  padding: 14px 48px;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.noscript-notice a {
  color: var(--white);
  text-decoration: underline;
}
.noscript-notice p + p {
  margin-top: 6px;
}

.static-fallback {
  margin: 0;
}
.units-fallback {
  grid-column: 1 / -1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0;
}
.units-fallback li {
  background: var(--card);
  padding: 24px 20px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.75);
}
.marquee-fallback {
  padding: 12px 48px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  width: 100%;
}
.productions-fallback {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  width: 100%;
}
.productions-fallback li {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 200px;
  background: var(--card);
  padding: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.productions-fallback span {
  display: block;
  margin-top: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--red);
  padding: 8px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-contacts {
  display: flex;
  gap: 32px;
}
.topbar-contact {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-contact span {
  opacity: 0.7;
}
.topbar-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 76px;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 32px rgba(200,16,46,0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.25s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 11px 28px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
video.hero-bg {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.38;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 35%, transparent 65%, var(--black) 100%);
  z-index: 1;
}
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: repeating-linear-gradient(90deg, #fff 0px, #fff 1px, transparent 1px, transparent 60px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.hero-title,
.hero-title-accent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  opacity: 0;
}
.hero-title {
  color: var(--white);
  margin-bottom: 10px;
  animation: fadeUp 0.7s 0.35s forwards;
}
.hero-title-accent {
  color: var(--red);
  display: block;
  animation: fadeUp 0.7s 0.5s forwards;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 28px auto;
  opacity: 0;
  animation: fadeIn 0.6s 0.65s forwards;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.7s 0.75s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.9s forwards;
}
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.scroll-indicator span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s 1.4s ease-in-out infinite;
}

/* ─── BUTTONS ─── */
.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  background: var(--red);
  color: var(--white);
  padding: 15px 38px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-outline {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  background: transparent;
  color: var(--white);
  padding: 15px 38px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-white {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  background: var(--white);
  color: var(--red);
  padding: 15px 36px;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-white:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--red);
  padding: 52px 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.18);
  text-align: center;
}
.stat:first-child {
  padding-left: 0;
  text-align: left;
}
.stat:last-child {
  border-right: none;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

/* ─── SECTIONS ─── */
section {
  padding: 100px 48px;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 480px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

/* ─── UNITS GRID ─── */
.units-section {
  background: var(--dark);
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.unit-card {
  background: var(--card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s;
  border: 1px solid var(--border);
}
.unit-card:hover {
  transform: translateY(-5px);
}
.unit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
  z-index: 2;
}
.unit-card:hover::before {
  transform: scaleX(1);
}
.unit-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.9);
  transition: filter 0.4s, transform 0.4s;
}
.unit-card:hover .unit-img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.03);
}
.unit-body {
  padding: 28px 28px 32px;
}
.unit-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.unit-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.unit-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin-bottom: 20px;
}
.unit-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.unit-spec {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.unit-spec::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
}
.unit-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.unit-link:hover {
  gap: 14px;
}

/* ─── UNIT IMAGE SLIDER ─── */
.unit-slider {
  position: relative;
  overflow: hidden;
}
.unit-slides {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: pan-y;
}
.unit-slides .unit-img {
  flex: 0 0 100%;
  min-width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #0d0d0d;
  display: block;
  filter: brightness(0.97) saturate(0.97);
  transition: filter 0.4s;
}
.unit-card:hover .unit-slides .unit-img {
  filter: brightness(1.05) saturate(1.05);
  transform: none;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(8,8,8,0.55);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s;
  z-index: 3;
}
.unit-slider:hover .slider-arrow {
  opacity: 1;
}
.slider-arrow:hover {
  background: var(--red);
}
.slider-arrow.prev {
  left: 8px;
}
.slider-arrow.next {
  right: 8px;
}
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot:hover {
  background: rgba(255,255,255,0.7);
}
.slider-dot.active {
  background: var(--red);
  transform: scale(1.3);
}
@media (hover: none) {
  .slider-arrow {
    opacity: 1;
  }
}

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 52px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  padding: 0 44px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.18);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.3s;
  gap: 16px;
}
.marquee-item:hover {
  color: rgba(255,255,255,0.6);
}
.marquee-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--red);
}

/* ─── GALLERY ─── */
.gallery-section {
  background: var(--dark);
  padding: 80px 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}
.img-broken {
  opacity: 0.35;
  filter: grayscale(1);
}

/* ─── PRODUCTIONS ─── */
.productions-section {
  background: var(--dark);
}
.productions-slider-wrap {
  position: relative;
}
.productions-track-outer {
  overflow: hidden;
  touch-action: pan-y;
}
.productions-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.production-card {
  flex: 0 0 calc(33.333% - 2px);
  margin-right: 2px;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.production-card:hover {
  transform: translateY(-4px);
}
.production-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
  z-index: 2;
}
.production-card:hover::before {
  transform: scaleX(1);
}
.production-body {
  padding: 40px 36px 36px;
}
.production-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.production-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--white);
}
.production-divider {
  width: 32px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
  margin-top: 20px;
}
.productions-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.prod-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.prod-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.prod-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
.prod-dots {
  display: flex;
  gap: 7px;
}
.prod-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.prod-dot.active {
  background: var(--red);
  transform: scale(1.3);
}
@media (max-width: 960px) {
  .production-card {
    flex: 0 0 calc(50% - 2px);
  }
}
@media (max-width: 600px) {
  .production-card {
    flex: 0 0 100%;
  }
}

/* ─── CONTACT STRIP ─── */
.contact-strip {
  background: var(--red);
  padding: 72px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-strip-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-strip-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.contact-strip-contacts {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-person {
  text-align: center;
}
.contact-person-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.contact-person-primary .contact-person-role {
  color: rgba(255,255,255,0.85);
}
.contact-person-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.contact-person-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
}
.contact-person-primary .contact-person-phone {
  font-size: 2.1rem;
}
.contact-person-secondary .contact-person-name {
  color: rgba(255,255,255,0.45);
}
.contact-person-secondary .contact-person-phone {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.75);
}
.contact-person-phone:hover {
  opacity: 0.75;
}
.contact-person-email {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: block;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.contact-person-primary .contact-person-email {
  font-size: 0.85rem;
}
.contact-person-secondary .contact-person-email {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
}
.contact-person-email:hover {
  opacity: 0.75;
}

/* ─── FOOTER ─── */
footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 72px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-logo img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-contact-link:hover {
  color: var(--white);
}
.footer-contact-link-primary {
  color: rgba(255,255,255,0.75);
}
.footer-contact-link-secondary {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}
.footer-contact-link-secondary:hover {
  color: rgba(255,255,255,0.55);
}
.footer-contact-link::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.4;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.87rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--muted);
}

/* ─── LIGHTBOX ─── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: zoom-out;
}
#lightbox.open {
  display: flex;
}
#lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.05);
  border: 1px solid rgba(255,255,255,0.07);
  display: block;
  user-select: none;
}
#lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.55);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
  transition: color 0.2s;
}
#lightbox-close:hover {
  color: var(--red);
}
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10000;
  border-radius: 2px;
}
.lb-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
#lb-prev {
  left: 16px;
}
#lb-next {
  right: 16px;
}
#lightbox-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
#lightbox-hint {
  position: fixed;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .topbar {
    padding: 8px 24px;
  }
  .topbar-tagline {
    display: none;
  }
  nav {
    padding: 0 24px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 4px 24px 18px;
  }
  nav.open .nav-links {
    display: flex;
  }
  .nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    font-size: 1rem;
  }
  section {
    padding: 72px 24px;
  }
  .gallery-section {
    padding: 60px 24px;
  }
  .units-grid {
    grid-template-columns: 1fr 1fr;
  }
  .units-fallback {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .stat {
    border-right: none;
    padding: 0;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-strip {
    flex-direction: column;
    text-align: center;
  }
  .contact-strip-contacts {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .units-grid {
    grid-template-columns: 1fr;
  }
  .units-fallback {
    grid-template-columns: 1fr;
  }
  .productions-fallback li {
    flex: 1 1 100%;
  }
  .noscript-notice {
    padding: 14px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title, .hero-title-accent {
    font-size: 3.2rem;
  }
}
