/* ═══════════════════════════════════════════════════════════════════════════
   TSCHOLENE — Cinematic Festival Portfolio
   Design System & Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Design Tokens)
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  /* Colors — Light Mode (Sunset Festival Palette) */
  --color-bg: #FDF8F3;
  --color-bg-warm: #FAF3EB;
  --color-surface: #FFFFFF;
  --color-surface-elevated: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-soft: #4A4A4A;
  --color-text-muted: #8A8A8A;
  --color-accent: #7222DA;
  --color-accent-soft: rgba(114, 34, 218, 0.1);
  --color-accent-glow: rgba(114, 34, 218, 0.3);
  --color-border: rgba(0, 0, 0, 0.08);
  
  /* Sunset Gradient Colors */
  --sunset-orange: #FF8A5B;
  --sunset-pink: #EA526F;
  --sunset-gold: #F9C74F;
  --sunset-warm: #FFE5D9;
  
  /* Overlay/Glass */
  --color-overlay: rgba(255, 255, 255, 0.8);
  --color-glass: rgba(255, 255, 255, 0.7);
  --color-glass-border: rgba(0, 0, 0, 0.05);
  
  /* Grain opacity */
  --grain-opacity: 0.03;
  
  /* Typography — System Font Stack */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
               "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji";
  --font-display: var(--font-sans);
  
  /* Font Sizes (Fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
  --text-xl: clamp(1.25rem, 1rem + 1.25vw, 2rem);
  --text-2xl: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
  --text-3xl: clamp(2.5rem, 1.5rem + 5vw, 5rem);
  --text-hero: clamp(3rem, 2rem + 8vw, 8rem);
  
  /* Spacing */
  --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);
  --space-md: clamp(1rem, 0.75rem + 1.25vw, 2rem);
  --space-lg: clamp(1.5rem, 1rem + 2.5vw, 3.5rem);
  --space-xl: clamp(2.5rem, 1.5rem + 5vw, 6rem);
  --space-2xl: clamp(4rem, 2rem + 10vw, 12rem);
  
  /* Layout */
  --max-width: 1400px;
  --content-padding: clamp(1.25rem, 1rem + 2vw, 3rem);
  
  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 60px rgba(255, 138, 91, 0.15);
  
  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 600ms;
  
  /* Color scheme hint for browser */
  color-scheme: light dark;
}

/* ─────────────────────────────────────────────────────────────────────────────
   DARK MODE — System Preference Detection
   ───────────────────────────────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    /* Dark Mode Colors */
    --color-bg: #0D0D0F;
    --color-bg-warm: #121215;
    --color-surface: #1A1A1F;
    --color-surface-elevated: #222228;
    --color-text: #F5F5F7;
    --color-text-soft: #B8B8BC;
    --color-text-muted: #6E6E73;
    --color-accent: #9D5CFF;
    --color-accent-soft: rgba(157, 92, 255, 0.15);
    --color-accent-glow: rgba(157, 92, 255, 0.4);
    --color-border: rgba(255, 255, 255, 0.08);
    
    /* Sunset colors adjusted for dark mode */
    --sunset-orange: #FF9D6F;
    --sunset-pink: #FF6B8A;
    --sunset-gold: #FFDA6A;
    --sunset-warm: #2A1F1A;
    
    /* Overlay/Glass */
    --color-overlay: rgba(13, 13, 15, 0.85);
    --color-glass: rgba(26, 26, 31, 0.8);
    --color-glass-border: rgba(255, 255, 255, 0.08);
    
    /* Stronger grain for dark mode */
    --grain-opacity: 0.04;
    
    /* Adjusted shadows for dark mode */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(255, 138, 91, 0.2);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  background-image: 
    linear-gradient(180deg, var(--color-bg) 0%, var(--sunset-warm) 50%, var(--color-bg-warm) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--content-padding);
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-glass-border);
  transition: background-color var(--duration-normal) var(--ease-out);
}

.nav--scrolled {
  background: var(--color-overlay);
}

.nav__logo {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

/* Hamburger Menu Button */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast);
}

/* Hamburger animation when open */
.nav__burger.is-active .nav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.is-active .nav__burger-line:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-active .nav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__links {
  display: flex;
  gap: var(--space-md);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav__burger {
    display: flex;
  }
  
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    gap: 0;
    padding: 80px var(--space-lg) var(--space-lg);
    background: var(--color-surface);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform var(--duration-normal) var(--ease-out);
    z-index: 100;
  }
  
  .nav__links.is-active {
    transform: translateX(0);
  }
  
  .nav__link {
    padding: var(--space-sm) 0;
    font-size: var(--text-base);
    border-bottom: 1px solid var(--color-border, rgba(0,0,0,0.08));
  }
  
  .nav__link--scroll {
    display: block;
  }
  
  .nav__lang {
    margin-top: var(--space-md);
    justify-content: flex-start;
  }
  
  /* Overlay when menu is open */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }
  
  body.nav-open {
    overflow: hidden;
  }
}

/* Dark mode mobile menu */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
  .nav__links {
    background: var(--color-surface);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
  }
}

.nav__link {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  transition: color var(--duration-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-accent);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

/* Language Switch */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.625rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background-color var(--duration-fast);
}

.nav__lang:hover {
  background: rgba(0, 0, 0, 0.08);
}

.nav__lang-option {
  transition: color var(--duration-fast);
}

.nav__lang-option.is-active {
  color: var(--color-accent);
}

.nav__lang-divider {
  opacity: 0.3;
}

/* Solid nav variant (for legal pages) */
.nav--solid {
  background: var(--color-bg);
}

@media (max-width: 480px) {
  .nav__links {
    gap: var(--space-xs);
  }
  
  .nav__link {
    font-size: 0.65rem;
  }
  
  /* Hide scroll links on mobile to save space */
  .nav__link--scroll {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .nav__link--scroll {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--content-padding);
  padding-top: calc(var(--content-padding) + 60px); /* Account for nav */
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: hero-zoom 25s ease-in-out infinite alternate;
  transition: opacity 1.5s ease-in-out;
}

.hero__bg--next {
  opacity: 0;
  z-index: 1;
}

.hero__bg--active {
  opacity: 1;
}

@keyframes hero-zoom {
  0% {
    transform: scale(1.05) translateX(0);
  }
  100% {
    transform: scale(1.1) translateX(-1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: none;
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      180deg,
      rgba(253, 248, 243, 0.4) 0%,
      rgba(255, 138, 91, 0.25) 30%,
      rgba(234, 82, 111, 0.2) 60%,
      rgba(253, 248, 243, 0.9) 100%
    );
}

/* Dynamic contrast class - added by JS based on image brightness */
.hero--dark-bg .hero__overlay {
  background: 
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.2) 60%,
      rgba(253, 248, 243, 0.85) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  /* Optimized contrast - text shadow + subtle backdrop */
  text-shadow: 
    0 2px 20px rgba(255, 255, 255, 0.8),
    0 4px 40px rgba(255, 138, 91, 0.3);
}

.hero--dark-bg .hero__title {
  color: #FFFFFF;
  text-shadow: 
    0 2px 20px rgba(0, 0, 0, 0.5),
    0 4px 60px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.6);
}

.hero--dark-bg .hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero__micro {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.5);
}

.hero--dark-bg .hero__micro {
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--color-accent);
  color: white;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out),
    background-color var(--duration-fast);
  box-shadow: 
    0 4px 20px rgba(114, 34, 218, 0.3),
    0 0 0 0 rgba(114, 34, 218, 0);
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 32px rgba(114, 34, 218, 0.4),
    0 0 0 3px rgba(114, 34, 218, 0.1);
  background: #8833EE;
}

.hero__cta:active {
  transform: translateY(0);
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-text-muted);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-hint span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--color-text-muted);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CAPABILITIES SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.capabilities {
  padding: var(--space-2xl) var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .capabilities__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

/* Capability Cards */
.cap-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.cap-card:hover,
.cap-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cap-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cap-card__image-wrap {
    aspect-ratio: 3 / 4;
  }
}

.cap-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.cap-card:hover .cap-card__image {
  transform: scale(1.05);
}

.cap-card__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(255, 138, 91, 0.1) 70%,
    rgba(249, 199, 79, 0.15) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.cap-card:hover .cap-card__glow {
  opacity: 1;
}

.cap-card__content {
  padding: var(--space-md);
}

.cap-card__title {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}

.cap-card__caption {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

/* Secondary Card (Aftermovies) */
.cap-card--secondary .cap-card__title {
  font-size: var(--text-lg);
}

.cap-card--secondary .cap-card__content {
  padding: var(--space-sm) var(--space-md);
}

/* New Badge (Multicam) */
.cap-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

/* Capabilities Footer */
.capabilities__footer {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.capabilities__proof {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.capabilities__booking {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.capabilities__booking a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: var(--color-accent-soft);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--duration-fast);
}

.capabilities__booking a:hover {
  text-decoration-color: var(--color-accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CINEMATIC GALLERY STRIP
   ───────────────────────────────────────────────────────────────────────────── */
.gallery {
  padding: var(--space-xl) 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 229, 217, 0.3) 50%,
    transparent 100%
  );
}

.gallery__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 var(--content-padding);
  margin-bottom: var(--space-md);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.gallery__title {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.gallery__hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery__strip {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--content-padding);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: var(--content-padding);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery__strip::-webkit-scrollbar {
  display: none;
}

.gallery__item {
  flex: 0 0 auto;
  width: clamp(280px, 70vw, 500px);
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.gallery__item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 138, 91, 0.2);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focal, 50% 50%);
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SIGNATURE QUOTE
   ───────────────────────────────────────────────────────────────────────────── */
.quote {
  padding: var(--space-2xl) var(--content-padding);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.quote__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.quote__line {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text);
}

.quote__line:first-child {
  color: var(--color-text-soft);
}

.quote__author {
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.quote__author::before {
  content: '—';
  margin-right: 0.5em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SOCIAL PROOF / VENUES
   ───────────────────────────────────────────────────────────────────────────── */
.venues {
  padding: var(--space-lg) var(--content-padding);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.venues__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.contact {
  padding: var(--space-2xl) var(--content-padding);
  text-align: center;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(114, 34, 218, 0.03) 100%
  );
}

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

.contact__heading {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.contact__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .contact__links {
    flex-direction: row;
    justify-content: center;
  }
}

.contact__btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--color-text);
  color: var(--color-bg);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-xl);
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out),
    background-color var(--duration-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact__btn:hover,
.contact__btn:focus-visible {
  transform: translateY(-2px);
  background: var(--color-accent);
  box-shadow: 0 8px 32px rgba(114, 34, 218, 0.3);
}

.contact__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-xl);
  transition: 
    border-color var(--duration-fast),
    color var(--duration-fast),
    transform var(--duration-normal) var(--ease-out);
}

.contact__social:hover,
.contact__social:focus-visible {
  color: var(--color-accent);
  border-color: var(--color-accent-soft);
  transform: translateY(-2px);
}

.contact__social svg {
  width: 20px;
  height: 20px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
  padding: var(--space-lg) var(--content-padding);
  text-align: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE: PAGE HEADER
   ───────────────────────────────────────────────────────────────────────────── */
.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(60px + var(--space-xl)) var(--content-padding) var(--space-xl);
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(253, 248, 243, 0.3) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(253, 248, 243, 0.95) 100%
  );
}

.page-header__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent);
  color: white;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-sm);
}

.page-header__title {
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: white;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: var(--space-xs);
}

.page-header__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE: PAGE INTRO
   ───────────────────────────────────────────────────────────────────────────── */
.page-intro {
  padding: var(--space-xl) var(--content-padding);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-intro__lead {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.page-intro__text {
  font-size: var(--text-base);
  color: var(--color-text-soft);
  line-height: 1.8;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE: PHOTO GRID
   ───────────────────────────────────────────────────────────────────────────── */
.photo-grid {
  padding: var(--space-lg) var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.photo-grid__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .photo-grid__container {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

.photo-grid__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.photo-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.photo-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 767px) {
  .photo-grid__item--tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE: SERVICES
   ───────────────────────────────────────────────────────────────────────────── */
.services {
  padding: var(--space-xl) var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.services__title {
  font-size: var(--text-xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services__item {
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.services__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.services__item h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.services__item p {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE: PAGE CTA
   ───────────────────────────────────────────────────────────────────────────── */
.page-cta {
  padding: var(--space-2xl) var(--content-padding);
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(114, 34, 218, 0.03) 100%);
}

.page-cta__heading {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.page-cta__text {
  font-size: var(--text-base);
  color: var(--color-text-soft);
  margin-bottom: var(--space-md);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.page-cta__btn {
  display: inline-flex;
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  color: white;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(114, 34, 218, 0.3);
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.page-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(114, 34, 218, 0.4);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE: VIDEO SHOWCASE - EMBEDS
   ───────────────────────────────────────────────────────────────────────────── */
.video-showcase {
  padding: var(--space-lg) var(--content-padding);
  max-width: 1000px;
  margin: 0 auto;
}

.video-showcase__player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* YouTube/Video Embed Container - Responsive 16:9 */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-showcase__placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-showcase__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-showcase__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  cursor: pointer;
  transition: background-color var(--duration-normal);
}

.video-showcase__play:hover {
  background: rgba(0, 0, 0, 0.5);
}

.video-showcase__play span {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.video-showcase__caption {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  margin-top: var(--space-sm);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE: VIDEO GRID - CLICKABLE THUMBNAILS
   ───────────────────────────────────────────────────────────────────────────── */
.video-grid {
  padding: var(--space-xl) var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.video-grid__title {
  font-size: var(--text-xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.video-grid__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.video-grid__container--3col {
  grid-template-columns: repeat(1, 1fr);
}

/* Flex layout for mixed aspect ratios */
.video-grid__container--flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.video-grid__container--flex .video-card {
  flex: 0 1 300px;
  max-width: 350px;
}

@media (min-width: 600px) {
  .video-grid__container--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .video-grid__container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .video-grid__container--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: 
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

/* Vertical video cards (Reels/Shorts) */
.video-card--vertical .video-card__thumb {
  aspect-ratio: 9 / 16;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

/* Instagram placeholder */
.video-card__ig-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  opacity: 0.9;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.9;
  transition: opacity var(--duration-fast);
}

.video-card__play--ig {
  background: rgba(0, 0, 0, 0.2);
}

.video-card:hover .video-card__play {
  opacity: 1;
}

.video-card__play svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform var(--duration-normal) var(--ease-out);
}

.video-card:hover .video-card__play svg {
  transform: scale(1.1);
}

/* Platform badges */
.video-card__badge {
  position: absolute;
  top: var(--space-xs);
  left: var(--space-xs);
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.video-card__badge--yt {
  background: #ff0000;
  color: white;
}

.video-card__badge--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.video-card__duration {
  position: absolute;
  bottom: var(--space-xs);
  right: var(--space-xs);
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
}

.video-card__info {
  padding: var(--space-sm);
}

.video-card__info h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.video-card__info p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   VIDEO MODAL (Lightbox for YouTube)
   ───────────────────────────────────────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(0, 0, 0, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal), visibility var(--duration-normal);
}

.video-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Vertical modal for Reels/Shorts */
.video-modal.is-vertical .video-modal__content {
  max-width: 400px;
  aspect-ratio: 9 / 16;
  max-height: 90vh;
}

.video-modal__content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: background-color var(--duration-fast);
  z-index: 10;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ─────────────────────────────────────────────────────────────────────────────
   INSTAGRAM SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.instagram-section {
  padding: var(--space-xl) var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.instagram-section__title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.instagram-section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-soft);
  margin-bottom: var(--space-lg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.instagram-embed {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.instagram-embed .instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 280px !important;
}

.instagram-section__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.5rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-xl);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal);
}

.instagram-section__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE: COMING SOON (Multicam)
   ───────────────────────────────────────────────────────────────────────────── */
.coming-soon {
  padding: var(--space-xl) var(--content-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.coming-soon__title {
  font-size: var(--text-xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.coming-soon__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .coming-soon__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .coming-soon__features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.coming-soon__feature {
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.coming-soon__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  background: var(--color-accent-soft);
  border-radius: 50%;
  color: var(--color-accent);
}

.coming-soon__feature h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.coming-soon__feature p {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SUBPAGE: TIMELINE (Multicam)
   ───────────────────────────────────────────────────────────────────────────── */
.timeline {
  padding: var(--space-xl) var(--content-padding);
  max-width: 700px;
  margin: 0 auto;
}

.timeline__title {
  font-size: var(--text-xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.timeline__items {
  position: relative;
  padding-left: 30px;
}

.timeline__items::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -30px;
  top: 0;
  width: 14px;
  height: 14px;
  background: var(--color-bg);
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.timeline__item--done .timeline__marker {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.timeline__item--active .timeline__marker {
  background: var(--color-bg);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-soft);
}

.timeline__date {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.timeline__content h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline__content p {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LEGAL PAGES (Impressum)
   ───────────────────────────────────────────────────────────────────────────── */
.legal {
  padding: calc(60px + var(--space-xl)) var(--content-padding) var(--space-xl);
  min-height: 100vh;
}

.legal__container {
  max-width: 700px;
  margin: 0 auto;
}

.legal__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.legal__section {
  margin-bottom: var(--space-xl);
}

.legal__section h2 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal__section h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.legal__block {
  margin-bottom: var(--space-md);
}

.legal__block p {
  font-size: var(--text-base);
  color: var(--color-text-soft);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal__block a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: var(--color-accent-soft);
  text-underline-offset: 2px;
}

.legal__block a:hover {
  text-decoration-color: var(--color-accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

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

/* Staggered reveal for grid items */
.capabilities__grid .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.capabilities__grid .reveal:nth-child(3) {
  transition-delay: 200ms;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOCUS STYLES (Accessibility)
   ───────────────────────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SELECTION STYLES
   ───────────────────────────────────────────────────────────────────────────── */
::selection {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRINT STYLES
   ───────────────────────────────────────────────────────────────────────────── */
@media print {
  .grain,
  .hero__scroll-hint,
  .gallery__hint {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem;
  }
  
  .hero__bg,
  .hero__overlay {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DARK MODE — Component Overrides
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  
  /* Body gradient adjusted for dark */
  body {
    background-image: 
      linear-gradient(180deg, var(--color-bg) 0%, #1a1412 50%, var(--color-bg-warm) 100%);
  }
  
  /* Page header overlay for dark mode */
  .page-header__overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 13, 15, 0.3) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(13, 13, 15, 0.98) 100%
    );
  }
  
  /* Cards get subtle border in dark mode */
  .cap-card,
  .video-card,
  .services__item,
  .coming-soon__feature {
    border: 1px solid var(--color-border);
  }
  
  /* Gallery items */
  .gallery__item {
    box-shadow: var(--shadow-md);
  }
  
  /* Quote section */
  .quote {
    background: linear-gradient(
      135deg,
      rgba(157, 92, 255, 0.08) 0%,
      rgba(255, 157, 111, 0.06) 100%
    );
  }
  
  /* Hero overlay - dark mode */
  .hero__overlay {
    background: 
      linear-gradient(
        180deg,
        rgba(13, 13, 15, 0.2) 0%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(13, 13, 15, 0.85) 100%
      );
  }
  
  .hero--dark-bg .hero__overlay {
    background: 
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(13, 13, 15, 0.9) 100%
      );
  }
  
  .hero__title {
    text-shadow: 
      0 2px 20px rgba(0, 0, 0, 0.6),
      0 4px 40px rgba(0, 0, 0, 0.4);
  }
  
  /* Contact section */
  .contact {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(157, 92, 255, 0.05) 100%
    );
  }
  
  /* Footer */
  .footer {
    border-top-color: var(--color-border);
  }
  
  /* Buttons - make them pop more */
  .hero__cta,
  .page-cta__btn {
    box-shadow: 0 0 30px rgba(157, 92, 255, 0.3);
  }
  
  .hero__cta:hover,
  .page-cta__btn:hover {
    box-shadow: 0 8px 40px rgba(157, 92, 255, 0.4);
  }
  
  /* Photo grid items */
  .photo-grid__item {
    box-shadow: var(--shadow-md);
  }
  
  /* Timeline */
  .timeline__item::before {
    background: var(--color-border);
  }
  
  .timeline__marker {
    border-color: var(--color-surface);
  }
  
  /* Services */
  .services__item {
    background: var(--color-surface);
  }
  
  /* Video showcase */
  .video-showcase__player {
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 0, 0, 0.5);
  }
  
  /* Legal pages */
  .legal__section {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
  }
  
  /* Input fields (if any) */
  input, textarea, select {
    background: var(--color-surface);
    border-color: var(--color-border);
    color: var(--color-text);
  }
  
  /* Instagram placeholder - slightly muted gradient */
  .video-card__ig-placeholder {
    opacity: 0.85;
  }
  
  /* Scrollbar styling for dark mode */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--color-bg);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--color-text-muted);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-soft);
  }
}
