@import "tailwindcss";

:root {
  --ink: #090909;
  --paper: #f0eee7;
  --acid: #d9ff42;
  --amber: #f09a30;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--acid); color: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.055;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 .45px, transparent .6px),
    radial-gradient(circle at 75% 62%, #fff 0 .35px, transparent .55px);
  background-size: 5px 5px, 7px 7px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 86px;
  padding: 0 3.2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(240, 238, 231, 0.12);
  background: rgba(9, 9, 9, 0.72);
  backdrop-filter: blur(18px);
}
.wordmark { display: flex; gap: 14px; align-items: center; }
.wordmark > span {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; background: var(--acid); color: var(--ink);
  font-size: 12px; font-weight: 900; letter-spacing: -0.04em;
}
.wordmark small, .site-header nav a {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.wordmark small { color: rgba(240, 238, 231, 0.55); }
.site-header nav { display: flex; gap: 28px; align-items: center; }
.site-header nav a { transition: opacity 0.25s ease; }
.site-header nav a:hover { opacity: 0.55; }
.site-header .nav-cta {
  padding: 13px 18px; border: 1px solid rgba(240, 238, 231, 0.4); border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 126px 3.2vw 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(22, 78, 76, 0.3), transparent 32%),
    radial-gradient(circle at 91% 8%, rgba(240, 154, 48, 0.15), transparent 22%),
    #090909;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-kicker {
  position: relative; z-index: 4; display: flex; justify-content: space-between;
  font-size: 10px; line-height: 1; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(240, 238, 231, 0.56);
}
.hero-copy { position: absolute; z-index: 3; left: 3.2vw; top: 27%; width: 66vw; }
.eyebrow {
  margin: 0 0 22px; font-size: 10px; font-weight: 700; line-height: 1.2;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.hero h1 {
  margin: 0; font-size: clamp(72px, 11.8vw, 188px); font-weight: 900;
  line-height: 0.73; letter-spacing: -0.085em;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 .outline {
  margin-left: 7vw; color: transparent; -webkit-text-stroke: 1.5px var(--paper);
}
.hero-script {
  margin: 28px 0 0 12vw; font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 68px); font-style: italic; letter-spacing: -0.04em;
  color: var(--acid); transform: rotate(-3deg);
}
.hero-portrait {
  position: absolute; z-index: 2; right: 2vw; bottom: 0;
  width: min(46vw, 740px); height: 87%;
}
.hero-portrait::after {
  content: ""; position: absolute; left: 10%; right: 0; bottom: 0; height: 20%;
  background: linear-gradient(to top, var(--ink), transparent);
}
.hero-portrait img {
  position: relative; z-index: 2; width: 100%; height: 100%;
  object-fit: contain; object-position: center bottom; filter: saturate(0.92) contrast(1.03);
}
.portrait-orbit {
  position: absolute; left: 13%; top: 22%; border: 1px solid rgba(217, 255, 66, 0.34);
  border-radius: 50%; transform: rotate(-18deg);
}
.portrait-orbit-one { width: 80%; aspect-ratio: 1; }
.portrait-orbit-two { left: 22%; top: 29%; width: 62%; aspect-ratio: 1; animation: orbit 12s linear infinite; }
@keyframes orbit { to { transform: rotate(342deg); } }
.hero-note {
  position: absolute; z-index: 5; right: 3.2vw; top: 112px; width: min(260px, 24vw);
  display: flex; gap: 14px; font-size: 12px; line-height: 1.55; color: rgba(240, 238, 231, 0.64);
}
.hero-note p { margin: 0; }
.pulse {
  flex: 0 0 auto; width: 8px; height: 8px; margin-top: 5px; border-radius: 50%;
  background: var(--acid); box-shadow: 0 0 0 0 rgba(217, 255, 66, 0.4); animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(217, 255, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 255, 66, 0); }
}
.scroll-cue {
  position: absolute; z-index: 5; left: 3.2vw; bottom: 42px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-cue span {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  margin-left: 10px; border: 1px solid rgba(240, 238, 231, 0.3); border-radius: 50%;
}

.marquee {
  overflow: hidden; padding: 20px 0; background: var(--acid); color: var(--ink);
  border-block: 1px solid var(--ink);
}
.marquee > div {
  display: flex; width: max-content; align-items: center; gap: 30px; animation: marquee 22s linear infinite;
}
.marquee span { font-size: 16px; font-weight: 900; letter-spacing: -0.02em; }
.marquee i { font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 130px 3.2vw; }
.section-head {
  display: grid; grid-template-columns: 1fr 2.25fr 1fr; gap: 3vw;
  margin-bottom: 80px; align-items: end;
}
.section-head h2, .profile-copy h2, footer h2, .awards-intro h2 {
  margin: 0; font-size: clamp(48px, 7.5vw, 120px); font-weight: 900;
  line-height: 0.86; letter-spacing: -0.075em;
}
.section-head h2 em, .profile-copy h2 em, footer h2 em, .awards-intro h2 em {
  font-family: Georgia, "Times New Roman", serif; font-weight: 400;
}
.section-head > p:last-child {
  margin: 0; font-size: 13px; line-height: 1.65; color: rgba(240, 238, 231, 0.58);
}

.film-card {
  position: relative; display: grid; grid-template-columns: 1.55fr 1fr;
  gap: clamp(32px, 6vw, 110px); min-height: 720px;
  padding: clamp(28px, 5vw, 82px); margin-bottom: 28px; overflow: hidden;
}
.film-card:last-child { margin-bottom: 0; }
.film-dark {
  border: 1px solid rgba(240, 238, 231, 0.18);
  background: radial-gradient(circle at 18% 18%, rgba(217,255,66,.08), transparent 26%), #101010;
}
.film-light { background: var(--paper); color: var(--ink); }
.film-number {
  position: absolute; top: 22px; right: 28px; font-size: 11px; letter-spacing: 0.15em;
}
.video-shell, .poster-shell {
  position: relative; align-self: center; overflow: hidden; background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.video-shell { aspect-ratio: 16 / 9; }
.video-shell iframe, .mini-embed iframe, .reel-video iframe { width: 100%; height: 100%; border: 0; }
.poster-shell { width: min(100%, 520px); justify-self: center; }
.poster-shell img {
  width: 100%; aspect-ratio: 4 / 5.25; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.film-light:hover .poster-shell img { transform: scale(1.035); }
.film-copy { align-self: center; }
.film-copy h3 {
  margin: 0 0 30px; max-width: 650px; font-size: clamp(46px, 5.8vw, 92px);
  line-height: 0.91; letter-spacing: -0.07em;
}
.film-copy > p:not(.eyebrow) { max-width: 580px; font-size: 15px; line-height: 1.7; opacity: 0.65; }
.film-stats {
  display: flex; gap: 36px; margin: 40px 0 30px; padding-block: 22px;
  border-block: 1px solid color-mix(in srgb, currentColor 18%, transparent);
}
.film-stats span {
  display: flex; flex-direction: column; gap: 6px; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.film-stats strong { font-size: 25px; letter-spacing: -0.04em; }
.film-copy > a, .film-links a, .section-head > a, .profile-links a {
  display: inline-block; padding-bottom: 5px; border-bottom: 1px solid currentColor;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.film-links { display: flex; gap: 24px; }
.mini-embed { width: min(360px, 100%); aspect-ratio: 16 / 9; margin-top: 25px; background: #000; }

.awards {
  display: grid; grid-template-columns: 0.88fr 1.75fr; gap: 7vw;
  background: var(--amber); color: var(--ink);
}
.awards-intro { position: sticky; top: 125px; align-self: start; }
.awards-intro h2 span { display: block; font-size: 0.45em; letter-spacing: 0; }
.awards-intro > p:last-child {
  max-width: 420px; margin-top: 35px; font-size: 14px; line-height: 1.7; opacity: .62;
}
.award-group { margin-bottom: 70px; }
.award-group:last-child { margin-bottom: 0; }
.award-group-title {
  display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
  padding-bottom: 25px; border-bottom: 2px solid var(--ink);
}
.award-group-title span { font-size: 10px; letter-spacing: .15em; }
.award-group-title h3 { margin: 0; font-size: clamp(26px, 3vw, 44px); letter-spacing: -.05em; }
.award-group ol { padding: 0; margin: 0; list-style: none; }
.award-group li {
  display: grid; grid-template-columns: 50px 1fr; padding: 22px 0;
  border-bottom: 1px solid rgba(9,9,9,.3);
}
.award-group li span { font-size: 10px; opacity: .48; }
.award-group li p { margin: 0; font-size: 14px; line-height: 1.45; }

.reel { background: var(--ink); }
.reel .section-head { grid-template-columns: .75fr 2.4fr .9fr; }
.reel .section-head > a { justify-self: end; }
.reel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reel-card {
  border: 1px solid rgba(240,238,231,.18); background: #101010;
  transition: transform .35s ease, border-color .35s ease;
}
.reel-card:hover { transform: translateY(-8px); border-color: var(--acid); }
.reel-video { aspect-ratio: 16 / 10; background: #000; }
.reel-label { display: grid; grid-template-columns: 35px 1fr; padding: 22px; }
.reel-label > span { font-size: 10px; opacity: .44; }
.reel-label h3 { margin: 0 0 8px; font-size: 16px; letter-spacing: -.025em; }
.reel-label p {
  margin: 0; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .5;
}

.profile {
  display: grid; grid-template-columns: 1.05fr 1fr; min-height: 900px;
  background: var(--paper); color: var(--ink);
}
.profile-photo { position: relative; min-height: 720px; overflow: hidden; }
.profile-photo::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,9,.55), transparent 48%);
}
.profile-photo img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) contrast(1.08);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.profile:hover .profile-photo img { transform: scale(1.025); }
.profile-photo span {
  position: absolute; z-index: 2; left: 30px; bottom: 28px; color: var(--paper);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
}
.profile-copy { padding: clamp(60px, 8vw, 145px) 7vw; align-self: center; }
.profile-copy h2 { font-size: clamp(46px, 5.6vw, 88px); }
.profile-copy > p:not(.eyebrow) {
  max-width: 590px; margin: 38px 0; font-size: 15px; line-height: 1.75; opacity: .65;
}
.disciplines { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; }
.disciplines span {
  padding: 10px 13px; border: 1px solid rgba(9,9,9,.24); border-radius: 999px;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
}
.profile-links { display: flex; flex-wrap: wrap; gap: 22px; }

footer {
  min-height: 74svh; padding: 125px 3.2vw 35px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: radial-gradient(circle at 80% 20%, rgba(217,255,66,.13), transparent 26%), var(--ink);
}
footer h2 { max-width: 1200px; font-size: clamp(62px, 10vw, 158px); }
footer h2 em { color: var(--acid); }
.contact-link {
  align-self: flex-start; margin-top: 58px; padding-bottom: 10px; border-bottom: 1px solid var(--paper);
  font-size: clamp(18px, 2.4vw, 38px); letter-spacing: -.03em;
}
.footer-bottom {
  display: flex; justify-content: space-between; gap: 24px; padding-top: 30px;
  margin-top: 100px; border-top: 1px solid rgba(240,238,231,.18);
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(240,238,231,.5);
}

@media (max-width: 980px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero-copy { top: 23%; width: 94%; }
  .hero h1 { font-size: 15vw; }
  .hero h1 .outline { margin-left: 0; }
  .hero-portrait { right: -13vw; width: 74vw; height: 70%; opacity: .74; }
  .hero-note { display: none; }
  .section-head, .reel .section-head, .awards, .profile { grid-template-columns: 1fr; }
  .section-head > p:last-child, .section-head > a { justify-self: start; max-width: 560px; }
  .film-card { grid-template-columns: 1fr; min-height: 0; }
  .awards-intro { position: static; }
  .reel-grid { grid-template-columns: 1fr; }
  .profile-photo { min-height: 680px; }
}

@media (max-width: 640px) {
  .site-header { height: 72px; padding-inline: 18px; }
  .wordmark small { display: none; }
  .site-header .nav-cta { padding: 11px 14px; }
  .hero { min-height: 810px; padding: 100px 18px 26px; }
  .hero-kicker span:last-child { display: none; }
  .hero-copy { left: 18px; top: 21%; }
  .hero h1 { font-size: 18vw; line-height: .79; }
  .hero-script { margin-left: 0; font-size: 10vw; }
  .hero-portrait { right: -28vw; width: 108vw; height: 67%; }
  .scroll-cue { left: 18px; bottom: 24px; }
  .section { padding: 90px 18px; }
  .section-head { margin-bottom: 50px; }
  .film-card { padding: 58px 18px 30px; }
  .film-stats { gap: 18px; }
  .awards { gap: 70px; }
  .award-group-title { align-items: flex-start; flex-direction: column; }
  .profile-photo { min-height: 500px; }
  .profile-copy { padding: 80px 18px; }
  footer { padding: 90px 18px 25px; }
  .footer-bottom { flex-direction: column; }
}

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

/* WordPress integration */
.site-header nav,
.site-header .primary-menu,
.site-header .fallback-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header .primary-menu,
.site-header .fallback-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid rgba(240, 238, 231, 0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.content-shell {
  min-height: 70svh;
  padding: 150px max(20px, 8vw) 100px;
  background: var(--paper);
  color: var(--ink);
}

.content-card {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.75;
}

.content-card h1 {
  margin: 0 0 35px;
  font-size: clamp(52px, 8vw, 110px);
  line-height: .9;
  letter-spacing: -.07em;
}

.content-card img {
  height: auto;
  margin: 35px 0;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 980px) {
  .site-header .primary-menu a,
  .site-header .fallback-menu a {
    display: inline-block !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-header nav {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    background: rgba(9, 9, 9, .98);
    border: 1px solid rgba(240, 238, 231, .18);
  }

  .site-header nav.is-open {
    display: flex;
  }

  .site-header .primary-menu,
  .site-header .fallback-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
}
