/* ═══════════════════════════════════════════
   ÚLTIMO VINO T.V. — PREMIUM STYLESHEET
   Palette: Navy Blue + Crimson Red
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  /* Core palette — extracted from logo */
  --color-navy: #1a2456;
  --color-navy-light: #2a3a7a;
  --color-navy-dark: #0e1433;
  --color-crimson: #c62828;
  --color-crimson-light: #e53935;
  --color-crimson-dark: #8e1c1c;
  --color-crimson-glow: rgba(198, 40, 40, 0.25);

  /* Backgrounds */
  --color-bg: #060a18;
  --color-bg-alt: #0a0f22;
  --color-bg-card: #0f1530;
  --color-bg-glass: rgba(26, 36, 86, 0.15);

  /* Text */
  --color-white: #ffffff;
  --color-text: #c8cce0;
  --color-text-muted: #6b72a0;

  /* Borders & Effects */
  --color-border: rgba(198, 40, 40, 0.18);
  --color-border-subtle: rgba(26, 36, 86, 0.35);
  --color-whatsapp: #25d366;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--color-crimson), var(--color-navy));
  --gradient-brand-soft: linear-gradient(135deg, rgba(198, 40, 40, 0.12), rgba(26, 36, 86, 0.08));
  --gradient-crimson: linear-gradient(135deg, #c62828, #e53935, #c62828);
  --gradient-navy: linear-gradient(135deg, #1a2456, #2a3a7a);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-glow: 0 0 50px rgba(198, 40, 40, 0.1);
  --shadow-glow-strong: 0 0 80px rgba(198, 40, 40, 0.18);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Accent color utility */
.accent { color: var(--color-crimson-light); }

/* Selection color */
::selection {
  background: rgba(198, 40, 40, 0.3);
  color: var(--color-white);
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(6, 10, 24, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

/* Logo with image */
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--transition);
}

.header__logo:hover { opacity: 0.85; }

.header__logo-img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
  filter: drop-shadow(0 2px 12px rgba(198, 40, 40, 0.35));
  transition: transform var(--transition);
}

.header__logo:hover .header__logo-img {
  transform: scale(1.05);
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 2.5px;
  line-height: 1.2;
}

.header__logo-accent {
  color: var(--color-crimson-light);
  text-shadow: 0 0 20px rgba(198, 40, 40, 0.3);
}

/* Navigation */
.header__nav-list {
  display: flex;
  gap: 36px;
}

.header__nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition);
  border-radius: 1px;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--color-crimson-light);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.header__menu-bar {
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__menu-toggle.active .header__menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__menu-toggle.active .header__menu-bar:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.active .header__menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero-bg.png') center/cover no-repeat;
  overflow: hidden;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 24, 0.8) 0%,
    rgba(6, 10, 24, 0.4) 35%,
    rgba(6, 10, 24, 0.5) 65%,
    rgba(6, 10, 24, 0.95) 100%
  );
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 7s ease-in-out infinite;
}

/* Alternate particle colors */
.hero__particles .particle:nth-child(odd) {
  background: var(--color-crimson-light);
  box-shadow: 0 0 6px rgba(198, 40, 40, 0.6);
}
.hero__particles .particle:nth-child(even) {
  background: rgba(42, 58, 122, 0.8);
  box-shadow: 0 0 6px rgba(26, 36, 86, 0.6);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fade-in-up 1.2s ease-out;
}

/* Hero Logo */
.hero__logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 30px rgba(198, 40, 40, 0.25));
  animation: fade-in-up 1s ease-out 0.15s both;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--color-crimson-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: fade-in-up 1s ease-out 0.3s both;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-crimson));
  opacity: 0.6;
}

.hero__eyebrow::after {
  background: linear-gradient(90deg, var(--color-crimson), transparent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: 5px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  animation: fade-in-up 1s ease-out 0.4s both;
}

.hero__title-accent {
  display: block;
  color: transparent;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(3rem, 9vw, 7rem);
  filter: drop-shadow(0 0 40px rgba(198, 40, 40, 0.2));
  animation: fade-in-up 1s ease-out 0.55s both;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text);
  margin: 24px auto 40px;
  max-width: 520px;
  letter-spacing: 1.5px;
  line-height: 1.7;
  animation: fade-in-up 1s ease-out 0.7s both;
}

.hero__cta-group {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 1s ease-out 0.85s both;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fade-in 2.5s ease-out 1.5s both;
}

.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid var(--color-crimson);
  border-bottom: 1.5px solid var(--color-crimson);
  transform: rotate(45deg);
  animation: scroll-bounce 2.2s ease-in-out infinite;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--gradient-crimson);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(198, 40, 40, 0.3);
  background-size: 200% 200%;
  animation: shimmer-bg 3s ease-in-out infinite;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(198, 40, 40, 0.45);
}

.btn--primary:active { transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: var(--color-crimson-light);
  color: var(--color-crimson-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(198, 40, 40, 0.12);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  justify-content: center;
}

.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn--full { width: 100%; justify-content: center; }
.btn__icon { font-size: 0.75rem; }

/* ═══════════════════════════════════════════
   SECTION HEADER (Shared component)
   ═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-crimson-light);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  margin-bottom: 20px;
  background: var(--gradient-brand-soft);
  backdrop-filter: blur(8px);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.section-header__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   LIVE TV
   ═══════════════════════════════════════════ */
.live-tv {
  padding: 110px 0;
  background: var(--color-bg-alt);
  position: relative;
}

.live-tv::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.live-tv__player-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto 48px;
}

.live-tv__glow {
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-crimson), transparent 40%, transparent 60%, var(--color-navy-light));
  opacity: 0.2;
  filter: blur(24px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.live-tv__player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--color-border);
  aspect-ratio: 16/9;
}

.live-tv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-tv__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(6, 10, 24, 0.6);
  cursor: pointer;
  transition: opacity var(--transition);
}

.live-tv__overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.live-tv__play-btn {
  background: none;
  border: none;
  color: var(--color-crimson-light);
  cursor: pointer;
  transition: transform var(--transition), filter var(--transition);
  filter: drop-shadow(0 0 12px rgba(198, 40, 40, 0.4));
}

.live-tv__play-btn:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px rgba(198, 40, 40, 0.6));
}

.live-tv__overlay-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 1.5px;
}

.live-tv__info-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.live-tv__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.live-tv__info-item:hover { color: var(--color-crimson-light); }
.live-tv__info-icon { font-size: 1.3rem; }

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-crimson-light);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(198, 40, 40, 0.5);
}

/* ═══════════════════════════════════════════
   PROGRAMMING
   ═══════════════════════════════════════════ */
.programming {
  padding: 110px 0;
  background: var(--color-bg);
  position: relative;
}

.programming::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.programming__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 28px;
}

.program-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-border);
}

.program-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 190px;
}

.program-card__image {
  width: 100%;
  height: 100%;
  background-size: 200% 200%;
  transition: transform 0.6s ease;
}

.program-card:hover .program-card__image { transform: scale(1.1); }

.program-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gradient-crimson);
  color: var(--color-white);
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

.program-card__body { padding: 22px; }

.program-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.program-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.program-card__meta {
  font-size: 0.78rem;
  color: var(--color-crimson-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  padding: 110px 0;
  background: var(--color-bg-alt);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  transition: transform var(--transition-slow);
}

.about__image-frame:hover .about__image { transform: scale(1.03); }

.about__image-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-crimson);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
  transition: opacity var(--transition);
}

.about__image-frame:hover .about__image-accent { opacity: 0.4; }

.about__cards-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-card {
  padding: 30px;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
  backdrop-filter: blur(8px);
}

.about-card:hover {
  transform: translateX(8px);
  border-color: var(--color-crimson);
  background: rgba(198, 40, 40, 0.04);
}

.about-card__icon {
  font-size: 1.6rem;
  color: var(--color-crimson-light);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(198, 40, 40, 0.3));
}

.about-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.about-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact {
  padding: 110px 0;
  background: var(--color-bg);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.4;
}

.form-input:focus {
  border-color: var(--color-crimson);
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08);
  background: rgba(15, 21, 48, 0.9);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.contact__sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__info-card {
  padding: 22px;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  transition:
    border-color var(--transition),
    transform var(--transition),
    background var(--transition);
  backdrop-filter: blur(8px);
}

.contact__info-card:hover {
  border-color: var(--color-crimson);
  transform: translateY(-3px);
  background: rgba(198, 40, 40, 0.04);
}

.contact__info-icon { font-size: 1.5rem; margin-bottom: 10px; }

.contact__info-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.contact__info-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 72px 0 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  position: relative;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand { max-width: 360px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer__logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
  filter: drop-shadow(0 2px 12px rgba(198, 40, 40, 0.25));
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 2.5px;
}

.footer__verse {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.7;
  border-left: 2px solid var(--color-crimson);
  padding-left: 16px;
}

.footer__links-group { display: flex; gap: 64px; }

.footer__links-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--color-crimson-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links-list a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.footer__links-list a:hover {
  color: var(--color-crimson-light);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 22px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Staggered reveal for cards */
.program-card.reveal:nth-child(1) { transition-delay: 0s; }
.program-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.program-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.program-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.about-card.reveal:nth-child(1) { transition-delay: 0s; }
.about-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.about-card.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.3; }
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0.5); }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-30px) scale(1); }
}

@keyframes shimmer-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-frame {
    max-width: 600px;
    margin: 0 auto;
  }

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

  .footer__top {
    flex-direction: column;
    gap: 36px;
  }

  .footer__links-group { gap: 48px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(6, 10, 24, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 110px 40px 40px;
    transition: right var(--transition);
    border-left: 1px solid var(--color-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .header__nav.open { right: 0; }

  .header__nav-list {
    flex-direction: column;
    gap: 28px;
  }

  .header__nav-link {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .header__nav-link::after {
    left: 0;
    transform: none;
  }

  .header__menu-toggle { display: flex; }

  .hero__logo {
    width: 120px;
    height: 120px;
  }

  .hero__title { letter-spacing: 2px; }

  .programming__grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .live-tv__info-bar { gap: 24px; }

  .live-tv,
  .programming,
  .about,
  .contact {
    padding: 80px 0;
  }

  .section-header { margin-bottom: 48px; }
  .footer__links-group { gap: 40px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .live-tv__info-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .header__inner { height: 110px; }

  .header__logo-img {
    width: 90px;
    height: 90px;
  }

  .header__logo-text {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }

  .section-header__title { letter-spacing: 2px; }

  .footer__links-group {
    flex-direction: column;
    gap: 28px;
  }

  .program-card__image-wrap { height: 160px; }

  .hero__logo {
    width: 100px;
    height: 100px;
  }
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY — REDUCED MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  html { scroll-behavior: auto; }
}
