@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Noto+Sans+KR:wght@300;400;500;600&display=swap');

:root {
  --bg: #080808;
  --panel: #111;
  --text: #f3f3f0;
  --muted: #969692;
  --line: rgba(255,255,255,.15);
  --accent: #d3ff31;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.film-grain {
  position: fixed;
  inset: -50%;
  z-index: 999;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  animation: grain .22s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); }
  25% { transform: translate(2%,-3%); }
  50% { transform: translate(-3%,2%); }
  75% { transform: translate(3%,4%); }
  100% { transform: translate(-2%,-2%); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4vw;
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: flex; gap: 3px; }
.brand-mark span {
  display: block;
  width: 9px;
  height: 22px;
  border: 1px solid var(--text);
}
.brand-mark span:last-child { transform: translateY(5px); }
.brand-name { font-size: 12px; font-weight: 600; letter-spacing: .16em; }
.site-nav { display: flex; gap: 34px; }
.site-nav a {
  position: relative;
  font-size: 11px;
  letter-spacing: .16em;
  color: #d9d9d5;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 25px; height: 1px; background: #fff; margin: 6px 0; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.92)),
    radial-gradient(circle at 68% 35%, #373b37 0, #111 34%, #060606 72%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(102deg, transparent 0 48%, rgba(255,255,255,.08) 49%, transparent 56%),
    repeating-linear-gradient(90deg, transparent 0 11vw, rgba(255,255,255,.018) 11vw calc(11vw + 1px));
}
.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .15;
}
.hero-light-one { width: 34vw; height: 34vw; background: #c9e899; right: -7%; top: 18%; }
.hero-light-two { width: 22vw; height: 22vw; background: #8496bd; left: 12%; bottom: -8%; }

.hero-content { width: min(92vw, 1400px); text-align: center; }
.eyebrow {
  margin: 0 0 25px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(62px, 11.5vw, 190px);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 500;
}
.hero h1 span { display: block; }
.hero h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.62);
  transform: translateX(.025em);
}
.hero-copy {
  margin: 48px auto 0;
  color: #b8b8b3;
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: .04em;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: .25em;
  color: #aaa;
}
.scroll-cue i { width: 1px; height: 46px; background: var(--line); overflow: hidden; }
.scroll-cue i::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: var(--accent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { from { transform: translateY(-22px); } to { transform: translateY(50px); } }

.section {
  max-width: var(--max);
  margin: auto;
  padding: 150px 5vw;
  border-top: 1px solid var(--line);
}
.section-number {
  margin-bottom: 58px;
  color: #565653;
  font-size: 12px;
  letter-spacing: .2em;
}
.section-heading h2 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 94px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.about {
  display: grid;
  grid-template-columns: .3fr 1.2fr .85fr;
  gap: 50px;
  align-items: start;
}
.about .section-number { grid-column: 1; }
.about .section-heading { grid-column: 2; }
.about-copy {
  grid-column: 3;
  padding-top: 38px;
  color: #aaa;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}
.about-copy p + p { margin-top: 28px; }

.films .section-heading { margin-bottom: 70px; }
.film-card { display: grid; grid-template-columns: 1.25fr .75fr; background: var(--panel); min-height: 620px; }
.film-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.05)),
    linear-gradient(165deg, #151515, #303030 58%, #090909);
}
.film-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 68% 38%, rgba(228,218,168,.18), transparent 30%);
}
.door {
  position: absolute;
  right: 10%;
  top: 8%;
  width: 34%;
  height: 88%;
  border: 2px solid rgba(255,255,255,.2);
  background: linear-gradient(110deg, #090909 15%, #1b1b19);
  box-shadow: -35px 0 90px rgba(0,0,0,.65);
}
.door::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 51%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c1b879;
  box-shadow: 0 0 18px #c1b879;
}
.hallway-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg, transparent 0 41%, rgba(255,255,255,.08) 41.1% 41.3%, transparent 41.4%);
}
.coming-soon {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 28px;
  font-size: 10px;
  letter-spacing: .22em;
}
.film-info { padding: 52px 48px; display: flex; flex-direction: column; justify-content: space-between; }
.film-meta { color: var(--accent); font-size: 9px; letter-spacing: .18em; }
.film-info h3 { margin: 14px 0 0; font-size: clamp(38px, 4vw, 65px); font-weight: 400; letter-spacing: -.05em; }
.film-logline { color: #aaa; line-height: 1.9; font-family: "Noto Sans KR"; font-size: 14px; font-weight: 300; }
.film-status { border-top: 1px solid var(--line); padding-top: 23px; display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .15em; }
.film-status span { color: #777; }
.film-status strong { font-weight: 500; }

.director-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; margin-top: 70px; align-items: center; }
.director-portrait {
  aspect-ratio: 4 / 5;
  display: grid;
  place-content: center;
  text-align: center;
  color: #5e5e5a;
  background:
    linear-gradient(155deg, rgba(255,255,255,.04), transparent),
    #121212;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .18em;
}
.director-portrait small { margin-top: 10px; font-size: 8px; color: #444; }
.director-copy { max-width: 630px; }
.director-copy .lead { font-size: clamp(24px, 2.8vw, 40px); line-height: 1.45; letter-spacing: -.04em; }
.director-copy > p:not(.lead) { color: #aaa; font: 300 15px/1.9 "Noto Sans KR"; }
blockquote {
  margin: 55px 0 0;
  padding: 25px 0 0 28px;
  border-left: 1px solid var(--accent);
  color: #d7d7d2;
  font: 300 clamp(18px, 2vw, 25px)/1.65 "Noto Sans KR";
}

.contact {
  padding: 180px 5vw 120px;
  background: #d6ff35;
  color: #080808;
}
.contact-inner { max-width: var(--max); margin: auto; }
.contact .eyebrow { color: #080808; }
.contact h2 {
  margin: 0 0 78px;
  font-size: clamp(58px, 10.5vw, 154px);
  line-height: .88;
  letter-spacing: -.075em;
  font-weight: 500;
}
.email-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(0,0,0,.45);
  border-bottom: 1px solid rgba(0,0,0,.45);
  font-size: clamp(17px, 2.5vw, 34px);
  letter-spacing: -.03em;
}
.email-link span { transition: transform .25s ease; }
.email-link:hover span { transform: translate(8px,-8px); }
.contact-note { margin: 15px 0 0; font: 12px "Noto Sans KR"; opacity: .58; }

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 4vw;
  color: #72726e;
  font-size: 9px;
  letter-spacing: .16em;
}

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 28px;
    text-align: center;
    background: rgba(8,8,8,.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; }
  .site-nav a { font-size: 25px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .about { grid-template-columns: 1fr; }
  .about .section-number, .about .section-heading, .about-copy { grid-column: 1; }
  .about-copy { max-width: 640px; }
  .film-card { grid-template-columns: 1fr; }
  .film-info { min-height: 480px; }
  .director-grid { grid-template-columns: 1fr; }
  .director-portrait { max-width: 520px; }
}

@media (max-width: 600px) {
  .site-header { padding: 20px; }
  .brand-name { font-size: 10px; }
  .hero h1 { font-size: clamp(57px, 19vw, 92px); line-height: .84; }
  .hero-copy { margin-top: 34px; }
  .section { padding: 105px 22px; }
  .section-number { margin-bottom: 35px; }
  .section-heading h2 { font-size: 44px; }
  .film-card, .film-visual { min-height: 470px; }
  .film-info { padding: 36px 27px; min-height: 520px; }
  .contact { padding: 115px 22px 80px; }
  .contact h2 { margin-bottom: 60px; }
  footer { padding: 24px 20px; gap: 20px; }
}

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