/* ============================================================
   THE LOCALS — DOCUSERIES WEBSITE
   Brand: Cobalt blue · Chartreuse yellow-green · Script typeface
   Layout: Horizontal scroll SPA
============================================================ */

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

:root {
  /* Brand Palette */
  --color-blue:          #2B52F5;
  --color-blue-mid:      #1E3FD8;
  --color-blue-dark:     #152DB8;
  --color-blue-deep:     #0D1F8A;
  --color-blue-light:    #4A6BFF;
  --color-blue-muted:    rgba(43, 82, 245, 0.65);
  --color-chartreuse:    #C9E828;
  --color-chart-bright:  #D6F030;
  --color-chart-dim:     #A8C418;
  --color-white:         #FFFFFF;
  --color-off-white:     #F2F5FF;
  --color-white-40:      rgba(255, 255, 255, 0.4);
  --color-white-20:      rgba(255, 255, 255, 0.2);
  --color-white-10:      rgba(255, 255, 255, 0.1);
  --color-white-06:      rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-script:  'Great Vibes', cursive;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --nav-h: 70px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow: hidden;
  height: 100vh;
}

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

img, iframe { display: block; max-width: 100%; }
::-webkit-scrollbar { display: none; }

/* ── DAMASK PATTERN (SVG inline data-uri) ── */
.damask-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M60 10 C55 20, 45 25, 40 35 C35 45, 38 55, 45 60 C38 65, 35 75, 40 85 C45 95, 55 100, 60 110 C65 100, 75 95, 80 85 C85 75, 82 65, 75 60 C82 55, 85 45, 80 35 C75 25, 65 20, 60 10Z'/%3E%3Cpath d='M10 60 C20 55, 25 45, 35 40 C45 35, 55 38, 60 45 C65 38, 75 35, 85 40 C95 45, 100 55, 110 60 C100 65, 95 75, 85 80 C75 85, 65 82, 60 75 C55 82, 45 85, 35 80 C25 75, 20 65, 10 60Z'/%3E%3Ccircle cx='60' cy='60' r='8' fill-opacity='0.08'/%3E%3Ccircle cx='60' cy='10' r='4' fill-opacity='0.06'/%3E%3Ccircle cx='60' cy='110' r='4' fill-opacity='0.06'/%3E%3Ccircle cx='10' cy='60' r='4' fill-opacity='0.06'/%3E%3Ccircle cx='110' cy='60' r='4' fill-opacity='0.06'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: linear-gradient(
    to bottom,
    rgba(13, 31, 138, 0.96) 0%,
    rgba(13, 31, 138, 0.0) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-white-06);
  transition: all 0.4s var(--ease-in-out);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  cursor: pointer;
  line-height: 1;
}

.nav-logo-wordmark {
  font-family: var(--font-script);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-chartreuse);
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(201, 232, 40, 0.3);
  transition: text-shadow 0.3s;
}

.nav-logo:hover .nav-logo-wordmark {
  text-shadow: 0 2px 30px rgba(201, 232, 40, 0.6);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white-40);
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease-in-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-chartreuse);
  transition: width 0.35s var(--ease-out-expo);
}

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

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-white-06);
  border: 1px solid var(--color-white-10);
  border-radius: 2px;
  padding: 4px 10px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-white-40);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 1px;
  transition: all 0.25s var(--ease-in-out);
}

.lang-btn.active {
  color: var(--color-chartreuse);
  background: rgba(201, 232, 40, 0.08);
}

.lang-btn:hover:not(.active) {
  color: var(--color-white);
}

.lang-sep {
  font-size: 10px;
  color: var(--color-white-20);
  user-select: none;
}

.nav-scroll-hint {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-white-20);
  text-transform: uppercase;
  animation: pulseHint 2.5s ease-in-out infinite;
}

@keyframes pulseHint {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}


/* ============================================================
   HORIZONTAL SCROLL CONTAINER
============================================================ */
.scroll-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.panel {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   SECTION 0 — HERO
============================================================ */
.panel--hero {
  background-color: var(--color-blue);
}

/* vignette overlay */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    transparent 40%,
    rgba(13, 31, 138, 0.6) 100%
  );
}

/* subtle gradient sweep */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(201, 232, 40, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(255,255,255, 0.04) 0%, transparent 50%);
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.2s forwards;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-chartreuse);
  opacity: 0.5;
}

.eyebrow-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-chartreuse);
  opacity: 0.85;
}

/* Main Title */
.hero-title {
  font-family: var(--font-script);
  font-size: clamp(100px, 17vw, 240px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--color-chartreuse);
  letter-spacing: 0.02em;
  text-shadow:
    0 4px 40px rgba(201, 232, 40, 0.3),
    0 0 80px rgba(201, 232, 40, 0.15);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.4s forwards;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-off-white);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.6s forwards;
}

/* CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-chartreuse);
  color: var(--color-blue-deep);
  border: none;
  border-radius: 2px;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 72px;
  transition: all 0.35s var(--ease-out-expo);
  box-shadow: 0 8px 32px rgba(201, 232, 40, 0.25);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.8s forwards;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-chart-bright);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out-expo);
}

.cta-btn:hover {
  box-shadow: 0 12px 40px rgba(201, 232, 40, 0.4);
  transform: translateY(-2px);
}

.cta-btn:hover::before {
  transform: translateX(0);
}

.cta-btn span,
.cta-arrow {
  position: relative;
  z-index: 1;
}

.cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out-expo);
}

.cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

/* Meta strip */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1s forwards;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.meta-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white-40);
}

.meta-value {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--color-off-white);
  opacity: 0.8;
}

.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--color-white-20);
}

/* Scroll indicator  */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator-track {
  width: 100px;
  height: 2px;
  background: var(--color-white-10);
  border-radius: 1px;
  overflow: hidden;
}

.scroll-indicator-thumb {
  width: 0%;
  height: 100%;
  background: var(--color-chartreuse);
  border-radius: 1px;
  transition: width 0.1s linear;
}

.scroll-indicator-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white-20);
}

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ============================================================
   SECTION 1 — THE SERIES
============================================================ */
.panel--series {
  background-color: var(--color-blue-dark);
}

.series-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  width: 100%;
  height: 100%;
  padding-top: var(--nav-h);
}

.series-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px 60px 80px;
  position: relative;
}

.series-left::after {
  content: '';
  position: absolute;
  top: 12%;
  right: 0;
  width: 1px;
  height: 76%;
  background: linear-gradient(to bottom, transparent, var(--color-white-10) 25%, var(--color-white-10) 75%, transparent);
}

.series-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 60px 60px;
}

/* Section label */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.section-label-num {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-chartreuse);
  border: 1px solid rgba(201, 232, 40, 0.3);
  padding: 3px 9px;
  border-radius: 2px;
}

.section-label-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white-40);
}

/* Series heading */
.series-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 24px;
}

.series-title em {
  font-style: italic;
  color: var(--color-chartreuse);
}

.series-body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-off-white);
  opacity: 0.7;
  margin-bottom: 32px;
  max-width: 440px;
}

/* Episode preview */
.episode-preview {
  border-left: 2px solid var(--color-chartreuse);
  padding: 12px 16px;
  margin-bottom: 28px;
  background: rgba(201, 232, 40, 0.05);
  border-radius: 0 2px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.episode-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-chartreuse);
  opacity: 0.8;
}

.episode-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.3;
}

.episode-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-off-white);
  opacity: 0.6;
}

/* Tags */
.series-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white-40);
  border: 1px solid var(--color-white-20);
  padding: 5px 13px;
  border-radius: 2px;
  transition: all 0.25s var(--ease-in-out);
}

.tag:hover {
  border-color: var(--color-chartreuse);
  color: var(--color-chartreuse);
}

/* Instagram link */
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-white-40);
  transition: color 0.25s var(--ease-in-out);
}

.insta-link:hover {
  color: var(--color-chartreuse);
}

.insta-icon {
  width: 16px;
  height: 16px;
}

/* Video / Coming-soon placeholder */
.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background-color: var(--color-blue-deep);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(201, 232, 40, 0.2);
  box-shadow:
    0 0 0 1px var(--color-white-06),
    0 20px 60px rgba(13, 31, 138, 0.6),
    0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Damask texture inside placeholder */
.vp-damask {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M60 10 C55 20, 45 25, 40 35 C35 45, 38 55, 45 60 C38 65, 35 75, 40 85 C45 95, 55 100, 60 110 C65 100, 75 95, 80 85 C85 75, 82 65, 75 60 C82 55, 85 45, 80 35 C75 25, 65 20, 60 10Z'/%3E%3Cpath d='M10 60 C20 55, 25 45, 35 40 C45 35, 55 38, 60 45 C65 38, 75 35, 85 40 C95 45, 100 55, 110 60 C100 65, 95 75, 85 80 C75 85, 65 82, 60 75 C55 82, 45 85, 35 80 C25 75, 20 65, 10 60Z'/%3E%3Ccircle cx='60' cy='60' r='8' fill-opacity='0.06'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.6;
}

.vp-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
}

.vp-icon {
  width: 64px;
  height: 64px;
  color: var(--color-chartreuse);
  animation: vpPulse 2.8s ease-in-out infinite;
}

.vp-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes vpPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

.vp-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-chartreuse);
}

.vp-sub {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: var(--color-off-white);
  opacity: 0.45;
  letter-spacing: 0.04em;
}

.video-caption {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-white-20);
  margin-top: 14px;
  text-align: center;
}

/* ============================================================
   SECTION 2 — ABOUT
============================================================ */
.panel--about {
  background-color: var(--color-blue-mid);
  align-items: flex-start;
}

.about-layout {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 80px 48px;
  gap: 32px;
  overflow-y: auto;
}

.about-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-white);
}

.about-title em {
  font-style: italic;
  color: var(--color-chartreuse);
}

.about-intro {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--color-off-white);
  opacity: 0.7;
  line-height: 1.65;
  max-width: 500px;
}

/* Directors Grid */
.directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.director-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-white-06);
  border: 1px solid var(--color-white-10);
  border-radius: 3px;
  padding: 24px;
  transition: all 0.35s var(--ease-out-expo);
}

.director-card:hover {
  background: var(--color-white-10);
  border-color: rgba(201, 232, 40, 0.25);
  transform: translateY(-2px);
}

.director-portrait {
  flex: 0 0 64px;
}

.portrait-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(201, 232, 40, 0.3) 0%,
    rgba(43, 82, 245, 0.6) 100%
  );
  border: 1px solid rgba(201, 232, 40, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-initials {
  font-family: var(--font-script);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-chartreuse);
}

.director-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.director-name {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
}

.director-role {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-chartreuse);
  margin-bottom: 6px;
  opacity: 0.9;
}

.director-bio {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-off-white);
  opacity: 0.65;
}

.director-bio em {
  font-style: italic;
  opacity: 1;
  color: var(--color-off-white);
}

.director-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.dir-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-white-40);
  transition: color 0.25s var(--ease-in-out);
}

.dir-link svg { width: 13px; height: 13px; }

.dir-link:hover {
  color: var(--color-chartreuse);
}

/* Project CTA */
.project-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.project-cta-copy {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--color-off-white);
  opacity: 0.6;
}

.insta-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--color-chartreuse);
  color: var(--color-chartreuse);
  padding: 11px 26px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 0 0 0 rgba(201, 232, 40, 0);
}

.insta-cta-btn:hover {
  background: var(--color-chartreuse);
  color: var(--color-blue-deep);
  box-shadow: 0 8px 24px rgba(201, 232, 40, 0.25);
}

.insta-cta-icon { width: 15px; height: 15px; }

/* ============================================================
   SECTION 3 — PRIVACY / GDPR
============================================================ */
.panel--privacy {
  background-color: var(--color-blue-deep);
  align-items: flex-start;
}

.privacy-layout {
  width: 100%;
  height: 100%;
  padding: calc(var(--nav-h) + 36px) 80px 56px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 300;
  color: var(--color-white);
}

.privacy-effective {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-white-40);
  margin-top: -10px;
}

.privacy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
}

.privacy-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-block h3 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-chartreuse);
  opacity: 0.9;
}

.privacy-block p,
.privacy-block ul {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-off-white);
  opacity: 0.65;
}

.privacy-block ul { padding-left: 16px; }

.privacy-block a {
  color: var(--color-chartreuse);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.privacy-block a:hover { opacity: 1; }

.reset-consent-btn {
  align-self: flex-start;
  margin-top: 6px;
  background: none;
  border: 1px solid var(--color-white-20);
  color: var(--color-off-white);
  opacity: 0.6;
  padding: 8px 18px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s var(--ease-in-out);
}

.reset-consent-btn:hover {
  border-color: var(--color-chartreuse);
  color: var(--color-chartreuse);
  opacity: 1;
}

/* ============================================================
   GDPR COOKIE BANNER
============================================================ */
.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(9, 20, 90, 0.97);
  border-top: 1px solid var(--color-white-10);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gdpr-banner.visible {
  transform: translateY(0);
}

.gdpr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 52px;
  max-width: 1400px;
  margin: 0 auto;
}

.gdpr-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.gdpr-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.gdpr-body {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--color-off-white);
  opacity: 0.65;
  line-height: 1.6;
  max-width: 680px;
}

.gdpr-body strong {
  font-weight: 500;
  color: var(--color-off-white);
  opacity: 1;
}

.gdpr-link {
  color: var(--color-chartreuse);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gdpr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gdpr-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.25s var(--ease-in-out);
}

.gdpr-decline {
  background: transparent;
  border: 1px solid var(--color-white-20);
  color: var(--color-off-white);
  opacity: 0.7;
}

.gdpr-decline:hover {
  opacity: 1;
  border-color: var(--color-white-40);
}

.gdpr-accept {
  background: var(--color-chartreuse);
  border: 1px solid var(--color-chartreuse);
  color: var(--color-blue-deep);
}

.gdpr-accept:hover {
  background: var(--color-chart-bright);
}

/* ============================================================
   FOOTER (fixed bottom, shown on non-hero sections)
============================================================ */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-in-out);
}

.site-footer.visible {
  pointer-events: all;
  opacity: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 52px;
  background: rgba(9, 20, 90, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-white-06);
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--color-white-40);
}

.footer-production {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--color-white-20);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-link,
.footer-link-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--color-white-40);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s var(--ease-in-out);
}

.footer-link:hover,
.footer-link-btn:hover {
  color: var(--color-chartreuse);
}

.footer-dot {
  color: var(--color-white-20);
  font-size: 12px;
}

/* ============================================================
   FOCUS & A11Y
============================================================ */
:focus-visible {
  outline: 2px solid var(--color-chartreuse);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .series-layout {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .series-left::after { display: none; }
  .series-left,
  .series-right { padding: 40px; }
  .directors-grid { grid-template-columns: 1fr; }
  .about-layout { padding: calc(var(--nav-h) + 20px) 40px 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .nav-scroll-hint { display: none; }
  .hero-content { padding: 0 28px; }
  .hero-meta { flex-wrap: wrap; justify-content: center; }
  .gdpr-inner { flex-direction: column; gap: 14px; padding: 16px 24px; align-items: flex-start; }
  .footer-inner { padding: 12px 24px; flex-direction: column; gap: 6px; }
  .privacy-content { grid-template-columns: 1fr; }
  .privacy-layout { padding: calc(var(--nav-h) + 20px) 24px 36px; }
  .director-card { flex-direction: column; }
  .about-layout { padding: calc(var(--nav-h) + 16px) 24px 36px; }
  .project-cta { flex-direction: column; align-items: flex-start; }
}
