/* ============================================================
   AETHER — Creative Technology Studio
   Magazine-style Skeuomorphic Design System
   ============================================================ */

/* ---------- FONTS ---------- */
:root {
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-alt: 'Space Grotesk', sans-serif;
  --font-impact: 'Bebas Neue', sans-serif;

  /* Colors - Dark Theme */
  --bg-dark: #0c0c0f;
  --bg-dark-alt: #12121a;
  --bg-dark-card: #181820;
  --bg-dark-elevated: #1e1e2a;

  /* Colors - Light Theme */
  --bg-light: #f8f5f0;
  --bg-light-alt: #efe8dc;
  --bg-light-card: #ffffff;

  /* Accent Colors */
  --accent-gold: #d4a74a;
  --accent-gold-light: #e8c46a;
  --accent-gold-dark: #b8883a;
  --accent-violet: #7c3aed;
  --accent-cyan: #06b6d4;
  --accent-rose: #be185d;

  /* Text */
  --text-light: #e8e0d4;
  --text-light-muted: #9a9488;
  --text-dark: #1a1a2e;
  --text-dark-muted: #6b6480;

  /* Shadows */
  --shadow-soft: 0 4px 30px rgba(0,0,0,0.3);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-hard: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.2);
  --shadow-glow-gold: 0 0 30px rgba(212, 167, 74, 0.15);
  --shadow-glow-violet: 0 0 30px rgba(124, 58, 237, 0.15);

  /* Skeuomorphic textures */
  --noise-light: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  --noise-dark: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1280px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

::selection { background: var(--accent-gold); color: var(--bg-dark); }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-violet));
  border-radius: 4px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-accent {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 120px 24px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.section-label {
  font-family: var(--font-impact);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-light-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
  z-index: 1001;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: transform var(--transition-medium);
}

.top-banner.hidden { transform: translateY(-100%); }

.banner-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeBanner 30s linear infinite;
  padding: 0 24px;
}

.banner-track span {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1a2e;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-right: 48px;
  flex-shrink: 0;
}

@keyframes marqueeBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  font-size: 0.6rem;
  transition: background var(--transition-fast);
  z-index: 2;
}

.banner-close:hover { background: rgba(0,0,0,0.3); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-medium);
  padding: 0 24px;
}

.site-header.scrolled {
  top: 0;
  background: rgba(12, 12, 15, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(232, 224, 212, 0.06);
}

.site-header.banner-hidden { top: 0; }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
}

.logo-mark {
  font-size: 1.6rem;
  color: var(--accent-gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(212, 167, 74, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light-muted);
  position: relative;
  transition: color var(--transition-fast);
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-medium);
}

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

.nav-cta {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: #1a1a2e;
  border-radius: 4px;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(212, 167, 74, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 167, 74, 0.35);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(212, 167, 74, 0.2);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition-medium);
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 167, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 50%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
  box-shadow: 0 0 6px rgba(212, 167, 74, 0.3);
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-impact);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--accent-gold);
  padding: 6px 16px;
  border: 1px solid rgba(212, 167, 74, 0.3);
  border-radius: 2px;
  margin-bottom: 32px;
  text-transform: uppercase;
  background: rgba(212, 167, 74, 0.05);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-line-1 { animation-delay: 0.3s; }
.hero-line-2 { animation-delay: 0.6s; }
.hero-line-3 { animation-delay: 0.9s; }

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

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-light-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

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

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(212, 167, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 167, 74, 0.45);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(232, 224, 212, 0.2);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 167, 74, 0.1);
}

.btn-large {
  padding: 18px 40px;
  font-size: 0.9rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-family: var(--font-impact);
  letter-spacing: 3px;
  color: var(--text-light-muted);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.8s forwards;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  padding: 24px 0;
  border-top: 1px solid rgba(232, 224, 212, 0.06);
  border-bottom: 1px solid rgba(232, 224, 212, 0.06);
  overflow: hidden;
  background: var(--bg-dark-alt);
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content span {
  font-family: var(--font-impact);
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--text-light-muted);
  padding: 0 24px;
}

.marquee-dot {
  color: var(--accent-gold);
  font-size: 1rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CAROUSEL — Featured Work
   ============================================================ */
.work-section { padding-bottom: 80px; }

.carousel-container {
  position: relative;
  overflow: hidden;
  margin: 0 -12px;
  padding: 0 12px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-slow);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark-card);
  border: 1px solid rgba(232, 224, 212, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-medium);
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hard);
  border-color: rgba(212, 167, 74, 0.2);
}

.project-visual {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise-dark);
  opacity: 0.5;
}

.project-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-impact);
  font-size: 3rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}

.project-icon {
  font-size: 3.5rem;
  color: rgba(255,255,255,0.15);
  z-index: 1;
}

.project-info {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-tag {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.project-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.project-info p {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-meta span {
  font-size: 0.7rem;
  padding: 4px 12px;
  border: 1px solid rgba(232, 224, 212, 0.1);
  border-radius: 2px;
  color: var(--text-light-muted);
  font-family: var(--font-alt);
  letter-spacing: 0.5px;
}

.project-link {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.project-link:hover { gap: 14px; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(232, 224, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--bg-dark-alt);
}

.carousel-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: scale(1.1);
}

.carousel-btn:active { transform: scale(0.95); }

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232, 224, 212, 0.15);
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent-gold);
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(212, 167, 74, 0.3);
}

/* ============================================================
   SERVICES — Magazine Style
   ============================================================ */
.services-section {
  position: relative;
  padding-top: 160px;
  padding-bottom: 160px;
}

.services-bg-text {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-impact);
  font-size: clamp(8rem, 20vw, 20rem);
  color: rgba(232, 224, 212, 0.02);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.magazine-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(232, 224, 212, 0.06);
  padding: 48px 40px;
  position: relative;
  transition: all var(--transition-medium);
  border-radius: 4px;
}

.magazine-card:hover {
  background: var(--bg-dark-elevated);
  border-color: rgba(212, 167, 74, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.service-number {
  font-family: var(--font-impact);
  font-size: 4rem;
  color: rgba(212, 167, 74, 0.04);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.service-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.magazine-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin-bottom: 20px;
}

.service-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent-gold-light);
  margin-bottom: 16px;
  line-height: 1.4;
  padding-left: 16px;
  border-left: 2px solid var(--accent-gold);
}

.service-desc {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-list {
  margin-bottom: 24px;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 8px;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.service-link {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.service-link:hover { gap: 14px; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-container {
  margin-top: 40px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(232, 224, 212, 0.06);
  cursor: pointer;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 30%, #0f3460 70%, #0c0c0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-grain {
  position: absolute;
  inset: 0;
  background-image: var(--noise-dark);
  opacity: 0.6;
}

.video-placeholder-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.video-badge {
  display: inline-block;
  font-family: var(--font-impact);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--accent-gold);
  padding: 6px 16px;
  border: 1px solid rgba(212, 167, 74, 0.3);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.video-placeholder-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.video-placeholder-content p {
  color: var(--text-light-muted);
  max-width: 400px;
  margin: 0 auto;
}

.video-element {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.video-element.playing { display: block; }
.video-element.playing + .video-placeholder { display: none; }

.video-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(12, 12, 15, 0.95);
  backdrop-filter: blur(12px);
}

.video-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 167, 74, 0.3);
}

.video-timeline {
  flex: 1;
  height: 4px;
  background: rgba(232, 224, 212, 0.1);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.video-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  border-radius: 2px;
  width: 0;
  transition: width 0.1s linear;
  position: relative;
}

.video-thumb {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 167, 74, 0.4);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.video-timeline:hover .video-thumb { opacity: 1; }

.video-time {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  color: var(--text-light-muted);
  flex-shrink: 0;
  min-width: 80px;
  text-align: right;
}

.video-fullscreen-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.video-fullscreen-btn:hover { color: var(--text-light); }

.video-caption {
  margin-top: 24px;
  text-align: center;
}

.video-caption p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

.studio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(232, 224, 212, 0.06);
  border-radius: 4px;
  transition: all var(--transition-medium);
}

.stat-item:hover {
  border-color: rgba(212, 167, 74, 0.2);
  background: var(--bg-dark-card);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
}

.stat-label {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section {
  background: var(--bg-dark-alt);
  padding: 120px 24px;
  border-top: 1px solid rgba(232, 224, 212, 0.06);
  border-bottom: 1px solid rgba(232, 224, 212, 0.06);
  max-width: 100%;
}

.testimonial-section .section-label,
.testimonial-section .section-title {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.testimonial-carousel {
  max-width: var(--container);
  margin: 60px auto 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 24px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

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

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--accent-gold);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 32px;
  font-style: italic;
  max-width: 800px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author div strong {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.testimonial-author div span {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.testimonial-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}

.testimonial-dot {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: rgba(232, 224, 212, 0.1);
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--accent-gold);
  width: 64px;
  box-shadow: 0 0 12px rgba(212, 167, 74, 0.2);
}

/* ============================================================
   INSIGHTS / BLOG
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(232, 224, 212, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(212, 167, 74, 0.15);
}

.insight-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.insight-date {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 4px 10px;
  background: rgba(0,0,0,0.3);
  border-radius: 2px;
}

.insight-icon {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.12);
}

.insight-body {
  padding: 28px;
}

.insight-tag {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.insight-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.insight-body p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.insight-link {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.insight-link:hover { gap: 14px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark-alt) 0%, #181820 50%, #1a1a2e 100%);
  border-top: 1px solid rgba(232, 224, 212, 0.06);
  border-bottom: 1px solid rgba(232, 224, 212, 0.06);
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-impact);
  font-size: clamp(12rem, 30vw, 30rem);
  color: rgba(232, 224, 212, 0.015);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(232, 224, 212, 0.06);
  color: var(--accent-gold);
  font-size: 1rem;
}

.contact-item h4 {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.contact-item a:hover { color: var(--accent-gold); }

.contact-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(232, 224, 212, 0.06);
  color: var(--text-light-muted);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-light-muted);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(232, 224, 212, 0.1);
  border-radius: 4px;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 224, 212, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 167, 74, 0.1);
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-gold);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.8rem;
  cursor: pointer;
}

.btn-submit {
  align-self: flex-start;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(212, 167, 74, 0.1);
  border: 1px solid rgba(212, 167, 74, 0.2);
  border-radius: 4px;
  color: var(--accent-gold-light);
  font-size: 0.9rem;
}

.form-success.show { display: flex; }

.form-success i { font-size: 1.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark-alt);
  border-top: 1px solid rgba(232, 224, 212, 0.06);
  overflow: hidden;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.footer-copy {
  margin-top: 24px;
  font-size: 0.75rem !important;
  color: rgba(232, 224, 212, 0.3) !important;
}

.footer-links h4 {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover { color: var(--accent-gold); }

.footer-marquee {
  padding: 24px 0;
  border-top: 1px solid rgba(232, 224, 212, 0.06);
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
}

.footer-marquee span {
  font-family: var(--font-impact);
  font-size: 1.2rem;
  letter-spacing: 6px;
  color: rgba(232, 224, 212, 0.05);
  padding: 0 24px;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-medium);
  box-shadow: 0 4px 20px rgba(212, 167, 74, 0.3);
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 167, 74, 0.45);
}

/* ============================================================
   RESPONSIVE — H5 / Mobile
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { gap: 16px; }
  .contact-grid { gap: 40px; }
  .studio-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-list, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .main-nav.open .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(12, 12, 15, 0.98);
    backdrop-filter: blur(24px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(232, 224, 212, 0.06);
  }

  .main-nav.open .nav-cta {
    display: inline-flex;
    margin: 16px 24px 24px;
    align-self: flex-start;
  }

  .carousel-slide { flex: 0 0 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: 80px 20px; }
}

@media (max-width: 600px) {
  .hero { padding: 140px 16px 60px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .project-visual { height: 200px; }
  .magazine-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .back-to-top { bottom: 24px; right: 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .studio-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item { padding: 16px; }
  .testimonial-quote { font-size: 1.2rem; }
}

/* ============================================================
   ANIMATIONS — Reveal on Scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* ============================================================
   VIDEO PLACEHOLDER PLAY BUTTON OVERLAY
   ============================================================ */
.video-wrapper .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 167, 74, 0.9);
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 3;
  transition: all var(--transition-medium);
  box-shadow: 0 0 40px rgba(212, 167, 74, 0.3);
}

.video-wrapper:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 60px rgba(212, 167, 74, 0.4);
}

/* ============================================================
   SMOOTH TRANSITIONS FOR PAGE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
