:root {
  --paper: #ffffff;
  --paper-2: #f6f6f6;
  --ink: #111111;
  --muted: #756f68;
  --line: rgba(17, 17, 17, 0.16);
  --accent: #6f1d2b;
  --max: 1700px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { background: var(--accent); color: white; }

.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  transition: opacity .75s ease, visibility .75s ease;
}
.intro p {
  margin: 0;
  font-size: clamp(.72rem, 1vw, .95rem);
  font-weight: 500;
  letter-spacing: .34em;
  animation: introText 1.35s ease both;
}
.intro.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes introText {
  0% { opacity: 0; transform: translateY(8px); }
  35%, 73% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-5px); }
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 34px;
  mix-blend-mode: multiply;
}
.brand {
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .14em;
}
.desktop-nav {
  display: flex;
  gap: 26px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav a, .social-links a {
  position: relative;
}
.desktop-nav a::after, .social-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.desktop-nav a:hover::after, .social-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: .73rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--paper);
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  font-size: clamp(2.5rem, 12vw, 5rem);
  line-height: .95;
  letter-spacing: -.05em;
}
.mobile-menu.open { display: flex; }

main, footer { max-width: var(--max); margin: 0 auto; }
.section { padding-left: 6vw; padding-right: 6vw; }

.hero {
  min-height: 100svh;
  padding-top: 128px;
  padding-bottom: 42px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.30), rgba(0,0,0,.12) 45%, rgba(0,0,0,.52)),
    linear-gradient(to right, rgba(0,0,0,.28), transparent 60%);
}
.hero > *:not(.hero-video):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}
.hero-content {
  align-self: center;
  max-width: 1000px;
}
.hero-film-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-kicker, .section-heading > span, .about-label, .label {
  color: var(--muted);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .19em;
}
.hero-title {
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  font-size: clamp(3.6rem, 9vw, 9rem);
  line-height: .82;
  letter-spacing: -.065em;
  font-weight: 500;
}
.hero-title .accent {
  margin-left: 4.5vw;
  color: #ffffff;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  align-items: end;
  gap: 40px;
}
.hero-tagline {
  margin: 0;
  font-size: clamp(.76rem, 1vw, .98rem);
  font-weight: 600;
  letter-spacing: .27em;
}
.hero-copy {
  margin: 22px 0 0;
  max-width: 620px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.4rem);
  line-height: 1.65;
  font-weight: 300;
}
.scroll-link {
  position: absolute;
  right: 6vw;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marquee 25s linear infinite;
  font-size: .72rem;
  letter-spacing: .2em;
}
.marquee-track i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.stories { padding-top: 150px; padding-bottom: 160px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 8rem);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 500;
}
.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .7fr);
  gap: 48px;
  align-items: end;
}
.lead-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 34%, rgba(255,255,255,.15), transparent 22%),
    linear-gradient(150deg, #7d1e2e 0%, #4c111c 48%, #161616 100%);
}
.visual-noise {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.visual-copy {
  position: absolute;
  inset: auto 34px 34px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.visual-copy span {
  font-size: .67rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.visual-copy strong {
  max-width: 500px;
  font-size: clamp(2.2rem, 5vw, 6rem);
  line-height: .85;
  letter-spacing: -.06em;
  text-align: right;
}
.story-copy h3, .story-card h3, .person-card h3 {
  margin: 18px 0 20px;
  font-size: clamp(2rem, 3.3vw, 4rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 500;
}
.story-copy > p:not(.label), .story-card > p:not(.label), .final-card > p:not(.label) {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}
.text-link {
  display: inline-block;
  margin-top: 25px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.story-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.story-card {
  min-height: 420px;
  padding: 30px 34px 34px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.story-card + .story-card { padding-left: 34px; }
.story-card:last-child { border-right: 0; }
.story-index { margin-bottom: auto; color: var(--accent); font-size: .72rem; }
.coming { margin-top: auto; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; }

.manifesto {
  min-height: 82svh;
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.manifesto-small {
  margin: 0 0 25px;
  color: rgba(243,239,233,.55);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 4.5rem);
}
.manifesto-large {
  margin: 0;
  font-size: clamp(4.6rem, 11vw, 11rem);
  line-height: .86;
  letter-spacing: -.075em;
}

.people { padding-top: 150px; padding-bottom: 160px; }
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.person-portrait {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.person-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.28), transparent 45%);
}
.person-portrait span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: white;
  font-size: .7rem;
  letter-spacing: .14em;
}
.portrait-one { background: linear-gradient(145deg, #282828, #78716d 45%, #d3c8bc); }
.portrait-two { background: linear-gradient(145deg, #6f1d2b, #b8978f 50%, #e3dbd4); }
.portrait-three { background: linear-gradient(145deg, #1c2422, #59645e 48%, #cabfae); }
.person-card .label { margin-top: 22px; }
.person-card h3 { font-size: clamp(1.7rem, 2.5vw, 3rem); }

.about {
  padding-top: 150px;
  padding-bottom: 170px;
  border-top: 1px solid var(--line);
}
.about-copy {
  max-width: 1280px;
  margin: 70px 0 0;
  font-size: clamp(2.6rem, 5.5vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 300;
}
.about-copy.secondary {
  max-width: 920px;
  margin-left: auto;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 4.6rem);
}

.final-cta { padding-top: 0; padding-bottom: 130px; }
.final-card {
  min-height: 540px;
  padding: clamp(32px, 6vw, 90px);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, transparent 0 57%, rgba(111,29,43,.065) 57% 100%);
}
.final-card h2 {
  max-width: 1000px;
  margin: 20px 0 18px;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 500;
}
.social-links {
  display: flex;
  gap: 26px;
  margin-top: 35px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

footer {
  border-top: 1px solid var(--line);
  padding: 55px 6vw 28px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.7;
  letter-spacing: .05em;
}
.footer-brand {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .11em;
}
.footer-right { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .95s ease, transform .95s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .header { padding: 20px; mix-blend-mode: normal; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .section { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 110px; }
  .hero-content { align-self: end; padding-bottom: 45px; }
  .hero-title { font-size: clamp(3.2rem, 17vw, 6.2rem); }
  .hero-title .accent { margin-left: 0; }
  .hero-meta { grid-template-columns: 1fr; gap: 25px; }
  .scroll-link { display: none; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 50px; }
  .lead-story { grid-template-columns: 1fr; }
  .lead-visual { min-height: 520px; }
  .visual-copy { inset: auto 20px 22px; flex-direction: column; align-items: flex-start; }
  .visual-copy strong { text-align: left; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card, .story-card + .story-card {
    min-height: 340px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .people-grid { grid-template-columns: 1fr; gap: 55px; }
  .manifesto { min-height: 70svh; }
  .about-copy { margin-top: 48px; }
  footer { flex-direction: column; }
  .footer-right { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

.hero .hero-kicker,
.hero .hero-copy,
.hero .scroll-link {
  color: rgba(255,255,255,.82);
}
