/* ═══════════════════════════════════════════════════════
   POWERPLAY STUDIOS — Retro Modern Design System
   Design Variant 2: Arda Recorders-inspired
═══════════════════════════════════════════════════════ */

/* ── Brand Logo Font: American Captain ──
   Used for the logo + all large display titles
   (Studios, Gallery, etc.) per V1 feedback. */
@font-face {
  font-family: 'American Captain';
  src: url('../fonts/American-Captain.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Brand Tokens ── */
:root {
  /* Brand Colors */
  --orange: #C54B2A;
  --orange-dark: #A33D20;
  --orange-light: #E05E38;
  --black: #0D0D0D;
  --black-soft: #141414;
  --black-surface: #1A1A1A;
  --cream: #F5EDE0;
  --cream-dark: #EDE0CE;
  --charcoal: #1C1C1C;
  --text-light: #F0EBE3;
  --text-muted-light: #A89F96;
  --text-dark: #1C1C1C;

  /* Typography */
  --font-display: 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body: 'Switzer', 'Helvetica Neue', Arial, sans-serif;
  --font-logo: 'American Captain', 'Cabinet Grotesk', 'Arial Black', sans-serif;

  /* Fluid Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Nav */
  --nav-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease);
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  background-color: var(--black);
  color: var(--text-light);
  min-height: 100dvh;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.0;
  text-wrap: balance;
}

p { max-width: 68ch; text-wrap: pretty; line-height: 1.65; }

::selection { background: var(--orange); color: #fff; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

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

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

.loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

.loader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.loader__vinyl {
  width: clamp(80px, 15vw, 140px);
  animation: vinyl-spin 4s linear infinite;
}

.vinyl-outer {
  stroke-dasharray: 352;
  stroke-dashoffset: 352;
  animation: draw-circle 1.5s var(--ease) forwards;
}

@keyframes vinyl-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes draw-circle {
  to { stroke-dashoffset: 0; }
}

.loader__text {
  overflow: hidden;
}

.loader__powerplay {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  color: var(--cream);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.loader__studios {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 4rem);
  color: var(--orange);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1;
}

/* Splitting.js char animation */
.loader__powerplay .char,
.loader__studios .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: char-reveal 0.5s var(--ease) forwards;
}

@keyframes char-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.loader__tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  color: var(--text-muted-light);
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 0.6s var(--ease) 1.8s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  color: var(--text-light);
}

.nav-header.nav-scrolled {
  background: var(--black);
  box-shadow: 0 1px 0 rgba(197, 75, 42, 0.2);
  color: var(--text-light);
}

.nav {
  max-width: 100%;
  height: 100%;
  padding: 0 clamp(var(--space-6), 4vw, var(--space-12));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
}

.nav__vinyl-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--orange);
}

.nav__vinyl-mark svg {
  display: block;
  color: var(--orange);
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__links li {
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.75);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link:hover { color: var(--orange); }

.nav__link--events {
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: var(--space-2) var(--space-4);
}

.nav__link--events:hover {
  background: var(--orange);
  color: var(--text-light);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--space-2);
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(197, 75, 42, 0.3);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
  pointer-events: none;
  z-index: 99;
}

.nav__mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile ul {
  padding: var(--space-6) clamp(var(--space-6), 4vw, var(--space-12));
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  list-style: none;
}

.nav__mobile-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  text-transform: uppercase;
  color: var(--text-light);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
}

.nav__mobile-link:hover {
  color: var(--orange);
  padding-left: var(--space-4);
}

/* ══════════════════════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════════════════════ */

/* Section headers */
.section-header {
  padding: clamp(var(--space-12), 6vw, var(--space-20)) clamp(var(--space-6), 5vw, var(--space-16));
}

.section-header--dark { background: var(--black); }
.section-header--cream { background: var(--cream); }
.section-header--orange { background: var(--orange); }

.section-header__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-number {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange);
  display: block;
  margin-bottom: var(--space-3);
}

.section-number--dark { color: var(--charcoal); opacity: 0.4; }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 9rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.9;
}

.section-title--orange { color: var(--orange); }
.section-title--dark { color: var(--charcoal); }

.section-subtitle {
  font-size: var(--text-base);
  color: var(--text-muted-light);
  margin-top: var(--space-4);
  font-weight: 500;
}

.section-subtitle--muted { color: rgba(240, 235, 227, 0.45); }
.section-subtitle--dark { color: rgba(28, 28, 28, 0.65); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(240, 235, 227, 0.4);
}
.btn--outline:hover {
  border-color: var(--text-light);
  background: rgba(240, 235, 227, 0.08);
}

.btn--outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

.btn--cream {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: #fff;
}

.btn--full { width: 100%; justify-content: center; }

/* Badges / Stamp labels */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.7);
  border: 1px solid rgba(240, 235, 227, 0.2);
  padding: var(--space-1) var(--space-4);
  border-radius: 999px;
}

/* Vintage rubber stamp badges */
.stamp-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: var(--space-1) var(--space-4);
  border-radius: 999px;
  transform: rotate(-2deg);
  background: rgba(197, 75, 42, 0.08);
  white-space: nowrap;
}

.stamp-badge--featured {
  background: var(--orange);
  color: var(--black);
  transform: rotate(-1.5deg);
}

/* Gear tags */
.gear-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(240, 235, 227, 0.6);
  border: 1px solid rgba(240, 235, 227, 0.15);
  padding: 2px var(--space-3);
  border-radius: 4px;
  white-space: nowrap;
}

/* Orange text utility */
.text-orange { color: var(--orange); }

/* ══════════════════════════════════════════════════════
   SECTION 1: HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--orange);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(13,13,13,0.3) 0%, transparent 60%),
    linear-gradient(160deg, #C54B2A 0%, #A33D20 60%, #8A2E14 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(var(--space-12), 6vw, var(--space-20)) clamp(var(--space-6), 5vw, var(--space-16));
  padding-bottom: clamp(var(--space-12), 8vw, var(--space-24));
  max-width: 100%;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  overflow: hidden;
  max-width: 100%;
}

.hero__title-line1 {
  display: block;
  font-size: clamp(2.5rem, 13vw, 14rem);
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.hero__title-line2 {
  display: block;
  font-size: clamp(2rem, 10vw, 10.5rem);
  color: var(--cream);
  opacity: 0.6;
  word-break: keep-all;
  white-space: nowrap;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: rgba(245, 237, 224, 0.8);
  margin-bottom: var(--space-8);
  letter-spacing: 0.04em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__image-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(280px, 45vw, 700px);
  height: 75%;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(to left, black 60%, transparent 100%),
              linear-gradient(to top, transparent 0%, black 15%);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%),
              linear-gradient(to top, transparent 0%, black 15%);
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: multiply;
  filter: contrast(1.1) brightness(0.9);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(245, 237, 224, 0.6);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ══════════════════════════════════════════════════════
   SECTION 2: STUDIOS
══════════════════════════════════════════════════════ */
.studios {
  background: var(--black);
}

.studios__grid {
  padding: 0 clamp(var(--space-6), 5vw, var(--space-16));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.studio-card {
  border-bottom: 1px solid rgba(240, 235, 227, 0.08);
  padding: clamp(var(--space-10), 5vw, var(--space-16)) 0;
}

.studio-card--featured .studio-card__image-wrap::after {
  content: 'LOFT STUDIO';
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.15em;
  background: var(--orange);
  color: #fff;
  padding: var(--space-2) var(--space-4);
}

.studio-card__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
}

.studio-card__layout--reverse {
  direction: rtl;
}
.studio-card__layout--reverse > * {
  direction: ltr;
}

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

.studio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: grayscale(15%) contrast(1.05);
}

.studio-card:hover .studio-card__image {
  transform: scale(1.03);
}

.studio-card__badges {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-end;
}

.studio-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.studio-card__number {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
}

.studio-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
}

.studio-card__subtitle {
  color: var(--orange);
  font-size: 0.7em;
  font-weight: 700;
}

.studio-card__desc {
  color: rgba(240, 235, 227, 0.65);
  line-height: 1.7;
  font-size: var(--text-base);
}

.studio-card__gear {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.studio-expand-btn {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition);
  padding: 0;
  margin-top: var(--space-2);
}

.studio-expand-btn:hover { gap: var(--space-4); }
.studio-expand-btn .arrow { transition: transform var(--transition); }
.studio-expand-btn[aria-expanded="true"] .arrow { transform: rotate(90deg); }

.studio-card__extra {
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.studio-extra-content {
  border-top: 1px solid rgba(197, 75, 42, 0.2);
  padding: var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.studio-extra-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.studio-extra-content p {
  color: rgba(240, 235, 227, 0.7);
  line-height: 1.8;
}

.studio-floorplan {
  border: 1px dashed rgba(197, 75, 42, 0.3);
  padding: var(--space-8);
  display: flex;
  justify-content: center;
}

.floorplan-placeholder {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(240, 235, 227, 0.3);
  font-size: var(--text-sm);
}

/* ══════════════════════════════════════════════════════
   SECTION 3: SERVICES
══════════════════════════════════════════════════════ */
.services {
  background: var(--cream);
  color: var(--text-dark);
}

.services .section-number { color: var(--orange); }

.services__list {
  padding: 0 clamp(var(--space-6), 5vw, var(--space-16));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
  max-width: 1400px;
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 48px;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8) 0;
  transition: padding-left var(--transition);
}

.service-item:hover { padding-left: var(--space-4); }

.service-item__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
}

.service-item__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.service-item__desc {
  font-size: var(--text-base);
  color: rgba(28, 28, 28, 0.6);
  max-width: 55ch;
}

.service-item__icon {
  color: var(--orange);
  opacity: 0.7;
}

.service-item__icon i,
.service-item__icon svg { width: 28px; height: 28px; }

.service-divider {
  height: 1px;
  background: rgba(28, 28, 28, 0.1);
}

/* ══════════════════════════════════════════════════════
   SECTION 4: CLIENTS
══════════════════════════════════════════════════════ */
.clients {
  background: var(--black-soft);
  overflow: hidden;
  padding: clamp(var(--space-16), 8vw, var(--space-32)) 0;
  min-height: 300px;
}

.clients__marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.clients__marquee {
  overflow: hidden;
  width: 100%;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  white-space: nowrap;
  animation: marquee-forward 35s linear infinite;
}

.marquee__track--reverse {
  animation: marquee-reverse 28s linear infinite;
}

@keyframes marquee-forward {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.marquee__track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--orange) !important;
  font-size: 0.6em !important;
  flex-shrink: 0;
}

.clients__cta {
  text-align: center;
  padding: 0 var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.clients__legacy {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ══════════════════════════════════════════════════════
   SECTION 5: TEAM
══════════════════════════════════════════════════════ */
.team {
  background: var(--orange);
}

.team__producers {
  padding: clamp(var(--space-10), 5vw, var(--space-16)) clamp(var(--space-6), 5vw, var(--space-16));
  max-width: 1400px;
  margin: 0 auto;
}

.team__subheading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.55);
  margin-bottom: var(--space-8);
}

.producers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.producer-card {
  background: rgba(13, 13, 13, 0.15);
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.producer-card:hover { transform: translateY(-4px); }

.producer-card__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.producer-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.5s var(--ease);
}

.producer-card:hover .producer-card__photo img { transform: scale(1.05); }

.producer-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(197, 75, 42, 0.5), transparent 50%);
  mix-blend-mode: multiply;
}

.producer-card__info {
  padding: var(--space-4);
}

.producer-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-lg);
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.01em;
}

.producer-card__role {
  font-size: var(--text-sm);
  color: rgba(13, 13, 13, 0.7);
  margin-top: var(--space-1);
}

.producer-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.5);
  margin-top: var(--space-1);
}

/* Studio Team Grid */
.team__staff {
  background: rgba(13, 13, 13, 0.1);
  padding: clamp(var(--space-10), 5vw, var(--space-16)) clamp(var(--space-6), 5vw, var(--space-16));
}

.team__staff .team__subheading {
  max-width: 1400px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-6);
  max-width: 1400px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.team-member__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(13, 13, 13, 0.2);
  flex-shrink: 0;
}

.team-member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.team-member__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.team-member__role {
  font-size: var(--text-xs);
  color: rgba(13, 13, 13, 0.6);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════
   SECTION 6: ACADEMY
══════════════════════════════════════════════════════ */
.academy {
  background: var(--black);
  padding: clamp(var(--space-16), 8vw, var(--space-32)) clamp(var(--space-6), 5vw, var(--space-16));
}

.academy__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}

.academy__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.academy__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 5rem);
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.academy__title #academy-annotation {
  color: var(--orange);
}

.academy__desc {
  color: rgba(240, 235, 227, 0.65);
  line-height: 1.75;
  font-size: var(--text-base);
}

.academy__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.academy__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(240, 235, 227, 0.7);
}

.academy__feature i,
.academy__feature svg { width: 18px; height: 18px; color: var(--orange); }

.academy__visual {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.academy__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

/* ══════════════════════════════════════════════════════
   SECTION 7: GALLERY
══════════════════════════════════════════════════════ */
.gallery {
  background: var(--cream);
}

.gallery .section-number { color: var(--orange); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3px;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-16));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--black);
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.3s ease;
  filter: grayscale(10%);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(197, 75, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 13, 13, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__image-wrap {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__image-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240,235,227,0.2);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
}

.lightbox__close:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240,235,227,0.2);
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox__nav:hover { background: var(--orange); }
.lightbox__nav--prev { left: var(--space-6); }
.lightbox__nav--next { right: var(--space-6); }

/* ══════════════════════════════════════════════════════
   SECTION 8: CONTACT
══════════════════════════════════════════════════════ */
.contact {
  background: var(--black-soft);
  padding: clamp(var(--space-16), 8vw, var(--space-32)) clamp(var(--space-6), 5vw, var(--space-16));
}

.contact__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

.contact__info { display: flex; flex-direction: column; gap: var(--space-8); }

.contact__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 5rem);
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.contact__details { display: flex; flex-direction: column; gap: var(--space-6); }

.contact__detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact__detail i,
.contact__detail svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.contact__detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-1);
}

.contact__detail p,
.contact__detail a { color: rgba(240, 235, 227, 0.75); font-size: var(--text-base); }
.contact__detail a:hover { color: var(--orange); }

.contact__socials {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(197, 75, 42, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.social-link i,
.social-link svg { width: 18px; height: 18px; }

/* Contact Right */
.contact__right { display: flex; flex-direction: column; gap: var(--space-6); }

.contact__map {
  height: 250px;
  background: #1a1a1a;
  border: 1px solid rgba(197, 75, 42, 0.2);
}

/* Contact Form */
.contact__form { display: flex; flex-direction: column; gap: var(--space-4); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

.form-group { display: flex; flex-direction: column; gap: var(--space-2); }

.form-group label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(240, 235, 227, 0.05);
  border: 1px solid rgba(240, 235, 227, 0.1);
  color: var(--text-light);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  transition: border-color var(--transition), background var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C54B2A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(197, 75, 42, 0.05);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: #6daa45;
  font-size: var(--text-sm);
  padding: var(--space-4);
  background: rgba(109, 170, 69, 0.1);
  border: 1px solid rgba(109, 170, 69, 0.3);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  overflow: hidden;
  border-top: 1px solid rgba(197, 75, 42, 0.15);
}

.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 14rem);
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 0.85;
  white-space: nowrap;
  overflow: hidden;
  padding: clamp(var(--space-10), 5vw, var(--space-16)) clamp(var(--space-6), 5vw, var(--space-16)) 0;
  /* Scale to fill width */
  width: 100%;
  text-overflow: clip;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) clamp(var(--space-6), 5vw, var(--space-16));
  border-top: 1px solid rgba(197, 75, 42, 0.15);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(240, 235, 227, 0.35);
  max-width: none;
}

.footer__links { display: flex; gap: var(--space-6); }

.footer__link {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.35);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .studio-card__layout {
    grid-template-columns: 1fr;
  }
  .studio-card__layout--reverse {
    direction: ltr;
  }
  .studio-card__image-wrap {
    aspect-ratio: 16/9;
  }

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

  .academy__visual { display: none; }

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1; }
  .gallery-item--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__image-wrap { display: none; }

  .service-item {
    grid-template-columns: 50px 1fr;
  }
  .service-item__icon { display: none; }

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

  .footer__wordmark {
    font-size: clamp(2.5rem, 14vw, 6rem);
    white-space: normal;
    word-break: break-word;
    line-height: 0.9;
  }
}

@media (max-width: 480px) {
  .hero__title-line1 { font-size: clamp(2.2rem, 15vw, 5rem); }
  .hero__title-line2 { font-size: clamp(1.8rem, 12vw, 4rem); }

  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide { grid-column: span 1; }

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

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   ═══  V3 — FEEDBACK-UMSETZUNG (auf Basis V1)  ═══
══════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   LOGO FONT — American Captain on big titles
────────────────────────────────────────── */
.nav__brand,
.loader__powerplay,
.loader__studios,
.hero__title,
.section-title,
.studio-tile__name,
.studio-modal__title,
.marquee__track span,
.clients__legacy,
.clients__list-heading,
.equipment-block__title,
.academy__title,
.contact__title,
.footer__wordmark,
.footer__logo-text {
  font-family: var(--font-logo);
  letter-spacing: 0.02em;
}

/* American Captain is a tall condensed face — give the
   very large titles a touch more presence */
.section-title { letter-spacing: 0.03em; }
.hero__title { letter-spacing: 0.02em; }
.footer__wordmark { letter-spacing: 0.04em; }

/* Logo top-left */
.nav__brand {
  font-weight: 400;
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.5rem);
  line-height: 1;
}
.nav__brand-studios {
  color: var(--orange);
}

/* ──────────────────────────────────────────
   HERO — Showreel video instead of static image
────────────────────────────────────────── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05) brightness(0.62);
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(197,75,42,0.55) 0%, rgba(138,46,20,0.35) 55%, rgba(13,13,13,0.65) 100%),
    linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.1) 45%, transparent 75%);
}
/* Hero content sits above the video */
.hero .hero__content { position: relative; z-index: 2; }
.hero .hero__scroll-indicator { z-index: 3; }

/* ──────────────────────────────────────────
   STUDIOS — Tile menu (6 studios)
   directly under the scroll arrow
────────────────────────────────────────── */
.studios__tilegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-16));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
  max-width: 1400px;
  margin: 0 auto;
}

.studio-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--black-surface);
  border: 1px solid rgba(240, 235, 227, 0.06);
}

.studio-tile__img-wrap {
  position: absolute;
  inset: 0;
}
.studio-tile__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.05) brightness(0.78);
  transition: transform 0.6s var(--ease), filter 0.4s ease;
}
.studio-tile:hover .studio-tile__img-wrap img,
.studio-tile:focus-visible .studio-tile__img-wrap img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.05) brightness(0.55);
}

.studio-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: var(--space-2);
  padding: clamp(var(--space-5), 2.5vw, var(--space-8));
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.35) 45%, transparent 75%);
}

.studio-tile__letter {
  font-family: var(--font-logo);
  font-size: var(--text-sm);
  letter-spacing: 0.25em;
  color: var(--orange);
}
.studio-tile__name {
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1;
}
.studio-tile__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(240, 235, 227, 0.7);
}
.studio-tile__explore {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  margin-top: var(--space-2);
}
.studio-tile:hover .studio-tile__explore,
.studio-tile:focus-visible .studio-tile__explore {
  opacity: 1;
  transform: translateY(0);
}

.studio-tile__flag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  background: var(--orange);
  color: #fff;
  padding: var(--space-1) var(--space-3);
}

/* ──────────────────────────────────────────
   STUDIO MODAL — popup with image slider
────────────────────────────────────────── */
.studio-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.studio-modal[hidden] { display: none; }

.studio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.studio-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--black-surface);
  border: 1px solid rgba(197, 75, 42, 0.35);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.studio-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 10;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: rgba(13, 13, 13, 0.7);
  border: 1px solid rgba(240, 235, 227, 0.2);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
}
.studio-modal__close:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* Slider */
.modal-slider {
  position: relative;
}
.modal-slider__viewport {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--black);
}
.modal-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s var(--ease);
}
.modal-slider__slide {
  flex: 0 0 100%;
  height: 100%;
}
.modal-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%) contrast(1.05);
}
.modal-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(240, 235, 227, 0.25);
  border-radius: 50%;
  transition: background var(--transition);
}
.modal-slider__nav:hover { background: var(--orange); }
.modal-slider__nav--prev { left: var(--space-4); }
.modal-slider__nav--next { right: var(--space-4); }

.modal-slider__dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
}
.modal-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(240, 235, 227, 0.35);
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.modal-slider__dot.is-active {
  background: var(--orange);
  transform: scale(1.25);
}

.studio-modal__content {
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.studio-modal__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
}
.studio-modal__title {
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1;
}
.studio-modal__desc {
  color: rgba(240, 235, 227, 0.7);
  line-height: 1.75;
  font-size: var(--text-base);
}
.studio-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-2);
}
.modal-equipment-btn {
  cursor: pointer;
}

/* ──────────────────────────────────────────
   SERVICES — Tile menu (linkable)
────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(28, 28, 28, 0.12);
  border: 1px solid rgba(28, 28, 28, 0.12);
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 0;
  /* keep within section padding like V1 */
}
.services {
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
}
.services .services__grid {
  margin-left: clamp(var(--space-6), 5vw, var(--space-16));
  margin-right: clamp(var(--space-6), 5vw, var(--space-16));
  width: auto;
}

.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--cream);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  text-decoration: none;
  color: var(--charcoal);
  transition: background var(--transition), transform var(--transition);
}
.service-tile:hover {
  background: #fff;
}
.service-tile__icon {
  color: var(--orange);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-tile__icon i,
.service-tile__icon svg { width: 28px; height: 28px; }

.service-tile__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-lg);
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.service-tile__desc {
  font-size: var(--text-sm);
  color: rgba(28, 28, 28, 0.62);
  line-height: 1.65;
}
.service-tile__arrow {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-lg);
  color: var(--orange);
  margin-top: auto;
  transition: transform var(--transition);
}
.service-tile:hover .service-tile__arrow {
  transform: translateX(6px);
}
.service-tile--event {
  background: var(--charcoal);
  color: var(--text-light);
}
.service-tile--event:hover {
  background: var(--black);
}
.service-tile--event .service-tile__name { color: var(--text-light); }
.service-tile--event .service-tile__desc { color: rgba(240, 235, 227, 0.62); }
.service-tile--event .service-tile__icon { color: var(--orange); }

/* ──────────────────────────────────────────
   EQUIPMENT — new menu point
────────────────────────────────────────── */
.equipment {
  background: var(--black);
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
}
.equipment__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-16));
  display: flex;
  flex-direction: column;
  gap: 0;
}
.equipment-block {
  border-top: 1px solid rgba(240, 235, 227, 0.1);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  scroll-margin-top: calc(var(--nav-height) + var(--space-6));
}
.equipment-block:last-child {
  border-bottom: 1px solid rgba(240, 235, 227, 0.1);
}
.equipment-block__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: var(--space-2);
}
.equipment-block__title {
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1;
}
.equipment-block__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}
.equipment-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.55);
  margin-bottom: var(--space-3);
}
.equipment-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.equipment-col li {
  position: relative;
  padding-left: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(240, 235, 227, 0.72);
  line-height: 1.5;
}
.equipment-col li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* ──────────────────────────────────────────
   PRODUCER — new menu point
────────────────────────────────────────── */
.producer {
  background: var(--cream);
  color: var(--text-dark);
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
}
.producer__grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-16));
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-6);
}
.producer .producer-card {
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.08);
}
.producer .producer-card__overlay {
  background: linear-gradient(to top, rgba(197, 75, 42, 0.45), transparent 55%);
}
.producer .producer-card__name { color: var(--charcoal); }
.producer .producer-card__role { color: rgba(28, 28, 28, 0.7); }
.producer .producer-card__label { color: var(--orange); }

/* ──────────────────────────────────────────
   CLIENTS — full client list (ABC sorted)
────────────────────────────────────────── */
.clients__list-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(var(--space-10), 5vw, var(--space-16)) clamp(var(--space-6), 5vw, var(--space-16)) 0;
  text-align: center;
}
.clients__list-heading {
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-5);
}
.clients__list {
  max-width: none;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  line-height: 2;
  color: rgba(240, 235, 227, 0.62);
  letter-spacing: 0.02em;
}
.clients__list .dot {
  color: var(--orange);
  margin: 0 0.45em;
}
.clients__cta {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16));
}

/* ──────────────────────────────────────────
   TEAM — only the studio team (freelancers)
────────────────────────────────────────── */
.team__staff {
  background: transparent;
}
.team .team__grid {
  padding-bottom: clamp(var(--space-6), 4vw, var(--space-10));
}

/* ──────────────────────────────────────────
   FOOTER — logo + social media buttons
────────────────────────────────────────── */
.footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-8) clamp(var(--space-6), 5vw, var(--space-16));
  border-top: 1px solid rgba(197, 75, 42, 0.15);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--orange);
}
.footer__logo-mark svg { display: block; }
.footer__logo-text {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--text-light);
  text-transform: uppercase;
}
.footer__socials {
  display: flex;
  gap: var(--space-4);
}

/* ──────────────────────────────────────────
   SHOWREEL MODAL
────────────────────────────────────────── */
.showreel-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: rgba(13, 13, 13, 0.95);
}
.showreel-modal[hidden] { display: none; }
.showreel-modal__frame {
  width: 100%;
  max-width: 1100px;
}
.showreel-modal__frame video {
  width: 100%;
  max-height: 80vh;
  background: #000;
  border: 1px solid rgba(197, 75, 42, 0.3);
}
.showreel-modal__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 1px solid rgba(240, 235, 227, 0.25);
  border-radius: 50%;
  transition: background var(--transition);
}
.showreel-modal__close:hover { background: var(--orange); }

/* ──────────────────────────────────────────
   NAVIGATION — more links, switch to hamburger earlier
────────────────────────────────────────── */
.nav__links { gap: clamp(var(--space-3), 1.6vw, var(--space-5)); }

@media (max-width: 1180px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ──────────────────────────────────────────
   RESPONSIVE — V3 components
────────────────────────────────────────── */
@media (max-width: 900px) {
  .studios__tilegrid { grid-template-columns: repeat(2, 1fr); }
  .equipment-block { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer__main { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  .studios__tilegrid { grid-template-columns: 1fr; }
  .services .services__grid { grid-template-columns: 1fr; }
  .producer__grid { grid-template-columns: 1fr 1fr; }
  .studio-modal { padding: 0; }
  .studio-modal__inner { max-height: 100vh; height: 100%; border: none; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   ═══  V4 — FEEDBACK-UMSETZUNG (auf Basis V3)  ═══
══════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   FIX: Hero-Titel "POWERPLAY" wurde abgeschnitten
   (American Captain ist sehr hoch -> overflow/line-height)
────────────────────────────────────────── */
.hero__title {
  overflow: visible;
  line-height: 0.95;
  padding-top: 0.08em;
  padding-bottom: 0.04em;
}
.hero__title-line1,
.hero__title-line2 {
  overflow: visible;
  line-height: 0.95;
  padding-block: 0.02em;
}
/* etwas kleinere Maximalgrösse, damit nichts an den Rändern klemmt */
.hero__title-line1 { font-size: clamp(2.5rem, 12vw, 12rem); }
.hero__title-line2 { font-size: clamp(2rem, 9.5vw, 9.5rem); }

/* Allgemein: grosse American-Captain-Titel nicht abschneiden */
.section-title,
.studio-modal__title,
.studio-tile__name,
.equip-group__title {
  overflow: visible;
  line-height: 0.98;
}
.loader__text { padding: 0.12em 0; }

/* ──────────────────────────────────────────
   Hero-Badges als durchsichtige Kacheln
────────────────────────────────────────── */
.badge--glass {
  background: rgba(245, 237, 224, 0.12);
  border: 1px solid rgba(245, 237, 224, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--cream);
}

/* ──────────────────────────────────────────
   Durchsichtige (glasige) Studio-Kacheln bei HOME
────────────────────────────────────────── */
.studio-tile__overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.12) 50%, transparent 80%);
  backdrop-filter: saturate(1.05);
}
.studio-tile__info {
  background: rgba(13, 13, 13, 0.28);
  border: 1px solid rgba(245, 237, 224, 0.18);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  padding: var(--space-3) var(--space-4);
  border-radius: 4px;
}
.studio-tile__img-wrap img {
  /* etwas heller, damit die Kachel "durchsichtiger" wirkt */
  filter: grayscale(20%) contrast(1.03) brightness(0.9);
}
.studio-tile:hover .studio-tile__img-wrap img,
.studio-tile:focus-visible .studio-tile__img-wrap img {
  filter: grayscale(0%) contrast(1.05) brightness(0.72);
}
.studio-tile--residential .studio-tile__flag {
  background: var(--cream);
  color: var(--black);
}

/* ──────────────────────────────────────────
   EQUIPMENT — Floating (keine Studio-Zuteilung)
────────────────────────────────────────── */
.equipment__floating {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(var(--space-6), 5vw, var(--space-16));
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-8), 4vw, var(--space-12));
}
.equip-group__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(240, 235, 227, 0.12);
}
.equip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.equip-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(240, 235, 227, 0.78);
  border: 1px solid rgba(240, 235, 227, 0.18);
  border-radius: 999px;
  padding: var(--space-2) var(--space-4);
  background: rgba(240, 235, 227, 0.03);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.equip-tag:hover {
  border-color: var(--orange);
  color: var(--text-light);
  background: rgba(197, 75, 42, 0.12);
}

/* ──────────────────────────────────────────
   PRODUCER & TEAM — klickbare Kacheln
────────────────────────────────────────── */
.producer-card.is-clickable { cursor: pointer; position: relative; }
.producer-card.is-clickable::after {
  content: '+';
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
}
.producer-card.is-clickable:hover::after,
.producer-card.is-clickable:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

/* Team: gleiche weisse Kacheln wie bei Producer (auf orangem Grund) */
.team__cards .producer-card {
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.08);
}
.team__cards .producer-card__name { color: var(--charcoal); }
.team__cards .producer-card__role { color: var(--orange); }
.team__cards .producer-card__overlay {
  background: linear-gradient(to top, rgba(197, 75, 42, 0.45), transparent 55%);
}

/* ──────────────────────────────────────────
   PERSON MODAL — Producer & Team Popup
────────────────────────────────────────── */
.person-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.person-modal[hidden] { display: none; }
.person-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.person-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--black-surface);
  border: 1px solid rgba(197, 75, 42, 0.35);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}
.person-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: rgba(13, 13, 13, 0.7);
  border: 1px solid rgba(240, 235, 227, 0.2);
  border-radius: 50%;
  transition: background var(--transition);
}
.person-modal__close:hover { background: var(--orange); }
.person-modal__media {
  overflow: hidden;
}
.person-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}
.person-modal__content {
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.person-modal__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.person-modal__name {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1;
}
.person-modal__role {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(240, 235, 227, 0.7);
}
.person-modal__desc {
  color: rgba(240, 235, 227, 0.72);
  line-height: 1.7;
  font-size: var(--text-base);
  margin-top: var(--space-2);
}

/* Extra-Absatz in Studio-Popups */
.studio-modal__desc--more { color: rgba(240, 235, 227, 0.6); }

@media (max-width: 600px) {
  .person-modal__inner { grid-template-columns: 1fr; }
  .person-modal__media img { min-height: 200px; max-height: 38vh; }
}
