/* ============================
   ZWEIMEDIA — Main Stylesheet
   ============================ */

/* --- CSS Custom Properties --- */
:root {
  --color-bg-light: #f5f5f0;
  --color-bg-dark: #1a1a1a;
  --color-text-dark: #1a1a1a;
  --color-text-light: #f5f5f0;
  --color-accent: #c8a96e;
  --color-border: rgba(255, 255, 255, 0.15);

  --font-heading: 'Anton', sans-serif;
  --font-body: 'Epilogue', sans-serif;

  --max-width: 1800px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --section-padding: clamp(3rem, 8vw, 7rem);

  --transition-base: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

a:hover {
  opacity: 0.75;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  max-width: 65ch;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem var(--gutter);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo img {
  height: clamp(32px, 5vw, 60px);
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-links a.active {
  color: var(--color-accent);
}

.social-link {
  color: var(--color-text-light);
  display: flex;
  align-items: center;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-text-light);
  margin: 6px 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInScroll 0.8s ease 1.5s forwards;
}

.scroll-indicator-line {
  width: 1px;
  height: 0;
  background: rgba(255, 255, 255, 0.5);
  animation: lineGrow 1.5s ease 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 2;
  fill: none;
  animation: subtleBounce 2s ease 2.3s infinite;
}

@keyframes fadeInScroll {
  to { opacity: 1; }
}

@keyframes lineGrow {
  0% { height: 0; opacity: 0; }
  50% { height: 30px; opacity: 1; }
  100% { height: 30px; opacity: 0; }
}

@keyframes subtleBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* --- About Section --- */
.about {
  padding: var(--section-padding) 0;
  background: var(--color-bg-light);
}

.about-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.about-header h2 {
  margin-bottom: 0.5rem;
}

.about-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.about-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--color-accent);
  max-width: none;
}

.about-intro {
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #555;
  max-width: 50ch;
  margin: 0 auto;
}

.about-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.team-member {
  display: flex;
  flex-direction: column;
}

.team-member-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
  transform: scale(1.03);
}

.team-member-info {
  border-top: 1px solid var(--color-text-dark);
  padding-top: 1rem;
}

.team-member-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.team-member-name .toggle-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform var(--transition-base);
}

.team-member-name.active .toggle-icon {
  transform: rotate(45deg);
}

.team-member-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.team-member-bio.open {
  max-height: 500px;
}

.team-member-bio p {
  padding: 0.5rem 0 1rem;
  font-size: 0.95rem;
  color: #555;
}

/* --- Productions / Teaser Grid --- */
.productions {
  padding: var(--section-padding) 0;
  background: var(--color-bg-dark);
}

.productions-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-light);
}

.productions-teaser-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.production-teaser {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  display: block;
  text-decoration: none;
  color: var(--color-text-light);
  filter: saturate(0.4) brightness(0.7);
  transition: filter 0.5s ease, transform 0.5s ease, flex-grow 0.5s ease;
}

.production-teaser:hover,
.production-teaser:focus-visible {
  filter: saturate(1) brightness(1);
  transform: scale(1.03);
  z-index: 2;
  opacity: 1;
}

.production-teaser-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.production-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.production-teaser:hover .production-teaser-img img {
  transform: scale(1.08);
}

.production-teaser-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

.production-teaser-label h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.production-teaser-sub {
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  opacity: 0;
  display: block;
  transition: opacity 0.3s ease;
  font-weight: 600;
  color: var(--color-accent);
}

.production-teaser:hover .production-teaser-sub {
  opacity: 1;
}

/* When grid has hover: non-hovered teasers go even more muted */
.productions-teaser-grid.has-hover .production-teaser {
  filter: saturate(0.2) brightness(0.5);
  transform: scale(0.98);
}

.productions-teaser-grid.has-hover .production-teaser:hover {
  filter: saturate(1) brightness(1);
  transform: scale(1.03);
}

/* --- Contact Section --- */
.contact {
  padding: var(--section-padding) 0;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-text h2 {
  margin-bottom: 1.25rem;
}

.contact-text .lead {
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-text p {
  color: rgba(245, 245, 240, 0.8);
  margin-bottom: 0.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 0.85rem 1.25rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-base);
}

.form-group textarea {
  border-radius: 20px;
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.g-recaptcha {
  margin-bottom: 1rem;
}

.btn-submit {
  align-self: flex-start;
  background: var(--color-text-light);
  color: var(--color-bg-dark);
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}

.btn-submit:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.form-status--success {
  background: rgba(76, 175, 80, 0.15);
  color: #66bb6a;
}

.form-status--error {
  background: rgba(244, 67, 54, 0.15);
  color: #ef5350;
}

/* --- Footer --- */
.site-footer {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-bg-light);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.footer-links a:hover {
  opacity: 1;
}

/* --- Subpage Styles --- */

/* Hero */
.subpage-hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.subpage-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 50%);
  z-index: 1;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.subpage-hero-content h1 {
  color: var(--color-text-light);
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 0.25rem;
}

.subpage-hero-tagline {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.35rem);
  max-width: none;
}

/* Intro section */
.subpage-intro {
  padding: var(--section-padding) 0;
  background: var(--color-bg-light);
}

.subpage-intro-text {
  max-width: 700px;
}

.subpage-intro-text h2 {
  margin-bottom: 1rem;
}

.subpage-intro-text .lead {
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.subpage-intro-text p {
  color: #555;
  margin-bottom: 0.75rem;
}

/* Showcase section */
.subpage-showcase {
  padding: 0 0 var(--section-padding);
  background: var(--color-bg-light);
}

.subpage-showcase h2 {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.showcase-video {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.showcase-project {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.showcase-project h3 {
  margin-top: 1rem;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: var(--color-bg-dark);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.video-placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-text-light);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.play-icon {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding-left: 4px;
}

/* Video player */
.showcase-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: var(--color-bg-dark);
}

.showcase-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* Details / Leistungen */
.subpage-details {
  padding: var(--section-padding) 0;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.subpage-details h2 {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.detail-item {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: border-color var(--transition-base);
}

.detail-item:hover {
  border-color: var(--color-accent);
}

.detail-item h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.detail-item p {
  color: rgba(245, 245, 240, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA section */
.subpage-cta {
  padding: var(--section-padding) 0;
  background: var(--color-bg-light);
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 0.75rem;
}

.cta-inner p {
  margin: 0 auto 1.5rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--transition-base), transform var(--transition-base);
}

.cta-button:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
  opacity: 1;
}

/* More productions grid */
.subpage-more {
  padding: var(--section-padding) 0;
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.subpage-more h2 {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.more-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  display: block;
  color: var(--color-text-light);
}

.more-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.6);
}

.more-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.more-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.more-item:hover {
  opacity: 1;
}

/* --- Legal Pages (Impressum / Datenschutz) --- */
.legal-page {
  padding-top: calc(80px + var(--section-padding));
  padding-bottom: var(--section-padding);
  background: var(--color-bg-light);
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-page h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 0.75rem;
  max-width: none;
}

.legal-page ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page a:hover {
  opacity: 0.8;
}

.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.legal-page .back-link:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* Privacy page intro box (Vorlage 2 style) */
.legal-page .privacy-intro {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 2rem 2.5rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.legal-page .privacy-intro h2 {
  color: var(--color-accent);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.legal-page .privacy-intro p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.legal-page .privacy-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

.legal-page hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.legal-page .rights-list {
  list-style: none;
  padding-left: 0;
}

.legal-page .rights-list li {
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: #fff;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 4px 4px 0;
}

.legal-page .rights-list li strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-text-dark);
}

/* Header on subpages (not transparent) */
.site-header.header-dark {
  background: var(--color-bg-dark);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem var(--gutter);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  max-width: 60ch;
  margin: 0;
}

.cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

.cookie-btn-accept:hover {
  background: #d4b97a;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn-decline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  z-index: 150;
  transition: none;
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-bg-dark);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: var(--stagger, 0s);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation variants */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: var(--stagger, 0s);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: var(--stagger, 0s);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: var(--stagger, 0s);
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Image reveal effect */
.reveal-image {
  position: relative;
  overflow: hidden;
}

.reveal-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-bg-light);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: var(--stagger, 0s);
}

.reveal-image.visible::after {
  transform: scaleX(0);
}

/* Text line reveal */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal-inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: var(--stagger, 0s);
}

.text-reveal.visible .text-reveal-inner {
  transform: translateY(0);
}

/* Horizontal line grow animation */
.line-grow {
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: var(--stagger, 0.2s);
}

.line-grow.visible {
  width: 60px;
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* Tablets */
@media (max-width: 1024px) {
  .about-team {
    gap: 1.5rem;
  }

  .productions-teaser-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .more-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet portrait & large phones */
@media (max-width: 768px) {
  /* Header mobile */
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .main-nav.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
  }

  .main-nav.open .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav.open .nav-links li:nth-child(1) a { transition-delay: 0.1s; }
  .main-nav.open .nav-links li:nth-child(2) a { transition-delay: 0.18s; }
  .main-nav.open .nav-links li:nth-child(3) a { transition-delay: 0.26s; }
  .main-nav.open .social-link { transition-delay: 0.34s; }

  .social-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .main-nav.open .social-link {
    opacity: 1;
    transform: translateY(0);
  }

  /* About */
  .about-team {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-member-image {
    aspect-ratio: 4 / 5;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
  }

  /* Productions */
  .productions-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .production-teaser-img {
    aspect-ratio: 4 / 5;
  }

  /* Subpage */
  .subpage-hero {
    height: 50vh;
    min-height: 300px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .more-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero video — contain on mobile so it's not cropped */
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-video {
    position: relative;
    object-fit: contain;
  }

  .scroll-indicator {
    bottom: 0.5rem;
  }

  /* Cookie banner */
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}

/* Small phones */
@media (max-width: 480px) {

  .about-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-tagline {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .productions-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .production-teaser-img {
    aspect-ratio: 3 / 4;
  }

  .production-teaser-label {
    padding: 0.5rem;
  }

  .production-teaser-label h3 {
    font-size: 0.85rem;
  }

  .subpage-hero {
    height: 40vh;
    min-height: 250px;
  }

  .more-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .play-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: antialiased;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .fade-in-scale {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .text-reveal-inner {
    transform: none;
    transition: none;
  }

  .reveal-image::after {
    display: none;
  }

  .line-grow {
    width: 60px;
    transition: none;
  }

  .scroll-indicator {
    animation: none;
  }

  .team-member-image img,
  .production-teaser-img img {
    transition: none;
  }

  .production-teaser {
    filter: saturate(1) brightness(1);
    transition: none;
  }

  .scroll-progress {
    display: none;
  }
}
