/* ALPHAMODELS — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --panel: #151515;
  --fg: #f5f5f2;
  --muted: #9a9a94;
  --line: #262622;
  --accent: #caff33;
  --accent-dim: #9dc42a;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', 'Arial', sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #0a0a0a; }

a { color: inherit; }

.display {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Header ---------- */

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 56px);
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

header.site-header.scrolled {
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(10px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 40px;
  width: auto;
  filter: invert(1);
  display: block;
  transition: height 0.35s ease;
}

header.site-header.scrolled .brand img {
  height: 32px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.site-nav {
  display: flex;
  gap: 30px;
}

nav.site-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

nav.site-nav a:hover { color: var(--fg); }

.btn[hidden] {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  color: var(--fg);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: translateY(-1px);
}

.btn.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

.btn.btn-accent:hover {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--fg);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav { display: none; }

/* ---------- Hero ---------- */

main { flex: 1; width: 100%; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 15%;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero-bg-slide.is-active { opacity: 1; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 50% 20%, rgba(202, 255, 51, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.62) 32%, rgba(10,10,10,0.72) 68%, rgba(10,10,10,0.95) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(245,245,242,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,245,242,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 40%, transparent 90%);
}

.hero-eyebrow {
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(40px, 9vw, 118px);
  max-width: 20ch;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  margin-top: 26px;
  max-width: 46ch;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  line-height: 1.65;
}

.hero-cta {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-hint .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--muted), transparent);
  animation: scrolldown 1.8s ease-in-out infinite;
}

@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---------- Sections ---------- */

section { position: relative; padding: 120px 20px; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(30px, 4.6vw, 56px);
}

.section-head p {
  color: var(--muted);
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.6;
}

/* Showreel */

.showreel { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 100px 0; }

.showreel .wrap.showreel-head { padding: 0 clamp(20px, 5vw, 56px); }

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-embed,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* Videos grid */

.videos { background: var(--bg); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.video-grid-status {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
}

.gender-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.gender-btn {
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.gender-btn:hover {
  border-color: var(--accent);
  color: var(--fg);
}

.gender-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

.video-grid-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.video-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.video-card .thumb-wrap {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  font-size: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-card:hover .video-play span {
  background: var(--accent);
  color: #0a0a0a;
  transform: scale(1.08);
}

.video-fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px);
  color: var(--fg);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

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

.video-fav-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

/* Casting-Ordner */

.casting {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.casting-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.casting-form[hidden] { display: none; }

.casting-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 24px auto 0;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.casting-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.casting-form input,
.casting-form textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  resize: vertical;
}

.casting-form input:focus,
.casting-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.casting-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.casting-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.casting-form-status {
  font-size: 13px;
  color: var(--muted);
}

.casting-form-status.ok { color: var(--accent); }
.casting-form-status.error { color: #ff6b6b; }

.video-card-title {
  display: block;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--fg);
}

/* Lightbox */

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  cursor: pointer;
}

.video-lightbox[hidden] { display: none; }

.video-lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-lightbox-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-lightbox-frame iframe {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  border: 0;
  pointer-events: none;
}

.video-lightbox-veil {
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.video-lightbox-veil.hide { opacity: 0; }

.video-lightbox-pausecover {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-lightbox-pausecover.show { opacity: 1; }

.lightbox-controls {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.lightbox-controls button {
  position: static;
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px);
  color: var(--fg);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.lightbox-controls button:hover {
  border-color: var(--accent);
  transform: scale(1.08);
}

.lightbox-controls .video-fav-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

.lightbox-persona {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 30px;
  line-height: 50px;
  color: var(--fg);
  white-space: nowrap;
}

.lightbox-volume-wrap {
  position: absolute;
  bottom: 28px;
  right: 20px;
  z-index: 4;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lightbox-volume-slider {
  width: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
  accent-color: var(--accent);
  pointer-events: none;
  transition: width 0.2s ease, opacity 0.2s ease;
}

.lightbox-volume-wrap:hover .lightbox-volume-slider,
.lightbox-volume-wrap:focus-within .lightbox-volume-slider {
  width: 90px;
  opacity: 1;
  pointer-events: auto;
}

.lightbox-mute {
  position: static;
  flex: 0 0 auto;
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px);
  color: var(--fg);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.lightbox-mute:hover {
  border-color: var(--accent);
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .lightbox-controls { bottom: 18px; gap: 14px; flex-wrap: wrap; }
  .lightbox-controls button { width: 44px; height: 44px; }
  .lightbox-volume-wrap { bottom: 18px; right: 14px; }
  .lightbox-mute { width: 38px; height: 38px; font-size: 14px; }
  .lightbox-persona { font-size: 20px; line-height: 44px; }
}

@media (max-width: 640px) {
  .video-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
}

/* About / statement */

.statement {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 780px) {
  .statement {
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: start;
  }
}

.statement blockquote {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(24px, 3.6vw, 42px);
  line-height: 1.15;
  max-width: 22ch;
}

.statement blockquote em {
  font-style: normal;
  color: var(--accent);
}

.statement .statement-body {
  max-width: 52ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.statement .statement-body strong { color: var(--fg); }

/* Pillars */

.pillars {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.pillar {
  background: var(--bg-soft);
  padding: 40px 32px;
  transition: background 0.25s ease;
}

.pillar:hover { background: var(--panel); }

.pillar .num {
  font-family: 'Anton', sans-serif;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}

.pillar h3 {
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.pillar p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* CTA band */

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: 160px 20px;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: 80% 20%;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 55% at 50% 30%, rgba(202, 255, 51, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.68) 40%, rgba(10,10,10,0.88) 100%);
}

.cta-band h2 {
  font-size: clamp(32px, 6vw, 72px);
  max-width: 18ch;
  margin: 0 auto 30px;
}

.cta-band p {
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Footer ---------- */

footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 20px 34px;
  background: var(--bg-soft);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}

.footer-brand img {
  height: 22px;
  filter: invert(1);
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  max-width: 34ch;
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: var(--fg);
  margin-bottom: 10px;
  opacity: 0.88;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-col a:hover { opacity: 1; color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom .legal-links a {
  text-decoration: none;
  color: var(--muted);
  margin-right: 18px;
}

.footer-bottom .legal-links a:hover { color: var(--fg); }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- Legal pages ---------- */

.legal-page main { padding-top: 0; }

.legal-hero {
  padding: 160px 20px 60px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.legal-hero .wrap { max-width: 820px; }

.legal-hero .eyebrow { margin-bottom: 18px; }

.legal-hero h1 {
  font-size: clamp(34px, 6vw, 64px);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 20px 120px;
  line-height: 1.75;
}

.legal-content h2 {
  font-size: 20px;
  margin: 40px 0 14px;
  letter-spacing: 0.01em;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 16px;
  margin: 26px 0 10px;
  color: var(--fg);
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
}

.legal-content p strong { color: var(--fg); font-weight: 600; }

.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  nav.site-nav { display: none; }
  .nav-toggle { display: flex; }

  .header-actions .btn.btn-accent.home-cta { display: none; }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    pointer-events: none;
  }

  .mobile-nav.open { pointer-events: auto; }

  .mobile-nav.open { transform: translateY(0); }

  .mobile-nav a {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 28px;
    text-decoration: none;
    color: var(--fg);
  }

  .pillar-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 560px) {
  section { padding: 90px 18px; }
  .cta-band { padding: 100px 18px; }
}
