/* ─── Variables ─── */
:root {
  --black: #050505;
  --black-soft: #0c0c0c;
  --red-dark: #2a0808;
  --red: #8b1a1a;
  --orange: #e85d04;
  --orange-soft: #ff7b2e;
  --gold: #d4a853;
  --gold-light: #f0d78c;
  --text: #e8e4df;
  --text-muted: #9a9288;
  --glow: rgba(232, 93, 4, 0.35);
  --glow-gold: rgba(212, 168, 83, 0.25);
  --font: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

/* ─── Reset & base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* ─── Grain overlay ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

.header--scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.08);
}

.logo {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 55%, var(--gold) 120%);
  color: var(--black);
  box-shadow: 0 0 40px var(--glow), 0 4px 24px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 56px var(--glow), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.btn-outline {
  border-color: rgba(212, 168, 83, 0.35);
  color: var(--gold-light);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.06);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-flame {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(232, 93, 4, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(139, 26, 26, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 80% 70%, rgba(212, 168, 83, 0.15) 0%, transparent 45%),
    linear-gradient(180deg, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%),
    linear-gradient(135deg, var(--red-dark) 0%, var(--black) 40%, #1a0a05 100%);
  animation: flamePulse 8s ease-in-out infinite alternate;
}

@keyframes flamePulse {
  0% { filter: brightness(1) saturate(1); }
  100% { filter: brightness(1.08) saturate(1.15); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 0%, var(--black) 85%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  max-width: 720px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: var(--text);
  text-shadow:
    0 0 80px var(--glow),
    0 0 120px var(--glow-gold);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 32em;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 12px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0.2; }
}

/* ─── Sections ─── */
.section {
  padding: clamp(5rem, 12vw, 8rem) 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, transparent, rgba(42, 8, 8, 0.25), transparent);
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 0.75rem;
}

.section-head {
  text-align: center;
  max-width: 36em;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-head p {
  color: var(--text-muted);
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 28em;
}

.section-head__sub {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Video block ─── */
.video-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.12);
}

.video-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.video-frame iframe,
.video-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: var(--black-soft);
}

.video-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.video-caption code {
  font-size: 0.85em;
  color: var(--gold);
}

/* ─── Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.team-visual {
  position: relative;
}

.team-image {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.85) contrast(1.05);
}
@media (max-width: 768px) {
  .team-visual {
    display: none;
  }
}
.team-glow {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 70%;
  height: 50%;
  background: radial-gradient(ellipse, var(--glow) 0%, transparent 70%);
  z-index: 0;
}

.team-copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.team-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.team-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 168, 83, 0.12);
}

.team-stats li {
  display: flex;
  flex-direction: column;
}

.team-stats strong {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold-light);
}

.team-stats span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Cards (formats) ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, rgba(42, 8, 8, 0.5) 0%, rgba(12, 12, 12, 0.8) 100%);
  border: 1px solid rgba(139, 26, 26, 0.25);
  border-radius: 4px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 93, 4, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 32px rgba(232, 93, 4, 0.08);
}

.card-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Benefits ─── */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}

.benefit {
  padding-left: 1rem;
  border-left: 1px solid rgba(232, 93, 4, 0.25);
}

.benefit-num {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
}

.benefit h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.benefit p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── Gallery ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s;
  filter: brightness(0.75) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.g-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.g-tall {
  grid-row: span 2;
}

/* ─── Programs ─── */
.programs-section {
  padding-bottom: clamp(4rem, 10vw, 6rem);
  background:
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(139, 26, 26, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 80%, rgba(232, 93, 4, 0.12) 0%, transparent 50%);
}

.programs-meta {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(232, 93, 4, 0.22);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(42, 8, 8, 0.45) 0%, rgba(10, 10, 10, 0.85) 100%);
  box-shadow: 0 0 40px rgba(232, 93, 4, 0.06);
}

.programs-meta__lead {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 1rem;
}

.programs-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.programs-specs li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.programs-specs__value {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(232, 93, 4, 0.2);
}

.programs-specs__label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

.programs-grid--single {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
  max-width: 100%;
  margin-inline: auto;
}

.extras-section {
  padding-top: 0;
}

/* Horizontal scroll layout (restorable)
.programs-scroll {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  overflow-x: auto;
  ...
}
.programs-hint { ... }
*/

.program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(165deg, rgba(42, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.95) 100%);
  border: 1px solid rgba(139, 26, 26, 0.35);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.55s var(--ease), border-color 0.55s, box-shadow 0.55s;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.program-card:hover {
  border-color: rgba(232, 93, 4, 0.45);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(232, 93, 4, 0.12);
  transform: translateY(-6px);
}

.program-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--black-soft);
  border: 0;
  padding: 0;
  cursor: default;
  text-align: left;
  font: inherit;
  color: inherit;
}

.program-media--playable {
  cursor: pointer;
}

.program-media--playable:focus-visible {
  outline: 2px solid rgba(232, 93, 4, 0.55);
  outline-offset: -2px;
}

.program-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.85) 0%, transparent 45%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.35) 0%, transparent 30%, transparent 70%, rgba(5, 5, 5, 0.35) 100%);
}

.program-poster,
.program-media > img:not(.program-poster) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.82);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}

.program-card:hover .program-poster,
.program-card:hover .program-media > img:not(.program-poster) {
  filter: saturate(1) contrast(1.08) brightness(0.92);
  transform: scale(1.03);
}

.program-play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  pointer-events: none;
  background: rgba(5, 5, 5, 0.25);
  transition: background 0.45s var(--ease);
}

.program-media--playable:hover .program-play,
.program-media--playable:focus-visible .program-play {
  background: rgba(5, 5, 5, 0.38);
}

.program-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(240, 215, 140, 0.45);
  background: rgba(42, 8, 8, 0.65);
  box-shadow: 0 0 32px rgba(232, 93, 4, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

.program-play-icon::before {
  content: "";
  margin-left: 4px;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--gold-light);
}

.program-media--playable:hover .program-play-icon,
.program-media--playable:focus-visible .program-play-icon {
  transform: scale(1.08);
  border-color: rgba(232, 93, 4, 0.65);
  box-shadow: 0 0 48px rgba(232, 93, 4, 0.45);
}

.program-play-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.9;
}

/* Video modal (promo) */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(8px);
}

.video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  animation: modalIn 0.45s var(--ease);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
}

.video-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.8);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.video-modal__close:hover {
  border-color: rgba(232, 93, 4, 0.5);
  box-shadow: 0 0 24px rgba(232, 93, 4, 0.2);
}

.video-modal__title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.video-modal__frame {
  border: 1px solid rgba(139, 26, 26, 0.45);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(232, 93, 4, 0.15);
  background: var(--black);
}

.video-modal__player {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  background: var(--black);
}

.video-modal__hint {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

body.video-modal-open {
  overflow: hidden;
}

.program-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.75rem 2rem;
  position: relative;
}

.program-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 93, 4, 0.35), transparent);
}

.program-body h3 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  color: var(--gold-light);
}

.program-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.program-media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232, 93, 4, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, rgba(42, 8, 8, 0.6) 0%, var(--black-soft) 100%);
}

.program-placeholder-label {
  position: relative;
  z-index: 3;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240, 215, 140, 0.55);
  text-shadow: 0 0 32px rgba(232, 93, 4, 0.25);
}

/* ─── Contacts (channels only) ─── */
.contacts-section {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(42, 8, 8, 0.35) 40%, transparent);
}

.contacts-intro {
  max-width: 28em;
  margin: 0 auto 3rem;
}

.contacts-intro h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.contacts-intro p {
  color: var(--text-muted);
  font-size: 1rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(145deg, rgba(20, 8, 8, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 6px;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s,
    box-shadow 0.45s,
    background 0.45s;
}

.channel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232, 93, 4, 0.15) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 93, 4, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 32px rgba(232, 93, 4, 0.1);
}

.channel-card:hover::after {
  opacity: 1;
}

.channel-card:focus-visible {
  outline: 2px solid rgba(232, 93, 4, 0.5);
  outline-offset: 3px;
}

.channel-icon {
  display: flex;
  width: 28px;
  height: 28px;
  color: var(--orange-soft);
  margin-bottom: 0.5rem;
  transition: color 0.35s, filter 0.35s;
}

.channel-icon svg {
  width: 100%;
  height: 100%;
}

.channel-card:hover .channel-icon {
  color: var(--gold-light);
  filter: drop-shadow(0 0 12px var(--glow));
}

.channel-icon--vk svg {
  width: 26px;
  height: 26px;
}

.channel-name {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.channel-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.35s;
}

.channel-card:hover .channel-detail {
  color: var(--gold);
}

/* ─── Footer ─── */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(212, 168, 83, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .g-wide,
  .g-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item {
    min-height: 180px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 5, 5, 0.96);
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .programs-specs {
    gap: 1.25rem 1.75rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .contact-channels {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .team-image {
    max-height: 400px;
    aspect-ratio: 16 / 10;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .team-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-flame,
  .hero-scroll span {
    animation: none;
  }

  .program-card:hover {
    transform: none;
  }
}
