/* ============================================================
   I Will Be Waiting For You At Every Recess — Static styles
   ============================================================ */

:root {
  --background: oklch(0.12 0.005 60);
  --foreground: oklch(0.94 0.01 70);
  --muted: oklch(0.18 0.006 60);
  --muted-foreground: oklch(0.62 0.015 60);
  --accent: oklch(0.78 0.12 25);
  --accent-foreground: oklch(0.12 0.005 60);
  --border: oklch(0.24 0.008 60);

  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-sans: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

*,
*::before,
*::after { box-sizing: border-box; border: 0 solid var(--border); margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--accent-foreground); }

/* ---- utility tokens ---- */
.font-display { font-family: var(--font-display); font-feature-settings: "liga","dlig"; }
.font-mono { font-family: var(--font-mono); }
.italic { font-style: italic; }
.text-balance { text-wrap: balance; }
.hairline {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
}
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-foreground85 { color: color-mix(in oklch, var(--foreground) 85%, transparent); }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ---- nav ---- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in oklch, var(--background) 60%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}
.nav-inner {
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
  height: 4rem; display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 2.5rem; } }
.nav-links { display: none; gap: 2.5rem; align-items: center; color: var(--muted-foreground); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--foreground); }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-cta { color: var(--accent); transition: opacity .2s; }
.nav-cta:hover { opacity: .8; }

/* ---- hero ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero-bg::after, .hero-bg::before { content: ""; position: absolute; inset: 0; }
.hero-bg::after {
  background: linear-gradient(to bottom,
    color-mix(in oklch, var(--background) 70%, transparent),
    color-mix(in oklch, var(--background) 40%, transparent),
    var(--background));
}
.hero-bg::before {
  background: linear-gradient(to right,
    color-mix(in oklch, var(--background) 80%, transparent),
    transparent,
    color-mix(in oklch, var(--background) 40%, transparent));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 10; width: 100%;
  max-width: 80rem; margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
}
@media (min-width: 1024px) { .hero-content { padding: 8rem 2.5rem 5rem; } }
.hero-title {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: .95;
  letter-spacing: -0.02em;
  max-width: 64rem;
  margin-top: 2rem;
  text-wrap: balance;
}
.hero-stats {
  margin-top: 3rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem; row-gap: 1.5rem;
  max-width: 48rem;
  border-top: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  padding-top: 2rem;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3rem); color: var(--accent); }
.stat-label { color: var(--muted-foreground); margin-top: .5rem; }
.scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--muted-foreground); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

/* ---- marquee ---- */
.marquee {
  border-block: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
  background: color-mix(in oklch, var(--muted) 30%, transparent);
}
.marquee-track {
  display: flex; gap: 4rem; white-space: nowrap;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; color: var(--muted-foreground);
  animation: scroll 40s linear infinite;
}
.marquee-track span { display: flex; align-items: center; gap: 4rem; }
.marquee-track .star { color: var(--accent); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---- section base ---- */
section { padding-inline: 1.5rem; }
@media (min-width: 1024px) { section { padding-inline: 2.5rem; } }
.sect { padding-block: 8rem; }
@media (min-width: 1024px) { .sect { padding-block: 12rem; } }
.sect-sm { padding-block: 6rem; }
@media (min-width: 1024px) { .sect-sm { padding-block: 8rem; } }
.sect-tight { padding-block: 6rem; }
.bg-muted-soft { background: color-mix(in oklch, var(--muted) 20%, transparent); border-block: 1px solid var(--border); }
.bg-muted-30 { background: color-mix(in oklch, var(--muted) 30%, transparent); }

.grid-12 { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 5rem; } }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
@media (max-width: 1023px) { .col-4,.col-5,.col-6,.col-7,.col-8 { grid-column: 1 / -1; } }

h2.title-xl {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.0;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}
h2.title-lg {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: .75rem;
}
.lede {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.2;
  text-wrap: balance;
}
.body-lg { font-size: 1.125rem; line-height: 1.7; color: color-mix(in oklch, var(--foreground) 85%, transparent); }
.body-lg + .body-lg { margin-top: 1.5rem; }
.meta-block { font-family: var(--font-mono); font-size: .75rem; color: var(--muted-foreground); margin-top: 1.5rem; line-height: 1.7; }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.section-head .meta { font-family: var(--font-mono); font-size: .75rem; color: var(--muted-foreground); max-width: 18rem; }

/* ---- video ---- */
.video {
  position: relative; aspect-ratio: 16/9; width: 100%;
  background: #000; border: 1px solid var(--border); overflow: hidden;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---- festivals grid ---- */
.fest-head { display: grid; gap: 3rem; margin-bottom: 5rem; }
@media (min-width: 1024px) { .fest-head { grid-template-columns: repeat(12, 1fr); } }
.fest-head h2 { grid-column: span 5; }
.fest-head p { grid-column: 7 / span 6; align-self: end; font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.7; }
@media (max-width: 1023px) { .fest-head h2, .fest-head p { grid-column: 1 / -1; } }

.fest-grid {
  display: grid; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px) { .fest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fest-grid { grid-template-columns: repeat(3, 1fr); } }
.fest-card {
  background: var(--background);
  padding: 2rem;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .25s;
}
@media (min-width: 1024px) { .fest-card { padding: 2.5rem; } }
.fest-card:hover { background: color-mix(in oklch, var(--muted) 40%, transparent); }
.fest-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.fest-card-num { font-family: var(--font-mono); font-size: 10px; color: var(--muted-foreground); }
.fest-name { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.15; margin-top: 1.5rem; text-wrap: balance; }
.fest-city { color: var(--muted-foreground); margin-top: .75rem; }
.fest-status { margin-top: 1rem; font-size: .875rem; color: color-mix(in oklch, var(--foreground) 80%, transparent); }
.fest-status.won { color: var(--accent); }

/* ---- director ---- */
.director-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) {
  .director-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
  .director-side { position: sticky; top: 8rem; }
}
.director-portrait { aspect-ratio: 4/5; overflow: hidden; background: var(--muted); margin-top: 2rem; }
.director-portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }

/* ---- production ---- */
.dl-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem; row-gap: 2rem;
  border-top: 1px solid var(--border); padding-top: 2.5rem;
}
@media (min-width: 640px) { .dl-grid { grid-template-columns: repeat(3, 1fr); } }
.dl-grid dt { color: var(--muted-foreground); }
.dl-grid dd { font-family: var(--font-display); font-size: 1.25rem; margin-top: .5rem; }

.crew-list { font-family: Arial, Helvetica, sans-serif; font-size: 1.5rem; }
.crew-list li + li { margin-top: .25rem; }

/* ---- gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: .75rem; } }
.gallery-cell { aspect-ratio: 3/4; overflow: hidden; background: var(--muted); }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s; }
.gallery-cell:hover img { transform: scale(1.05); }

/* ---- pullquote ---- */
.pull {
  max-width: 64rem; margin: 0 auto; text-align: center;
}
.pull-quote {
  font-family: sans-serif; font-style: italic;
  font-size: clamp(1.875rem, 5vw, 4rem); line-height: 1.15;
  text-wrap: balance;
}

/* ---- contact ---- */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-items { display: grid; gap: 2rem; align-self: end; }
@media (min-width: 640px) { .contact-items { grid-template-columns: repeat(2, 1fr); } }
.contact-item { display: block; border-top: 1px solid var(--border); padding-top: 1rem; }
.contact-item-value { font-family: Arial, Helvetica, sans-serif; font-size: 1.5rem; margin-top: .5rem; transition: color .2s; }
.contact-item:hover .contact-item-value { color: var(--accent); }

/* ---- footer ---- */
footer { border-top: 1px solid var(--border); padding: 2.5rem 1.5rem; }
@media (min-width: 1024px) { footer { padding: 2.5rem; } }
.foot-inner {
  max-width: 80rem; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-family: var(--font-mono); font-size: .75rem; color: var(--muted-foreground);
}

/* ---- reveal animation ---- */
.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 1.2s ease-out, transform 1.2s ease-out; }
.reveal.shown { opacity: 1; transform: none; }

/* ---- laurel ---- */
.laurel { color: color-mix(in oklch, var(--foreground) 70%, transparent); }
.laurel.won { color: var(--accent); }


.me {
  color: white;
}

.seeimdb {
  color: white;
}