:root {
  --black: #090909;
  --charcoal: #141414;
  --charcoal-2: #1d1b18;
  --cream: #f6efe4;
  --cream-2: #ebe0d0;
  --gold: #d39a4b;
  --gold-light: #efc77e;
  --rust: #a94f2d;
  --white: #fff;
  --text: #1d1b19;
  --muted: #6f685f;
  --line: rgba(36, 27, 18, .13);
  --radius: 28px;
  --shadow: 0 26px 80px rgba(0, 0, 0, .16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--black); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(9, 9, 9, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(211, 154, 75, .16);
}
.nav {
  width: min(var(--max), calc(100% - 34px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 108px;
  height: 58px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
}
.nav-links a {
  position: relative;
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-size: .91rem;
  font-weight: 760;
  letter-spacing: .03em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transition: right .22s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links .contact-nav {
  padding: 10px 16px;
  border: 1px solid rgba(211,154,75,.5);
  border-radius: 999px;
}
.nav-links .contact-nav::after { display: none; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(211,154,75,.45);
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 135px 0 80px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 79% 22%, rgba(211,154,75,.24), transparent 26%),
    radial-gradient(circle at 12% 85%, rgba(169,79,45,.22), transparent 30%),
    linear-gradient(135deg, #050505 0%, #15100a 58%, #080808 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 34px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 65px;
  align-items: center;
}
.hero-logo {
  width: min(430px, 82vw);
  margin-bottom: 27px;
  filter: drop-shadow(0 18px 50px rgba(0,0,0,.35));
}
.kicker,
.eyebrow {
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 12px 0 23px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7vw, 7rem);
  line-height: .92;
  letter-spacing: -.047em;
}
.hero-copy {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}
.btn {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 14px 38px rgba(211,154,75,.22);
}
.btn-outline {
  color: var(--white);
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.28);
}
.btn-dark {
  color: var(--white);
  background: var(--black);
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.torch-stage {
  position: relative;
  width: min(445px, 85vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(211,154,75,.24) 0 28%, transparent 29%),
    radial-gradient(circle, rgba(211,154,75,.11) 0 48%, transparent 49%),
    radial-gradient(circle, rgba(255,255,255,.035) 0 67%, transparent 68%);
  border: 1px solid rgba(211,154,75,.25);
}
.torch-stage::before,
.torch-stage::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(211,154,75,.7), transparent);
  height: 1px;
  width: 125%;
}
.torch-stage::after { transform: rotate(90deg); }
.torch-stage img {
  width: 68%;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.45));
}
.manifesto {
  position: absolute;
  right: -8px;
  bottom: 30px;
  width: 230px;
  padding: 22px;
  color: var(--black);
  background: var(--gold);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.manifesto strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
}
.manifesto span {
  display: block;
  margin-top: 9px;
  font-size: .82rem;
  font-weight: 750;
}

.section {
  padding: 105px 0;
  scroll-margin-top: 88px;
}
.section.dark {
  color: var(--white);
  background: var(--black);
}
.container {
  width: min(var(--max), calc(100% - 34px));
  margin: auto;
}
.section-heading {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 50px;
}
.section-heading h2 {
  margin: 9px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.section-heading p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.dark .section-heading p { color: rgba(255,255,255,.65); }

.about-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 30px;
  align-items: stretch;
}
.about-copy,
.founder-card {
  padding: 42px;
  border-radius: var(--radius);
}
.about-copy {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0,0,0,.07);
}
.about-copy p:first-of-type {
  font-size: 1.25rem;
  color: var(--black);
}
.about-copy p { color: var(--muted); }
.founder-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 27px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(211,154,75,.25), transparent 28%),
    linear-gradient(145deg, #1b1712, #090909);
  box-shadow: var(--shadow);
}
.founder-card img {
  width: 165px;
  aspect-ratio: 1;
  padding: 13px;
  border-radius: 24px;
  object-fit: contain;
  background: #111;
  border: 1px solid rgba(211,154,75,.34);
}
.founder-card h3 {
  margin: 8px 0 10px;
  font-family: Georgia, serif;
  font-size: 2rem;
}
.founder-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
}
.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}
.role-list span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--gold-light);
  border: 1px solid rgba(211,154,75,.25);
  font-size: .75rem;
}

.production-stack {
  display: grid;
  gap: 30px;
}
.production-feature {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.production-feature.reverse {
  grid-template-columns: 1.28fr .72fr;
}
.production-feature.reverse .production-poster { order: 2; }
.production-poster {
  min-height: 520px;
  background: var(--charcoal);
}
.production-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.production-info {
  padding: clamp(38px, 6vw, 68px);
  display: grid;
  align-content: center;
  color: var(--text);
}
.production-info h3 {
  margin: 12px 0 16px;
  color: var(--black);
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: .95;
}
.production-info p {
  color: var(--muted);
  font-size: 1.06rem;
}
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #73451d;
  background: rgba(211,154,75,.16);
  border: 1px solid rgba(211,154,75,.3);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.production-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}
.production-meta span {
  padding: 7px 10px;
  border-radius: 10px;
  background: var(--cream-2);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
}

.other-work {
  margin-top: 70px;
}
.other-work h3,
.development h3 {
  color: var(--black);
  margin: 9px 0 27px;
  font-family: Georgia, serif;
  font-size: 2.7rem;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.work-card {
  min-height: 290px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 23px;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 18%, rgba(211,154,75,.28), transparent 25%),
    linear-gradient(145deg, #231a11, #090909);
  border: 1px solid rgba(211,154,75,.17);
}
.work-card:nth-child(2) {
  background:
    radial-gradient(circle at 15% 20%, rgba(89,103,171,.32), transparent 28%),
    linear-gradient(145deg, #151d37, #090909);
}
.work-card h4 {
  margin: 9px 0 10px;
  font-family: Georgia, serif;
  font-size: 2rem;
}
.work-card p {
  margin: 0;
  color: rgba(255,255,255,.65);
}
.development {
  margin-top: 25px;
  padding: 38px;
  color: var(--text);
  border-radius: var(--radius);
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.dev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.dev-item {
  padding: 17px 19px;
  color: var(--text);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  font-weight: 760;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 270px 270px;
  gap: 17px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  background: var(--charcoal);
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item:last-child { grid-column: 2 / 4; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 46px 20px 18px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,.92));
  font-weight: 780;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(0,0,0,.93);
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 86vh;
  border-radius: 17px;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 23px;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.judging {
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(211,154,75,.26), transparent 26%),
    linear-gradient(135deg, #17130f, #080808);
  box-shadow: var(--shadow);
}
.judging-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
}
.judging-copy,
.judging-cta { padding: clamp(36px, 6vw, 68px); }
.judging-copy h3,
.judging-cta h3 {
  margin: 10px 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}
.judging-copy p { color: rgba(255,255,255,.66); }
.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}
.check-list li {
  display: flex;
  gap: 11px;
}
.check-list li::before {
  content: "✦";
  color: var(--gold);
}
.judging-cta {
  display: grid;
  align-content: center;
  color: var(--black);
  background: var(--gold);
}
.judging-cta p { color: rgba(0,0,0,.68); }

.contact-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 26px;
}
.contact-card,
.contact-form {
  padding: 39px;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
}
.contact-card {
  color: var(--white);
  background: var(--black);
}
.contact-card img {
  width: 180px;
  margin-bottom: 27px;
}
.contact-card h3,
.contact-form h3 {
  margin: 0 0 15px;
  font-family: Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}
.contact-card p { color: rgba(255,255,255,.65); }
.contact-item { margin-top: 23px; }
.contact-item small {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-item a {
  color: var(--white);
  text-decoration: none;
  font-weight: 760;
}
.contact-form { background: var(--white); }
.form-grid { display: grid; gap: 15px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
label {
  display: grid;
  gap: 7px;
  font-size: .88rem;
  font-weight: 760;
}
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fffdf9;
}
textarea {
  min-height: 145px;
  resize: vertical;
}

.site-footer {
  padding: 35px 0;
  color: rgba(255,255,255,.6);
  background: #050505;
}
.footer-inner {
  width: min(var(--max), calc(100% - 34px));
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}
.footer-inner img {
  width: 105px;
  height: 58px;
  object-fit: contain;
}
.footer-copy {
  text-align: right;
  font-size: .88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(23px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: 82px 17px auto;
    display: none;
    padding: 23px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    background: rgba(9,9,9,.98);
    box-shadow: 0 25px 70px rgba(0,0,0,.45);
  }
  .nav-links.open { display: flex; }
  .hero-inner,
  .section-heading,
  .about-grid,
  .production-feature,
  .production-feature.reverse,
  .judging-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .production-feature.reverse .production-poster { order: 0; }
  .hero-art { min-height: 470px; }
  .section-heading { gap: 18px; }
  .founder-card { grid-template-columns: 145px 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 240px 240px;
  }
  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .gallery-item:last-child {
    grid-column: 1 / 3;
  }
}

@media (max-width: 640px) {
  .nav { min-height: 74px; }
  .brand img { width: 92px; height: 50px; }
  .hero { padding-top: 112px; }
  .hero-inner { gap: 26px; }
  .hero-logo { width: 255px; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 4.9rem); }
  .hero-art { min-height: 370px; }
  .torch-stage { width: 300px; }
  .manifesto { width: 175px; right: 0; bottom: 8px; }
  .manifesto strong { font-size: 1.18rem; }
  .section { padding: 76px 0; }
  .about-copy, .founder-card, .development, .contact-card, .contact-form {
    padding: 27px;
  }
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-card img { margin: auto; }
  .role-list { justify-content: center; }
  .production-poster { min-height: 420px; }
  .production-info { padding: 30px 27px; }
  .work-grid, .dev-grid, .form-row { grid-template-columns: 1fr; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 290px;
  }
  .judging-copy, .judging-cta { padding: 31px 27px; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copy { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
.form-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit {
  width: 100%;
  cursor: pointer;
  border: 0;
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.thanks-page {
  min-height: 100vh;
  padding: 125px 20px 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(211,154,75,.25), transparent 28%),
    linear-gradient(135deg, #050505, #18110a 65%, #080808);
}

.thanks-card {
  width: min(680px, 100%);
  padding: clamp(34px, 7vw, 64px);
  text-align: center;
  border-radius: 28px;
  background: rgba(20,20,20,.94);
  border: 1px solid rgba(211,154,75,.28);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}

.thanks-card img {
  width: 185px;
  margin: 0 auto 28px;
}

.thanks-card h1 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: .95;
}

.thanks-card p {
  margin: 0 auto;
  max-width: 540px;
  color: rgba(255,255,255,.7);
  font-size: 1.06rem;
}
