:root {
 --bg: #0A0A0B;
 --surface: #131315;
 --surface-2: #1C1C1F;
 --text: #F5F2EA;
 --text-dim: #A8A29A;
 --line: rgba(245, 242, 234, 0.12);
 --accent: #E8842A;
 --accent-ink:#0A0A0B;
 --accent-hover: #D9761F;
 --danger: #E5484D;
}

@font-face {
 font-family: "Anton";
 src: url("/assets/fonts/anton-400.woff2") format("woff2");
 font-weight: 400;
 font-style: normal;
 font-display: swap;
}

@font-face {
 font-family: "Inter";
 src: url("/assets/fonts/inter-400.woff2") format("woff2");
 font-weight: 400;
 font-style: normal;
 font-display: swap;
}

@font-face {
 font-family: "Inter";
 src: url("/assets/fonts/inter-500.woff2") format("woff2");
 font-weight: 500;
 font-style: normal;
 font-display: swap;
}

@font-face {
 font-family: "Inter";
 src: url("/assets/fonts/inter-600.woff2") format("woff2");
 font-weight: 600;
 font-style: normal;
 font-display: swap;
}

* {
 box-sizing: border-box;
}

html,
body {
 margin: 0;
 padding: 0;
}

body {
 background: var(--bg);
 color: var(--text);
 font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
 line-height: 1.55;
 min-height: 100svh;
}

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

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

h1,
h2,
h3 {
 margin: 0;
 font-family: "Anton", Impact, sans-serif;
 text-transform: uppercase;
 letter-spacing: 0.04em;
 line-height: 1.05;
}

p {
 margin: 0;
}

.container {
 width: min(100% - 2rem, 1200px);
 margin-inline: auto;
}

.site-header {
 position: sticky;
 top: 0;
 z-index: 20;
 background: rgba(10, 10, 11, 0.9);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--line);
}

.nav-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 min-height: 4.75rem;
}

.brand-link img {
 height: 40px;
 width: auto;
}

.site-nav {
 position: fixed;
 inset: 0;
 background: var(--bg);
 display: grid;
 place-content: center;
 gap: 1.25rem;
 text-align: center;
 opacity: 0;
 pointer-events: none;
 transition: opacity 0.22s ease;
}

.site-nav a {
 font-family: "Anton", Impact, sans-serif;
 font-size: clamp(1.25rem, 4vw, 2rem);
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: var(--text);
}

.site-nav a[aria-current="page"] {
 color: var(--accent);
}

.nav-toggle {
 appearance: none;
 border: 1px solid var(--line);
 background: transparent;
 color: var(--text);
 width: 2.75rem;
 height: 2.75rem;
 border-radius: 0.5rem;
 display: grid;
 place-items: center;
 font-size: 1.15rem;
 line-height: 1;
 cursor: pointer;
}

.nav-toggle::before {
 content: "☰";
}

body.nav-open {
 overflow: hidden;
}

body.nav-open .site-nav {
 opacity: 1;
 pointer-events: auto;
}

body.nav-open .nav-toggle::before {
 content: "✕";
}

.hero {
 min-height: 100svh;
 position: relative;
 display: grid;
 place-items: center;
 padding: 7rem 0 4rem;
 background-image: url("/assets/img/hero-poster.jpg");
 background-size: cover;
 background-position: center;
 overflow: hidden;
}

.hero-content {
 text-align: center;
 display: grid;
 justify-items: center;
 gap: 1.15rem;
 position: relative;
 z-index: 2;
}

.hero-video {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 0;
}

.hero::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, rgba(10,10,11,.55), rgba(10,10,11,.92));
 z-index: 1;
}

.hero-mark {
 max-width: 420px;
 width: min(88vw, 420px);
}

.hero h1 {
 font-size: clamp(2rem, 8.5vw, 4.5rem);
 max-width: 20ch;
}

.hero p {
 color: var(--text-dim);
 max-width: 68ch;
}

.hero-actions {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 0.75rem;
 margin-top: 0.5rem;
}

.btn,
.btn-outline {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 2.9rem;
 padding: 0.65rem 1.1rem;
 border-radius: 999px;
 font-weight: 600;
 transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.btn {
 background: var(--accent);
 color: var(--accent-ink);
 border: 1px solid var(--accent);
}

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

.btn-outline {
 border: 1px solid var(--text);
 background: transparent;
 color: var(--text);
}

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

.teasers {
 padding: 4rem 0;
 background: var(--bg);
}

.teasers-grid {
 display: grid;
 gap: 1rem;
}

.teaser-card {
 border: 1px solid var(--line);
 background: var(--surface);
 border-radius: 0.9rem;
 padding: 1.25rem;
 display: grid;
 gap: 0.75rem;
 border-top: 4px solid var(--accent);
}

.teaser-card h3 {
 font-size: clamp(1.25rem, 5vw, 1.8rem);
}

.teaser-card p {
 color: var(--text-dim);
}

.placements-strip {
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
 background: var(--surface-2);
 text-align: center;
 padding: 1rem;
}

.placements-strip a {
 color: var(--accent);
 font-weight: 600;
}

.site-footer {
 background: var(--surface);
 color: var(--text-dim);
 text-align: center;
 padding: 2rem 1rem 2.5rem;
 border-top: 1px solid var(--line);
}

.footer-stack {
 display: grid;
 gap: 0.45rem;
 justify-items: center;
}

.footer-stack a {
 color: var(--text);
}

.social-row {
 margin-top: 0.9rem;
 display: flex;
 gap: 0.85rem;
 justify-content: center;
}

.social-row a {
 width: 2.2rem;
 height: 2.2rem;
 border: 1px solid var(--line);
 border-radius: 999px;
 display: grid;
 place-items: center;
 color: var(--text);
}

.social-row svg {
 width: 1.2rem;
 height: 1.2rem;
 fill: none;
 stroke: currentColor;
 stroke-width: 1.8;
 stroke-linecap: round;
 stroke-linejoin: round;
}

.page-section {
 padding: 8rem 0 4rem;
}

.prose {
 max-width: 68ch;
 margin-inline: auto;
 display: grid;
 gap: 1rem;
}

.prose h1 {
 font-size: clamp(2rem, 6vw, 3.25rem);
}

.prose p {
 color: var(--text-dim);
}

.thanks-prose {
 text-align: center;
}

.contact-wrap {
 max-width: 640px;
 margin-inline: auto;
 display: grid;
 gap: 1.25rem;
}

.contact-form {
 display: grid;
 gap: 0.5rem;
}

.contact-form label {
 color: var(--text);
 font-weight: 500;
 margin-top: 1rem;
}

.contact-form label:first-of-type {
 margin-top: 0;
}

.contact-form input,
.contact-form textarea {
 background: var(--surface);
 border: 1px solid var(--line);
 color: var(--text);
 border-radius: 0.55rem;
 padding: 0.7rem 0.85rem;
 width: 100%;
 font: inherit;
}

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

.hp-field {
 position: absolute;
 left: -9999px;
 height: 0;
 width: 0;
 opacity: 0;
}

.form-error {
 color: var(--danger);
}

.contact-line a {
 color: var(--accent);
}

.kicker {
 font-family: "Anton", Impact, sans-serif;
 color: var(--accent);
 letter-spacing: 0.2em;
 font-size: 0.95rem;
 text-transform: uppercase;
}

.placements-sub {
 color: var(--text-dim);
 margin-top: 0.5rem;
}

.clips-grid {
 display: grid;
 gap: 1rem;
 margin-top: 2rem;
 grid-template-columns: 1fr;
}

.clip-card {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: 0.9rem;
 overflow: hidden;
}

.clip-trigger {
 display: block;
 width: 100%;
 padding: 0;
 border: 0;
 background: transparent;
 cursor: pointer;
 position: relative;
 aspect-ratio: 16/9;
}

.clip-trigger img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.clip-trigger[data-portrait="true"] img {
 object-fit: contain;
 background: var(--bg);
}

.play-badge {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 3.4rem;
 height: 3.4rem;
 border-radius: 50%;
 background: rgba(232, 132, 42, 0.92);
}

.play-badge::after {
 content: "";
 position: absolute;
 top: 50%;
 left: 52%;
 transform: translate(-50%, -50%);
 border-top: 0.5rem solid transparent;
 border-bottom: 0.5rem solid transparent;
 border-left: 0.8rem solid var(--accent-ink);
}

.clip-trigger:hover .play-badge {
 transform: translate(-50%, -50%) scale(1.06);
 transition: transform 0.2s;
}

.clip-caption {
 padding: 0.85rem 1rem;
 color: var(--text-dim);
 font-size: 0.95rem;
}

.clip-lightbox {
 border: 0;
 padding: 0;
 background: transparent;
 max-width: min(92vw, 1100px);
}

.clip-lightbox::backdrop {
 background: rgba(0,0,0,.8);
}

.clip-lightbox video {
 width: 100%;
 max-height: 82vh;
 background: #000;
 border-radius: 0.6rem;
}

.clip-lightbox.is-portrait video {
 object-fit: contain;
}

.lightbox-close {
 position: absolute;
 top: -2.6rem;
 right: 0;
 background: transparent;
 border: 1px solid var(--line);
 color: var(--text);
 border-radius: 999px;
 width: 2.2rem;
 height: 2.2rem;
 cursor: pointer;
}

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

@media (min-width: 720px) {
 .site-nav {
  position: static;
  inset: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  opacity: 1;
  pointer-events: auto;
 }

 .site-nav a {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.015em;
  text-transform: none;
  color: var(--text-dim);
  font-weight: 500;
 }

 .site-nav a:hover,
 .site-nav a[aria-current="page"] {
  color: var(--text);
 }

 .nav-toggle {
  display: none;
 }

 .teasers-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .clips-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}

@media (min-width: 1080px) {
 .teasers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
 }

 .hero {
  padding-top: 8.5rem;
 }
}

@media (prefers-reduced-motion: reduce) {
 *,
 *::before,
 *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
 }
}
