/* ═══════════════════════════════════════════════════
   PLATFORM ANIMATION — Redesigned Stylesheet
   Palette: Black #0a0a0a | Gold #F5A623 | Slate #6B7FA3
   ═══════════════════════════════════════════════════ */

:root {
  --black:     #0a0a0a;
  --black-mid: #111214;
  --black-card:#16181c;
  --gold:      #F5A623;
  --gold-dim:  #c4841a;
  --gold-glow: rgba(245,166,35,0.18);
  --slate:     #8fa8d0;
  --slate-dim: #6B7FA3;
  --white:     #f0ede8;
  --white-dim: rgba(240,237,232,0.55);
  --font-display: 'Bebas Neue', sans-serif;
  --font-ui:      'Rajdhani', sans-serif;
  --font-mono:    'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

header, header * {
  cursor: default;
}

a, button, [role="button"],
header a, header button,
.work-thumb, .work-thumb-link, .schirkoa-carousel,
.originals-visual, .ai-carousel, .orig-tab,
.play-btn, .sc-dot, .nav-link, .email-link,
.scroll-indicator, .ai-cell, .yt-channel-link,
.footer-social-link {
  cursor: pointer;
}

/* ── Custom cursor ─────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s;
}

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

/* ── Header ────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  padding: 14px 48px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(245,166,35,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1280px; margin: 0 auto;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-shadow: 0 0 18px var(--gold-glow);
}

nav ul { list-style: none; display: flex; gap: 36px; }

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.cta-link {
  color: var(--gold) !important;
  border: 1px solid rgba(245,166,35,0.4);
  padding: 6px 16px;
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}
.cta-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black) !important;
}
.cta-link::after { display: none; }

/* ── Hero Section ──────────────────────────────────── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  overflow: hidden;
}

/* Radial vignette behind logo */
#home::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw; height: 70vh;
  background: radial-gradient(ellipse, rgba(245,166,35,0.13) 0%, rgba(245,166,35,0.04) 40%, transparent 70%);
  pointer-events: none;
}

#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 80px 24px 0;
}

/* ── Logo strings ──────────────────────────────────── */
.logo-wrapper {
  position: relative;
  width: min(560px, 86vw);
  display: flex; flex-direction: column; align-items: center;
}

.strings-container {
  position: relative;
  width: 100%; height: 72px;
  display: flex; align-items: flex-start;
  animation: stringsDescend 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes stringsDescend {
  0%   { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* The spotlight cone — wide triangle of light shooting down from the bar */
.strings-container::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 340px;
  background: conic-gradient(
    from 270deg at 50% 0%,
    transparent 0deg,
    rgba(255,220,100,0.0) 28deg,
    rgba(255,220,100,0.055) 42deg,
    rgba(255,235,160,0.10) 50deg,
    rgba(255,220,100,0.055) 58deg,
    rgba(255,220,100,0.0) 72deg,
    transparent 360deg
  );
  pointer-events: none;
  z-index: 0;
  animation: torchFlicker 4s ease-in-out infinite 1.5s;
}

@keyframes torchFlicker {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scaleX(1); }
  25%       { opacity: 1;    transform: translateX(-50%) scaleX(1.03); }
  50%       { opacity: 0.9;  transform: translateX(-50%) scaleX(0.97); }
  75%       { opacity: 1;    transform: translateX(-50%) scaleX(1.02); }
}

@keyframes stringsDescend {
  0%   { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.string {
  position: absolute;
  left: var(--x);
  top: 0;
  width: 1.5px;
  height: 68px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 225, 130, 0.85) 30%,
    rgba(245, 166, 35, 0.55) 65%,
    rgba(245, 166, 35, 0.0) 100%
  );
  transform-origin: top center;
  animation-delay: var(--delay);
  box-shadow: 0 0 4px rgba(255,220,120,0.7), 0 0 10px rgba(255,200,80,0.4);
  border-radius: 1px;
  z-index: 1;
}

.logo-img-wrap {
  will-change: transform, opacity;
  position: relative;
  animation: logoReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes logoReveal {
  0%   { opacity: 0; transform: translateY(-32px); }
  100% { opacity: 1; transform: translateY(0); }
}
.logo-img-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140%; height: 140%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(245,166,35,0.07) 0%,
    rgba(245,166,35,0.03) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
  animation: haloBreath 5s ease-in-out infinite 2s;
}

@keyframes haloBreath {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1.4;
    transform: translate(-50%, -50%) scale(1.07);
  }
}

@keyframes logoDropIn {
  0%   { opacity: 0; transform: translateY(-80px) scale(0.7) rotate(-3deg); }
  60%  { opacity: 1; transform: translateY(12px) scale(1.03) rotate(0.5deg); }
  80%  { transform: translateY(-6px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

#logo {
  display: block;
  width: min(520px, 80vw);
  height: auto;
  will-change: filter;
  filter: drop-shadow(0 0 6px rgba(245,166,35,0.18))
          drop-shadow(0 0 20px rgba(245,166,35,0.07))
          brightness(1.08) saturate(1.08);
  transition: filter 0.6s ease;
  animation: logoPulseGlow 5s ease-in-out infinite 2s;
}

@keyframes logoPulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(245,166,35,0.18))
            drop-shadow(0 0 20px rgba(245,166,35,0.07))
            brightness(1.08) saturate(1.08);
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(245,166,35,0.28))
            drop-shadow(0 0 32px rgba(245,166,35,0.11))
            brightness(1.13) saturate(1.12);
  }
}

#logo:hover {
  filter: drop-shadow(0 0 14px rgba(245,166,35,0.38))
          drop-shadow(0 0 40px rgba(245,166,35,0.15))
          brightness(1.18) saturate(1.16);
  animation-play-state: paused;
}

/* ── Hero text ─────────────────────────────────────── */
.hero-text {
  margin-top: 36px;
  animation: heroTextFade 1.2s ease 1.2s both;
}

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

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(143,168,208,0.35);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  display: flex; gap: 0.4em; justify-content: center;
  flex-wrap: wrap;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordPop 0.7s cubic-bezier(0.175,0.885,0.32,1.275) forwards;
  animation-delay: calc(1.4s + var(--wi) * 0.15s);
}

@keyframes wordPop {
  to { opacity: 1; transform: translateY(0); }
}

.hero-title .gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,166,35,0.35);
}

/* ── Scroll indicator ──────────────────────────────── */
.scroll-indicator {
  margin-top: 56px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  text-decoration: none;
  animation: heroTextFade 1s ease 2.2s both;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--slate);
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(143,168,208,0.3);
}

.scroll-line {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--slate), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ── Content Sections ──────────────────────────────── */
.content-section {
  padding: 100px 48px;
}

#work {
  padding-left: 24px;
  padding-right: 24px;
}

.dark-section {
  background: var(--black-mid);
}

.section-inner {
  max-width: 1200px; margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.9;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 56px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 36px rgba(245,166,35,0.2);
}

/* ── Reveal animations ─────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── About ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--white-dim);
  margin-bottom: 18px;
  transition-delay: 0.15s;
}

.about-text strong { color: var(--gold); font-weight: 700; }

.about-stats {
  display: flex; flex-direction: column; gap: 32px;
  transition-delay: 0.3s;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 28px rgba(245,166,35,0.3);
}

.stat-label {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
  text-shadow: 0 0 14px rgba(143,168,208,0.25);
}

/* ── Services ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(107,127,163,0.1);
  padding: 36px 28px;
  transition: border-color 0.35s, background 0.35s, transform 0.35s;
  transition-delay: calc(var(--ci) * 0.1s);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.04);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  transition: text-shadow 0.3s;
}

.service-card:hover .service-icon {
  text-shadow: 0 0 24px rgba(245,166,35,0.6);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ── Work ──────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
#work .section-inner {
  max-width: 1560px;
}

@media (max-width: 1024px) {
  .work-grid { grid-template-columns: 1fr; }
  .originals-card { grid-column: span 1; }
}

.work-item {
  transition-delay: calc(var(--ci) * 0.1s);
}

.work-thumb-link {
  display: block;
  text-decoration: none;
}

.work-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1c22, #23262f);
  border: 1px solid rgba(107,127,163,0.15);
  position: relative; overflow: hidden;
  transition: border-color 0.35s;
  cursor: pointer;
}

/* ── Schirkoa Carousel ─────────────────────────────── */
.schirkoa-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(107,127,163,0.15);
  background: #0a0a0a;
}

.sc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  /* ken-burns: each active slide slowly drifts */
  animation: kenBurns 8s ease-in-out infinite alternate;
}

.sc-slide.active { opacity: 1; }

@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.07) translate(-1%, -1%); }
}

/* alternate direction per odd slides */
.sc-slide:nth-child(odd).active  { animation-direction: alternate; }
.sc-slide:nth-child(even).active { animation-direction: alternate-reverse; }

/* gradient overlay: top for badge, bottom for type + play */
.sc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.0) 35%,
    rgba(0,0,0,0.0) 60%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 2;
}

.sc-top  { display: flex; justify-content: flex-start; }
.sc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* dots */
.sc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.sc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.sc-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* play button reused */
.play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,166,35,0.88);
  color: #000;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  padding-left: 3px;
  box-shadow: 0 0 20px rgba(245,166,35,0.4);
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
}

.play-btn:hover {
  transform: scale(1.12);
  background: var(--gold);
}

.work-thumb.type-2 {
  background: linear-gradient(135deg, #121820, #1a2535);
}

.work-thumb.type-3 {
  background: linear-gradient(135deg, #161b22, #1f2433);
}

/* Animated shimmer line */
.work-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(245,166,35,0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.work-thumb:hover { border-color: rgba(245,166,35,0.4); }
.work-thumb:hover::before { transform: translateX(100%); }

.work-thumb-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

.work-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 4px 10px;
  border-radius: 2px;
  align-self: flex-start;
}

.work-type {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  background: rgba(10,10,10,0.7);
  padding: 4px 10px;
  border-radius: 2px;
  text-shadow: 0 0 10px rgba(143,168,208,0.3);
  align-self: flex-start;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 4px 4px;
}

.work-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.work-award {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.8;
  white-space: nowrap;
}

.work-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.6;
  padding: 6px 4px 0;
}

/* ── Originals tabbed card ─────────────────────────── */
.originals-card {
  grid-column: span 1;
}

/* originals-visual: fixed 16/9 container — panels stack inside it */
.originals-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(107,127,163,0.15);
  background: #0a0a0a;
}

/* panels fill the visual container completely */
.orig-panel {
  display: none;
  position: absolute;
  inset: 0;
}
.orig-panel.active { display: block; }

/* badge + tabs overlaid on the top edge of the visual */
.orig-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  pointer-events: none;
}

.orig-overlay-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 100%);
  pointer-events: all;
}

.orig-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.orig-tab {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(107,127,163,0.22);
  padding: 4px 9px;
  cursor: pointer;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.orig-tab:first-child { border-radius: 2px 0 0 2px; }
.orig-tab:last-child  { border-radius: 0 2px 2px 0; }

.orig-tab.active,
.orig-tab:hover {
  color: var(--gold);
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.4);
}

/* embed fills its panel fully */
.yt-embed-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  overflow: hidden;
}

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

.yt-channel-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.25s;
}

.yt-channel-link:hover { color: var(--gold); }
.contact-section { text-align: center; }

.contact-content {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  transition-delay: 0.15s;
}

.contact-sub {
  font-size: 1rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

.email-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(245,166,35,0.3);
  padding-bottom: 8px;
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
  text-transform: lowercase;
}

.email-link:hover { gap: 28px; border-color: var(--gold); }

.email-arrow {
  transition: transform 0.3s;
  display: inline-block;
}

.email-link:hover .email-arrow { transform: translateX(8px); }

/* ── Footer ────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(245,166,35,0.1);
  padding: 24px 48px;
}

.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--slate);
}

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

@media (max-width: 768px) {
  header { padding: 18px 24px; }
  header.scrolled { padding: 12px 24px; }
  nav ul { gap: 20px; }

  .content-section { padding: 72px 24px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .work-grid     { grid-template-columns: 1fr; }
  .footer-inner  { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  nav ul { gap: 14px; }
  .nav-link { font-size: 0.75rem; }
  .hero-title { font-size: 3rem; }
}

/* ── AI thumbnail grid ─────────────────────────────── */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(107,127,163,0.15);
}

.ai-cell {
  display: block;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease, transform 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.ai-cell:hover { transform: scale(1.04); z-index: 1; }
.ai-cell.fading { opacity: 0; }

/* ── AI Carousel (same as Schirkoa) ────────────────── */
.ai-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(107,127,163,0.15);
  background: #0a0a0a;
}

.ai-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: kenBurns 8s ease-in-out infinite alternate;
}

.ai-slide.active { opacity: 1; }
.ai-slide:nth-child(odd).active  { animation-direction: alternate; }
.ai-slide:nth-child(even).active { animation-direction: alternate-reverse; }

/* ── Social links ──────────────────────────────────── */
.nav-social-divider {
  width: 1px;
  height: 14px;
  background: rgba(107,127,163,0.3);
  margin: 0 4px;
  align-self: center;
  list-style: none;
}

.nav-social {
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.25s, color 0.25s;
}

.nav-social:hover {
  opacity: 1;
  color: var(--gold) !important;
}

.nav-social::after { display: none; }

.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-link {
  color: var(--slate);
  opacity: 0.7;
  transition: color 0.25s, opacity 0.25s;
  display: flex;
  align-items: center;
}

.footer-social-link:hover {
  color: var(--gold);
  opacity: 1;
}

/* ── Shorts Carousel (same as Schirkoa) ────────────── */
.sh-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.sh-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: kenBurns 8s ease-in-out infinite alternate;
}

.sh-slide.active { opacity: 1; }
.sh-slide:nth-child(odd).active  { animation-direction: alternate; }
.sh-slide:nth-child(even).active { animation-direction: alternate-reverse; }

/* ── Videos Carousel (same as Schirkoa) ────────────── */
.vid-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.vid-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: kenBurns 8s ease-in-out infinite alternate;
}

.vid-slide.active { opacity: 1; }
.vid-slide:nth-child(odd).active  { animation-direction: alternate; }
.vid-slide:nth-child(even).active { animation-direction: alternate-reverse; }
