/*
Theme Name: South Indian Logic
Theme URI: https://southindianlogic.com
Author: South Indian Logic
Author URI: https://southindianlogic.com
Description: A premium cinematic WordPress theme for South Indian Logic — Telugu entertainment production house. Features a Netflix-inspired dark aesthetic with orange accents, smooth animations, and a fully responsive layout.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: south-indian-logic
Tags: entertainment, dark, cinematic, responsive, custom-header, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --sil-orange:       #7c3aed;
  --sil-orange-light: #9461f5;
  --sil-orange-glow:  rgba(124, 58, 237, 0.25);
  --sil-black:        #0a0a0a;
  --sil-dark:         #111111;
  --sil-dark-card:    #1a1a1a;
  --sil-dark-border:  #2a2a2a;
  --sil-gray:         #888888;
  --sil-light-gray:   #cccccc;
  --sil-white:        #ffffff;
  --sil-overlay:      rgba(0, 0, 0, 0.65);

  /* Apple/Google inspired font stack:
     Display  → Figtree ExtraBold           (clean, modern, Apple-like impact)
     Heading  → DM Sans                     (Google Material-style, refined)
     Body     → Nunito Sans                 (friendly, readable) */
  --font-display:  'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:     'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover:  0 8px 40px rgba(124,58,237,0.2);
  --shadow-glow:   0 0 30px rgba(124,58,237,0.35);

  --transition-fast:   0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-xl: 1280px;
  --container-lg: 1080px;
  --container-md: 768px;
  --header-h:     80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--sil-white);
  color: var(--sil-black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.dark-page {
  background: var(--sil-black);
  color: var(--sil-white);
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-heading {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.container--md {
  max-width: var(--container-lg);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sil-orange);
  margin-bottom: 12px;
  position: relative;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--sil-orange);
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sil-black);
  margin-bottom: 16px;
}

.section-title--white { color: var(--sil-white); }

.text-center { text-align: center; }

/* AOS-like animation classes */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.anim-fade-in.is-visible { opacity: 1; }

.anim-scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s var(--transition-bounce);
}
.anim-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
  border-radius: inherit;
}

.btn:hover::before { transform: scaleX(1); }

/* PRIMARY — solid purple */
.btn-primary {
  background: #7c3aed !important;
  background-color: #7c3aed !important;
  color: #ffffff !important;
  border: 2px solid #7c3aed !important;
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
}

.btn-primary:hover {
  background: #9461f5 !important;
  background-color: #9461f5 !important;
  border-color: #9461f5 !important;
  box-shadow: 0 6px 28px rgba(124,58,237,0.45);
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* OUTLINE white */
.btn-outline {
  background: transparent !important;
  background-color: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

.btn-outline:hover {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #0a0a0a !important;
  border-color: #ffffff !important;
}

/* OUTLINE purple */
.btn-outline-orange {
  background: transparent !important;
  background-color: transparent !important;
  color: #7c3aed !important;
  border: 2px solid #7c3aed !important;
}

.btn-outline-orange:hover {
  background: #7c3aed !important;
  background-color: #7c3aed !important;
  color: #ffffff !important;
  border-color: #7c3aed !important;
  box-shadow: 0 0 30px rgba(124,58,237,0.35);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

#site-header.transparent {
  background: transparent;
}

#site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-fast);
}

.site-logo:hover img { transform: scale(1.04); }

.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sil-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.site-logo .logo-text span { color: var(--sil-orange); }

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

#primary-nav a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
  position: relative;
}

#primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--sil-orange);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  border-radius: var(--radius-full);
}

#primary-nav a:hover,
#primary-nav .current-menu-item a {
  color: var(--sil-white);
}

#primary-nav a:hover::after,
#primary-nav .current-menu-item a::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--sil-orange) !important;
  color: var(--sil-white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-full) !important;
}
.nav-cta:hover { opacity: 0.9; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sil-white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  display: block;
  padding: 8px 0;
}

.mobile-nav a:hover { color: var(--sil-orange); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  /* 100svh = small viewport height on mobile (excludes browser chrome),
     prevents the empty black gap below buttons that 100vh causes */
  height: 100svh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sil-black);
}

/* On very short screens (landscape mobile) adapt to content */
@media (max-height: 680px) {
  .hero {
    height: auto;
    min-height: unset;
    padding: 110px 20px 60px;
  }
}

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

/* Poster collage grid */
.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  opacity: 0.45;
  transform: scale(1.06);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}

.hero-collage-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-collage-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.5) 100%);
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.75) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
  /* Push content up slightly so scroll arrow breathes */
  margin-bottom: 48px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sil-white);
  margin-bottom: 14px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 900;
  color: #8b5cf6;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.5s forwards;
}

.hero-title em {
  font-style: normal;
  font-weight: 900;
  color: #8b5cf6;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 18px auto 0;
  line-height: 1.65;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.9s forwards;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
  opacity: 0;
  animation: heroFadeUp 1s ease 1.1s forwards;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--sil-white);
  letter-spacing: 0.04em;
}

.hero-stat-label {
  font-size: 0.65rem;
  font-family: var(--font-heading);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* On mobile hide stats — they overlap content */
@media (max-width: 480px) {
  .hero-stats { display: none; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  animation: scrollBounce 2.5s ease infinite;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section-about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--sil-white);
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sil-dark-card);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-frame:hover img { transform: scale(1.05); }

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--sil-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

.about-image-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--sil-white);
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
}

.about-content {}

.about-content .section-label { display: block; }

.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #f8f8f8;
  transition: all var(--transition-smooth);
}

.about-highlight-item:hover {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sil-orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--sil-orange);
  fill: none;
}

.highlight-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.highlight-text p {
  font-size: 0.78rem;
  color: var(--sil-gray);
}

/* ============================================================
   WINGS / BRANDS SECTION
   ============================================================ */
.section-wings {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--sil-dark);
  position: relative;
  overflow: hidden;
}

.section-wings::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(124,58,237,0.04) 0%, transparent 60%);
}

.wings-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.wings-header .section-label::before { background: var(--sil-orange); }

.wings-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 3vw, 48px);
  overflow-x: auto;
  padding-bottom: 8px;
}

.wing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.wing-circle {
  width: clamp(110px, 14vw, 150px);
  height: clamp(110px, 14vw, 150px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all var(--transition-smooth);
  background-clip: padding-box;
}

.wing-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent, transparent);
  z-index: -1;
  transition: all var(--transition-smooth);
}

.wing-card:hover .wing-circle {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 20px 50px rgba(124,58,237,0.3);
  border-color: var(--sil-orange);
}

.wing-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.wing-circle-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}

.wing-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
}

.wing-desc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.55;
  margin-top: 8px;
  max-width: 160px;
  transition: color var(--transition-fast);
}

.wing-card:hover .wing-desc { color: rgba(255,255,255,0.65); }

.wing-card:hover .wing-name { color: var(--sil-orange); }

/* Brand colors */
.wing-sil         { background: #3d1f9a; }
.wing-sainma      { background: #c0392b; }
.wing-rowdy       { background: #8b1a1a; }
.wing-silplay     { background: #0e6b6b; }
.wing-sainma-talk { background: #b8860b; }
.wing-sil-2       { background: #4a1f8a; }

/* ============================================================
   TRENDING / VIDEOS SECTION
   ============================================================ */
.section-videos {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--sil-white);
}

.videos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
  gap: 20px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sil-dark-card);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111;
}

.video-thumb img,
.video-thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-card:hover .video-thumb img { transform: scale(1.08); }

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.video-card:hover .video-play-overlay { opacity: 1; }

.play-btn-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sil-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124,58,237,0.5);
  transform: scale(0.8);
  transition: transform var(--transition-bounce);
}

.video-card:hover .play-btn-circle { transform: scale(1); }

.play-btn-circle svg {
  width: 20px;
  height: 20px;
  fill: var(--sil-white);
  margin-left: 3px;
}

.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sil-orange);
  color: var(--sil-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-heading);
}

.video-info {
  padding: 18px 20px 20px;
}

.video-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.channel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sil-orange);
  flex-shrink: 0;
}

.channel-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sil-orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sil-white);
  line-height: 1.3;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-views {
  font-size: 0.78rem;
  color: var(--sil-gray);
  font-family: var(--font-heading);
}

.video-watch-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sil-orange);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
}

.video-card:hover .video-watch-btn { gap: 8px; }

/* Embedded iframe cards */
.video-embed-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111;
}

.video-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   PRODUCTIONS / PORTFOLIO
   ============================================================ */
.section-productions {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--sil-black) 0%, #0d0d0d 100%);
  position: relative;
}

.productions-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.productions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.production-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--sil-dark-card);
  cursor: pointer;
  group: true;
}

.production-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.production-card:hover img { transform: scale(1.1); }

.production-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.production-card:hover .production-overlay { opacity: 1; }

.production-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sil-white);
  margin-bottom: 4px;
}

.production-tag {
  font-size: 0.7rem;
  color: var(--sil-orange);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.section-stats {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--sil-orange);
  position: relative;
  overflow: hidden;
}

.section-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--sil-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.section-contact {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--sil-black);
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-info .section-label { display: block; }

.contact-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--sil-white);
  margin-bottom: 20px;
}

.contact-text {
  color: var(--sil-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition-fast);
}

.contact-link-item:hover { color: var(--sil-orange); }

.contact-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124,58,237,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.contact-link-item:hover .contact-link-icon { background: var(--sil-orange); }

.contact-link-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--sil-orange);
  fill: none;
  transition: stroke var(--transition-fast);
}

.contact-link-item:hover .contact-link-icon svg { stroke: var(--sil-white); }

.contact-link-text span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sil-gray);
  margin-bottom: 2px;
  font-family: var(--font-heading);
}

.contact-link-text strong {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background: var(--sil-dark-card);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--sil-dark-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sil-gray);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sil-dark-border);
  background: rgba(255,255,255,0.04);
  color: var(--sil-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sil-orange);
  background: rgba(124,58,237,0.05);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

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

.form-group select option { background: var(--sil-dark-card); }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #050505;
  padding: clamp(60px, 8vw, 100px) 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--sil-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-brand .footer-logo span { color: var(--sil-orange); }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--sil-gray);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sil-gray);
  transition: all var(--transition-fast);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--sil-orange);
  border-color: var(--sil-orange);
  color: var(--sil-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sil-white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: var(--sil-gray);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover { color: var(--sil-orange); }

.footer-col a::before {
  content: '→';
  font-size: 0.7rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition-fast);
  color: var(--sil-orange);
}

.footer-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-heading);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: var(--sil-orange); }

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--sil-dark);
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(124,58,237,0.08) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--sil-white);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--sil-gray);
  max-width: 560px;
}

/* Single post / page content */
.entry-content {
  padding: clamp(60px, 8vw, 100px) 0;
}

.entry-content .container {
  max-width: 800px;
}

.wp-block-heading { margin: 32px 0 16px; }
.wp-block-paragraph { margin-bottom: 20px; color: #444; font-size: 1.05rem; line-height: 1.85; }

/* ============================================================
   SEARCH / 404
   ============================================================ */
.not-found-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--sil-dark);
  padding: 80px 20px;
}

.not-found-code {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(124,58,237,0.15);
  line-height: 0.9;
  margin-bottom: 24px;
}

.not-found-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--sil-white);
  margin-bottom: 16px;
}

.not-found-text {
  color: var(--sil-gray);
  margin-bottom: 36px;
  max-width: 400px;
  margin-inline: auto;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sil-orange);
  color: var(--sil-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--sil-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--sil-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.loader-logo span { color: var(--sil-orange); }

.loader-bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--sil-orange);
  border-radius: 2px;
  animation: loaderProgress 1.2s ease forwards;
}

@keyframes loaderProgress {
  from { width: 0; }
  to   { width: 100%; }
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.widget-area { padding: 0; }
.widget { margin-bottom: 32px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--sil-gray); text-align: center; padding: 8px 0; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden; }
.skip-link { position: absolute; top: -100px; left: 0; background: var(--sil-orange); color: #fff; padding: 12px 24px; z-index: 9999; transition: top 0.3s; }
.skip-link:focus { top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .productions-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .about-inner         { grid-template-columns: 1fr; }
  .about-media         { max-width: 480px; margin: 0 auto; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .contact-inner       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #primary-nav { display: none; }
  .hamburger   { display: flex; }

  .hero-stats  { gap: 32px; bottom: 32px; }

  .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

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

  .about-highlights { grid-template-columns: 1fr; }

  .wings-grid { gap: 16px; }
  .wing-circle { width: 90px; height: 90px; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: 1 / -1; }

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

  .videos-header { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .videos-grid      { grid-template-columns: 1fr; }
  .productions-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stats       { flex-wrap: wrap; gap: 20px; bottom: 20px; }
  .footer-top       { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .hero-actions     { flex-direction: column; align-items: center; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .back-to-top      { bottom: 20px; right: 20px; }
  .wing-circle { width: 75px; height: 75px; }
}
