* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #030303;
  color: #f7efe6;
  font-family: Arial, Helvetica, sans-serif;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  padding: 14px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(3, 3, 3, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand img {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #f7efe6;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
}

.nav nav a:hover {
  color: #ff5a1f;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: start center;
  padding: clamp(36px, 6vh, 72px) 24px clamp(64px, 8vh, 108px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.9)),
    radial-gradient(circle at 50% 38%, rgba(255,90,31,.32), transparent 32%),
    radial-gradient(circle at 15% 70%, rgba(255,90,31,.22), transparent 26%),
    #030303;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95), transparent 48%, rgba(0,0,0,.75)),
    url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  opacity: .22;
  filter: grayscale(100%) contrast(1.2);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-top: clamp(8px, 3vh, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  display: block;
  width: min(620px, 86vw);
  height: auto;
  margin: 0 auto clamp(16px, 2.4vh, 30px);
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 0 42px rgba(255,90,31,.45));
}

.eyebrow {
  margin: 0 0 16px;
  color: #ff5a1f;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 900;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.hero h1 + .eyebrow {
  margin: 16px 0 0;
}

.hero-text {
  max-width: 720px;
  margin: 16px auto 28px;
  color: #d8cfc3;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.45;
}

.button {
  display: inline-block;
  padding: 15px 28px;
  border: 1px solid #ff5a1f;
  color: #ff5a1f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 900;
}

.button:hover {
  background: #ff5a1f;
  color: #030303;
}

.proof-bar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  border-top: 1px solid rgba(255,90,31,.3);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.proof-bar p {
  margin: 0;
  color: #f7efe6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2;
}

.proof-bar p + p {
  color: #aaa;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 90px 28px;
}

h2 {
  margin: 0 0 30px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.section-note {
  max-width: 660px;
  margin: -10px 0 34px;
  color: #aaa;
  font-size: 17px;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card-link { color: inherit; text-decoration: none; }

.card {
  height: 100%;
  min-height: 310px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,.92)),
    radial-gradient(circle at top left, rgba(255,90,31,.28), transparent 42%),
    #101010;
}

.card-link:hover .card,
.card-link:focus-visible .card {
  border-color: #ff5a1f;
  transform: translateY(-5px);
  transition: .25s ease;
}

.card p {
  margin: 0 0 8px;
  color: #ff5a1f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 900;
}

.card h3 {
  margin: 0;
  color: white;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.split {
  max-width: 1220px;
  margin: 0 auto;
  padding: 90px 28px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.split p {
  color: #d8cfc3;
  font-size: 21px;
  line-height: 1.65;
}

.credits-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 76px 28px 100px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255,90,31,.28);
  border-left: 1px solid rgba(255,90,31,.28);
}

.credits-grid article {
  min-height: 260px;
  padding: 26px;
  position: relative;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-end;
  border-right: 1px solid rgba(255,90,31,.28);
  border-bottom: 1px solid rgba(255,90,31,.28);
  background: linear-gradient(145deg, rgba(255,90,31,.09), transparent 58%);
}

.credits-grid span {
  color: #ff5a1f;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 900;
}

.credit-card {
  overflow: hidden;
}

.credit-card > span {
  position: absolute;
  top: 24px;
  left: 26px;
}

.credit-card h3 {
  margin: 0 0 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .92;
}

.credit-media {
  flex: 0 0 180px;
  min-height: 180px;
  display: grid;
  place-items: center;
}

.credit-media img {
  display: block;
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  border: 1px solid rgba(255,90,31,.35);
  box-shadow: 0 22px 50px rgba(0,0,0,.34);
  filter: saturate(.94) contrast(1.04);
  background: rgba(0,0,0,.36);
}

.credit-card-hill .credit-media img {
  width: 128px;
  height: 182px;
  padding: 6px;
  background: rgba(0,0,0,.42);
}

.credit-card-festival .credit-media img {
  width: 160px;
  height: 160px;
  background: rgba(0,0,0,.42);
}

.credit-card-vmi .credit-media {
  flex-basis: 230px;
}

.credit-card-vmi .credit-media img {
  width: 230px;
  padding: 18px;
  background: #050505;
  filter: none;
}

.credits-grid p {
  margin: 0;
  color: #f7efe6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.18;
}

.credit-card-names {
  align-items: flex-end;
  background:
    linear-gradient(145deg, rgba(255,90,31,.12), transparent 62%),
    radial-gradient(circle at 80% 15%, rgba(255,90,31,.14), transparent 42%);
}

.credit-card-names > div {
  max-width: 560px;
}

.contact-panel {
  padding: 100px 28px;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.94)),
    radial-gradient(circle at 50% 45%, rgba(255,90,31,.22), transparent 36%),
    #070707;
  border-top: 1px solid rgba(255,255,255,.1);
}

.contact-panel h2,
.contact-panel p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.contact-panel p {
  color: #d8cfc3;
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 34px;
}

footer {
  padding: 58px 28px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
}

footer img {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto 20px;
  background: transparent;
}

.card-forever {
  background:
    linear-gradient(rgba(0,0,0,.16), rgba(0,0,0,.94)),
    url("assets/forever-tree/poster.jpg") center 28% / cover no-repeat;
}

.card-crow {
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.92)),
    url("assets/crow-flies/village-night.jpg") center / cover no-repeat;
}

.card-sidd {
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.94)),
    url("assets/sidd/los-misterios.jpg") center / cover no-repeat;
}

.card-hell {
  background:
    linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.92)),
    url("assets/forty-minutes/nolan-sideline.jpg?v=2") 32% center / cover no-repeat;
}

.card-loren {
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.94)),
    url("assets/finding-loren/poster.jpg") center 32% / cover no-repeat;
}

.card-strings {
  background:
    linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,.94)),
    url("assets/strings/hero.jpg") center / cover no-repeat;
}

.card span {
  margin-top: 24px;
  color: #d8cfc3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 800;
}

.project-page .nav { position: relative; }

.project-hero {
  min-height: 68vh;
  padding: clamp(90px, 14vw, 180px) 28px 90px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.45)), radial-gradient(circle at 75% 35%, rgba(255,90,31,.32), transparent 34%), #070707;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.project-hero::after {
  content: "";
  position: absolute;
  width: min(540px, 60vw);
  aspect-ratio: 1;
  right: -12%;
  top: -30%;
  border: 1px solid rgba(255,90,31,.18);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(255,90,31,.12);
}

.project-hero-inner { width: 100%; max-width: 1164px; margin: 0 auto; position: relative; z-index: 1; }

.project-hero h1 {
  max-width: 1000px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(54px, 10vw, 138px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.project-details {
  max-width: 1220px;
  margin: 0 auto;
  padding: 90px 28px;
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 8vw, 120px);
}

.project-meta { margin: 0; }
.project-meta div { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.project-meta dt { color: #ff5a1f; text-transform: uppercase; letter-spacing: 2px; font-size: 10px; font-weight: 900; }
.project-meta dd { margin: 8px 0 0; color: #f7efe6; font-size: 15px; }
.project-copy .lead { margin: 0 0 28px; color: #f7efe6; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 4vw, 46px); line-height: 1.2; }
.project-copy p:not(.lead) { max-width: 700px; color: #bdb4aa; font-size: 18px; line-height: 1.7; }
.project-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.text-link { display: inline-flex; align-items: center; padding: 15px 4px; color: #d8cfc3; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 800; }
.text-link:hover { color: #ff5a1f; }

.teaser-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 28%, rgba(255,90,31,.16), transparent 32%),
    linear-gradient(135deg, #020202, #0a0706 58%, #020202);
}

.teaser-shell {
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 96px) 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.teaser-copy {
  max-width: 850px;
}

.teaser-copy h1 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(58px, 10vw, 154px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.teaser-copy .lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: #d8cfc3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.2;
}

.teaser-private-note {
  max-width: 620px;
  margin: 26px 0 0;
  color: #aaa19a;
  font-size: 16px;
  line-height: 1.7;
}

.teaser-art {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.teaser-art::before {
  content: "";
  position: absolute;
  inset: 9% -9% -7% 12%;
  border: 1px solid rgba(255,90,31,.34);
  background: radial-gradient(circle at 50% 40%, rgba(255,90,31,.16), transparent 62%);
}

.teaser-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  box-shadow: 0 36px 90px rgba(0,0,0,.64);
  border: 1px solid rgba(255,255,255,.1);
}

.teaser-art-wide img {
  aspect-ratio: 16 / 10;
}

.teaser-art-poster img {
  aspect-ratio: 2 / 3;
}

.teaser-access {
  margin-top: 38px;
  padding: 22px;
  max-width: 640px;
  border: 1px solid rgba(255,90,31,.24);
  background: rgba(255,90,31,.06);
}

.teaser-access p {
  margin: 0 0 18px;
  color: #cfc6ba;
  line-height: 1.6;
}

.teaser-page footer {
  border-top-color: rgba(255,90,31,.18);
}

.forever-tree-page {
  --forest: #111913;
  --paper: #e8ddba;
}

.forever-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(420px, 1.22fr);
  position: relative;
  overflow: hidden;
  background: #020403;
}

.forever-hero-art {
  min-height: 720px;
  background: linear-gradient(90deg, transparent 65%, #020403 100%), url("assets/forever-tree/poster.jpg") center top / cover no-repeat;
}

.forever-hero-copy {
  padding: 11vw 6vw 8vw 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 10% 48%, rgba(255,90,31,.12), transparent 34%);
}

.forever-hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(76px, 11vw, 164px);
  font-weight: 900;
  line-height: .75;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.forever-cast {
  max-width: 640px;
  margin: 36px 0 10px;
  color: #c6bfb5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  line-height: 1.8;
}

.button-solid { background: #ff5a1f; color: #030303; }
.button-solid:hover { background: #f7efe6; border-color: #f7efe6; }

.film-section { max-width: 1280px; margin: 0 auto; padding: clamp(76px, 10vw, 140px) 28px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading .eyebrow { align-self: flex-start; }

.trailer-section { max-width: 1440px; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #0a0a0a; border: 1px solid rgba(255,90,31,.25); box-shadow: 0 30px 100px rgba(0,0,0,.8), 0 0 80px rgba(255,90,31,.08); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.forever-story { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(54px, 9vw, 130px); align-items: center; border-top: 1px solid rgba(255,255,255,.08); }
.forever-poster-wrap { position: relative; }
.forever-poster-wrap::before { content: ""; position: absolute; inset: 8% -8% -6% 10%; z-index: -1; border: 1px solid rgba(255,90,31,.35); }
.forever-poster-wrap img { display: block; width: 100%; box-shadow: 0 28px 70px rgba(0,0,0,.65); }
.forever-story-copy .lead { margin: 0 0 30px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(29px, 4vw, 48px); line-height: 1.18; }
.forever-story-copy > p:not(.eyebrow):not(.lead) { color: #bdb4aa; font-size: 18px; line-height: 1.75; }
.inline-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }

.gallery-section { max-width: 1440px; }
.compact-heading { max-width: 1000px; }
.forever-gallery { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.forever-gallery figure { margin: 0; position: relative; overflow: hidden; min-height: 360px; background: #0c0c0c; }
.forever-gallery .gallery-wide { grid-row: span 2; }
.forever-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.forever-gallery figure:hover img { transform: scale(1.025); }
.forever-gallery figcaption { position: absolute; left: 18px; bottom: 16px; padding: 8px 10px; background: rgba(0,0,0,.72); color: #eee4da; text-transform: uppercase; letter-spacing: 2px; font-size: 9px; }

.creators-section { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); gap: clamp(54px, 9vw, 120px); align-items: center; }
.creators-photo img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.72) contrast(1.06); }
.creators-copy p:not(.eyebrow) { color: #bdb4aa; font-size: 18px; line-height: 1.72; }

.project-next { padding: 100px 28px; text-align: center; border-top: 1px solid rgba(255,255,255,.1); background: radial-gradient(circle at 50% 100%, rgba(255,90,31,.18), transparent 45%); }
.project-next a { display: inline-flex; flex-direction: column; color: #f7efe6; text-decoration: none; text-transform: uppercase; font-size: clamp(48px, 8vw, 104px); font-weight: 900; letter-spacing: -.05em; line-height: .9; }
.project-next a span { margin-bottom: 16px; color: #ff5a1f; letter-spacing: 3px; font-size: 10px; }
.project-next a:hover { color: #ff5a1f; }

.crow-page { --crow-blue: #42b7e9; --crow-red: #ef263f; --crow-cream: #eee8dc; background: #05070b; }
.crow-page .eyebrow { color: var(--crow-blue); }
.crow-page .text-link:hover { color: var(--crow-blue); }

.crow-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: url("assets/crow-flies/village-night.jpg") center / cover no-repeat;
}

.crow-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #05070b 0%, rgba(5,7,11,.3) 62%, rgba(5,7,11,.18) 100%); }
.crow-hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,7,11,.88) 0%, transparent 60%); }
.crow-hero-copy { width: 100%; max-width: 1340px; margin: 0 auto; padding: 120px 30px 86px; position: relative; z-index: 2; }
.crow-hero h1 { max-width: 1050px; font-family: Arial, Helvetica, sans-serif; font-size: clamp(72px, 11vw, 158px); font-weight: 950; line-height: .76; letter-spacing: -.075em; text-transform: uppercase; text-shadow: 0 12px 50px rgba(0,0,0,.65); }
.crow-hero h1 span { display: block; margin: 0 0 12px 6px; color: var(--crow-blue); font-size: .25em; letter-spacing: .08em; }
.crow-hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; color: #d0d4da; font-size: 18px; }
.crow-button { border-color: var(--crow-blue); color: var(--crow-blue); }
.crow-button:hover { background: var(--crow-blue); color: #05070b; }

.crow-section { max-width: 1340px; margin: 0 auto; padding: clamp(76px, 10vw, 140px) 30px; }
.crow-section-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.crow-section-title h2 { margin: 0; }
.crow-canva-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(66,183,233,.35);
  background:
    radial-gradient(circle at center, rgba(66,183,233,.13), transparent 48%),
    url("assets/crow-flies/village-night.jpg") center / cover no-repeat,
    #0a0d13;
  box-shadow: 0 30px 110px rgba(0,0,0,.8);
  overflow: hidden;
}

.crow-canva-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.crow-embed-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(66,183,233,.24);
  background: rgba(5,7,11,.82);
}

.crow-embed-note p {
  margin: 0;
  color: #aeb4bd;
  font-size: 14px;
  line-height: 1.6;
}

.crow-embed-note .button {
  flex: 0 0 auto;
  padding: 11px 18px;
}

.crow-story { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(60px, 10vw, 140px); align-items: center; border-top: 1px solid rgba(255,255,255,.08); }
.crow-book-stack { min-height: 660px; position: relative; }
.crow-main-cover { width: min(82%, 460px); position: absolute; left: 0; top: 0; z-index: 2; box-shadow: 0 35px 90px rgba(0,0,0,.72); }
.crow-85-cover { width: min(46%, 230px); position: absolute; right: 0; bottom: 0; z-index: 3; box-shadow: 0 25px 60px rgba(0,0,0,.7); transform: rotate(4deg); }
.crow-story-copy .lead { margin: 0 0 30px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 49px); line-height: 1.18; }
.crow-story-copy > p:not(.eyebrow):not(.lead) { color: #aeb4bd; font-size: 18px; line-height: 1.75; }

.crow-world { max-width: 1600px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr .65fr; align-items: stretch; background: #0b0e14; border-top: 1px solid rgba(66,183,233,.18); border-bottom: 1px solid rgba(66,183,233,.18); }
.crow-panorama img { display: block; width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.crow-world-copy { padding: clamp(54px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.crow-world-copy p:not(.eyebrow) { color: #aeb4bd; font-size: 18px; line-height: 1.7; }

.crow-scenes { max-width: 1600px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.crow-scenes figure { margin: 0; position: relative; overflow: hidden; background: #080a0e; }
.crow-scenes img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .6s ease; }
.crow-scenes figure:hover img { transform: scale(1.025); }
.crow-scenes figcaption { position: absolute; left: 18px; bottom: 16px; padding: 8px 10px; background: rgba(0,0,0,.72); color: #dce4ed; text-transform: uppercase; letter-spacing: 2px; font-size: 9px; }

.crow-author { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: clamp(60px, 10vw, 140px); align-items: center; }
.crow-author-photo { position: relative; }
.crow-author-photo::after { content: ""; position: absolute; inset: 7% -7% -7% 9%; z-index: -1; border: 1px solid rgba(66,183,233,.5); }
.crow-author-photo img { display: block; width: 100%; filter: saturate(.8) contrast(1.06); }
.crow-author-copy > p:not(.eyebrow) { color: #aeb4bd; font-size: 18px; line-height: 1.75; }

.crow-world-build { max-width: 1500px; margin: 0 auto 120px; position: relative; background: var(--crow-cream); color: #101218; overflow: hidden; }
.crow-world-build img { display: block; width: 100%; }
.crow-world-build > div { position: absolute; left: 5%; bottom: 8%; max-width: 470px; padding: 28px; background: rgba(5,7,11,.92); color: #f7efe6; }
.crow-world-build > div p:not(.eyebrow) { color: #bdc3ca; line-height: 1.6; }

.crow-page .project-next { background: radial-gradient(circle at 50% 100%, rgba(66,183,233,.2), transparent 48%); }
.crow-page .project-next a span, .crow-page .project-next a:hover { color: var(--crow-blue); }

.sidd-page { --sidd-gold: #d6a84c; --sidd-cream: #eee7d5; --sidd-earth: #5e3424; background: #080706; }
.sidd-page .eyebrow { color: var(--sidd-gold); }
.sidd-page .text-link:hover { color: var(--sidd-gold); }
.sidd-button { border-color: var(--sidd-gold); color: var(--sidd-gold); }
.sidd-button:hover { background: var(--sidd-gold); color: #080706; }

.sidd-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,7,6,.96) 0%, rgba(8,7,6,.48) 52%, rgba(8,7,6,.12) 100%),
    linear-gradient(0deg, #080706 0%, transparent 45%),
    url("assets/sidd/los-misterios.jpg") center / cover no-repeat;
}

.sidd-hero::after { content: ""; position: absolute; width: min(58vw, 860px); aspect-ratio: 1; right: -14%; top: -35%; border: 1px solid rgba(214,168,76,.25); border-radius: 50%; box-shadow: 0 0 130px rgba(214,168,76,.1); }
.sidd-hero-copy { width: 100%; max-width: 1320px; margin: 0 auto; padding: 120px 30px 96px; position: relative; z-index: 2; }
.sidd-hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(120px, 22vw, 330px); font-weight: 400; line-height: .68; letter-spacing: -.085em; text-transform: uppercase; }
.sidd-hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 42px 0 0; color: #d1c8b8; font-family: Georgia, "Times New Roman", serif; font-size: clamp(22px, 3vw, 34px); line-height: 1.35; }

.sidd-section { max-width: 1300px; margin: 0 auto; padding: clamp(78px, 10vw, 140px) 30px; }
.sidd-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(64px, 9vw, 130px); border-bottom: 1px solid rgba(255,255,255,.08); }
.sidd-story-intro { position: sticky; top: 110px; align-self: start; }
.sidd-story-copy .lead { margin: 0 0 34px; color: var(--sidd-cream); font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.22; }
.sidd-story-copy > p:not(.lead) { color: #b7afa2; font-size: 18px; line-height: 1.76; }

.sidd-passage { max-width: 1600px; min-height: 480px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; background: #11100c; }
.sidd-passage-image img { display: block; width: 100%; height: 100%; min-height: 480px; object-fit: cover; filter: sepia(.15) saturate(.75) contrast(1.08); }
.sidd-passage-copy { padding: clamp(50px, 8vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.sidd-passage-copy span { padding: 13px 0; color: var(--sidd-cream); font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 58px); border-bottom: 1px solid rgba(214,168,76,.22); }

.sidd-dual-worlds { max-width: 1600px; margin: 0 auto; padding: 22px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.sidd-dual-worlds figure { min-height: 520px; margin: 0; position: relative; overflow: hidden; background: #111; }
.sidd-dual-worlds img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.sidd-dual-worlds figure:hover img { transform: scale(1.035); }
.sidd-dual-worlds figcaption { position: absolute; left: 24px; bottom: 20px; padding: 10px 12px; background: rgba(8,7,6,.82); color: var(--sidd-cream); text-transform: uppercase; letter-spacing: 3px; font-size: 10px; }

.sidd-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 64px; }
.sidd-section-heading h2 { margin: 0; }
.character-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(214,168,76,.3); border-left: 1px solid rgba(214,168,76,.3); }
.character-grid article { min-height: 310px; padding: 30px; border-right: 1px solid rgba(214,168,76,.3); border-bottom: 1px solid rgba(214,168,76,.3); background: linear-gradient(145deg, rgba(214,168,76,.06), transparent 55%); }
.character-grid span { color: var(--sidd-gold); font-size: 11px; letter-spacing: 2px; }
.character-grid h3 { margin: 70px 0 16px; color: var(--sidd-cream); font-family: Georgia, "Times New Roman", serif; font-size: 38px; font-weight: 400; }
.character-grid p { color: #aaa295; line-height: 1.6; }

.sidd-community { max-width: 1600px; min-height: 620px; margin: 0 auto; position: relative; overflow: hidden; }
.sidd-community::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,6,.95), transparent 70%); }
.sidd-community img { width: 100%; min-height: 620px; object-fit: cover; }
.sidd-community > div { position: absolute; left: clamp(28px, 8vw, 120px); bottom: 60px; z-index: 2; }
.sidd-community h2 { margin: 0; max-width: 980px; }

.sidd-director { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(64px, 10vw, 140px); align-items: center; }
.sidd-director-photo { position: relative; }
.sidd-director-photo::after { content: ""; position: absolute; inset: 8% -8% -7% 10%; z-index: -1; border: 1px solid rgba(214,168,76,.5); }
.sidd-director-photo img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.sidd-director-copy > p:not(.eyebrow) { color: #b7afa2; font-size: 18px; line-height: 1.76; }

.writer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.writer-grid article { display: grid; grid-template-columns: .72fr 1fr; align-items: end; overflow: hidden; background: #11100d; border: 1px solid rgba(214,168,76,.2); }
.writer-grid img { width: 100%; height: 440px; object-fit: cover; object-position: center top; }
.writer-grid article:first-child img { object-position: 48% top; }
.writer-grid article > div { padding: 28px; }
.writer-grid h3 { margin: 0 0 16px; color: var(--sidd-cream); font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 400; }
.writer-grid p { color: #a9a194; line-height: 1.6; }
.sidd-cta { max-width: 880px; margin: 60px auto 0; text-align: center; }
.sidd-cta > p { color: #b7afa2; font-family: Georgia, "Times New Roman", serif; font-size: clamp(23px, 3vw, 34px); line-height: 1.45; }
.sidd-cta .project-actions { justify-content: center; }

.sidd-page .project-next { background: radial-gradient(circle at 50% 100%, rgba(214,168,76,.2), transparent 48%); }
.sidd-page .project-next a span, .sidd-page .project-next a:hover { color: var(--sidd-gold); }

.hell-page { --hell-red: #b90018; --hell-hot: #ff263d; --hell-wood: #c77a38; --hell-cream: #f5eadc; background: #050304; }
.hell-page .eyebrow { color: var(--hell-hot); }
.hell-page .text-link:hover { color: var(--hell-hot); }
.hell-button { border-color: var(--hell-hot); color: var(--hell-hot); }
.hell-button:hover { background: var(--hell-hot); color: #050304; }

.hell-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,3,4,.96) 0%, rgba(5,3,4,.64) 48%, rgba(5,3,4,.86) 100%),
    linear-gradient(0deg, #050304 0%, rgba(5,3,4,.18) 46%, rgba(5,3,4,.24) 100%),
    radial-gradient(circle at 72% 28%, rgba(255,38,61,.36), transparent 28%),
    url("assets/forty-minutes/nolan-sideline.jpg?v=2") center / cover no-repeat,
    #050304;
}

.hell-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.7%, rgba(255,255,255,.18) 49.7% 50.3%, transparent 50.3%),
    linear-gradient(0deg, transparent 0 49.7%, rgba(255,255,255,.14) 49.7% 50.3%, transparent 50.3%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 72px);
  opacity: .34;
  transform: perspective(900px) rotateX(62deg) scale(1.35);
  transform-origin: 50% 100%;
}

.hell-hero::after {
  content: "";
  position: absolute;
  width: min(78vw, 1100px);
  aspect-ratio: 1;
  right: -26%;
  bottom: -44%;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255,38,61,.16), 0 0 120px rgba(255,38,61,.12);
}

.hell-court-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 42%, transparent 0 90px, rgba(255,255,255,.13) 91px 93px, transparent 94px),
    linear-gradient(116deg, transparent 0 58%, rgba(255,255,255,.12) 58.15% 58.45%, transparent 58.6%),
    linear-gradient(64deg, transparent 0 56%, rgba(255,255,255,.09) 56.15% 56.45%, transparent 56.6%);
  opacity: .8;
}

.hell-scoreboard {
  position: absolute;
  top: clamp(110px, 14vw, 170px);
  right: clamp(24px, 8vw, 118px);
  z-index: 2;
  width: min(280px, 38vw);
  padding: 24px;
  border: 1px solid rgba(255,38,61,.42);
  background: rgba(6,3,4,.72);
  box-shadow: 0 0 70px rgba(255,38,61,.16);
}

.hell-scoreboard span {
  display: block;
  color: var(--hell-hot);
  font-family: "Courier New", monospace;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .82;
  text-shadow: 0 0 24px rgba(255,38,61,.65);
}

.hell-scoreboard small {
  display: block;
  margin-top: 14px;
  color: #bfb3aa;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  line-height: 1.5;
}

.hell-hero-copy {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 124px 30px 92px;
  position: relative;
  z-index: 3;
}

.hell-hero h1 {
  max-width: 1080px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(62px, 11vw, 156px);
  font-weight: 950;
  line-height: .78;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.hell-hero h1 span {
  display: block;
  color: var(--hell-hot);
  font-size: 1.23em;
  text-shadow: 0 0 48px rgba(255,38,61,.38);
}

.hell-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0 0;
  color: #d9cfc4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.34;
}

.hell-quote {
  padding: clamp(56px, 8vw, 96px) 28px;
  text-align: center;
  border-top: 1px solid rgba(255,38,61,.2);
  border-bottom: 1px solid rgba(255,38,61,.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,38,61,.18), transparent 45%),
    #080405;
}

.hell-quote blockquote {
  max-width: 980px;
  margin: 0 auto;
  color: var(--hell-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4vw, 54px);
  line-height: 1.15;
}

.hell-quote p {
  margin: 24px 0 0;
  color: var(--hell-hot);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 900;
}

.hell-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(78px, 10vw, 140px) 30px;
}

.hell-intro {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(54px, 8vw, 120px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hell-intro .lead,
.hell-story-copy .lead {
  margin: 0 0 30px;
  color: var(--hell-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.18;
}

.hell-overview {
  margin: 0 0 30px;
  color: var(--hell-hot);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}

.hell-intro p:not(.eyebrow):not(.lead),
.hell-story-copy > p:not(.eyebrow):not(.lead),
.hell-impact p {
  color: #b9afa6;
  font-size: 18px;
  line-height: 1.76;
}

.hell-rule-strip {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,38,61,.28);
  border-bottom: 1px solid rgba(255,38,61,.28);
  background: linear-gradient(90deg, rgba(185,0,24,.18), transparent 52%, rgba(185,0,24,.12));
}

.hell-rule-strip article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid rgba(255,38,61,.22);
}

.hell-rule-strip article:last-child { border-right: 0; }
.hell-rule-strip span { color: var(--hell-hot); font-family: "Courier New", monospace; font-size: 13px; font-weight: 900; }
.hell-rule-strip h3 { margin: 90px 0 18px; color: white; font-size: clamp(34px, 5vw, 58px); line-height: .9; text-transform: uppercase; }
.hell-rule-strip p { color: #b9afa6; line-height: 1.65; }

.hell-story {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.hell-poster-card {
  min-height: 620px;
  display: grid;
  place-items: end start;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(5,3,4,.32), rgba(5,3,4,.04)),
    url("assets/forty-minutes/poster.jpg?v=2") center / cover no-repeat,
    #170507;
  box-shadow: 0 36px 90px rgba(0,0,0,.72);
}

.hell-poster-card::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,.12);
}

.hell-poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,3,4,.74) 0%, transparent 42%, rgba(5,3,4,.1) 100%);
}

.hell-poster-card div { position: relative; z-index: 2; }
.hell-poster-card p { margin: 0 0 20px; color: var(--hell-hot); text-transform: uppercase; letter-spacing: 3px; font-size: 11px; font-weight: 900; }
.hell-poster-card h2 { margin: 0; color: white; font-size: clamp(118px, 18vw, 230px); line-height: .72; letter-spacing: -.1em; }
.hell-poster-card span { color: var(--hell-cream); text-transform: uppercase; letter-spacing: 4px; font-size: 13px; font-weight: 900; }

.hell-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 42px 0 0;
  border-top: 1px solid rgba(255,38,61,.28);
  border-left: 1px solid rgba(255,38,61,.28);
}

.hell-meta div { padding: 18px; border-right: 1px solid rgba(255,38,61,.28); border-bottom: 1px solid rgba(255,38,61,.28); }
.hell-meta dt { color: var(--hell-hot); text-transform: uppercase; letter-spacing: 2px; font-size: 10px; font-weight: 900; }
.hell-meta dd { margin: 8px 0 0; color: var(--hell-cream); }

.hell-image-band {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 20px;
  padding: 20px;
}

.hell-image-band figure {
  margin: 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: #0b0506;
}

.hell-image-band img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(.9) contrast(1.06);
  transition: transform .7s ease;
}

.hell-image-band figure:hover img { transform: scale(1.035); }

.hell-image-band figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 9px 12px;
  background: rgba(5,3,4,.78);
  color: var(--hell-cream);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
  font-weight: 900;
}

.hell-team {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(54px, 8vw, 120px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hell-team-grid {
  display: grid;
  gap: 18px;
}

.hell-team-grid article {
  padding: 28px;
  border: 1px solid rgba(255,38,61,.24);
  background:
    linear-gradient(145deg, rgba(255,38,61,.12), transparent 56%),
    #0b0506;
}

.hell-team-grid span {
  color: var(--hell-hot);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 900;
}

.hell-team-grid h3 {
  margin: 18px 0 14px;
  color: var(--hell-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.hell-team-grid p {
  margin: 0;
  color: #b9afa6;
  line-height: 1.65;
}

.hell-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}

.hell-section-heading h2 { margin: 0; max-width: 900px; }

.hell-character-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,38,61,.28);
  border-left: 1px solid rgba(255,38,61,.28);
}

.hell-character-grid article {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255,38,61,.28);
  border-bottom: 1px solid rgba(255,38,61,.28);
  background:
    linear-gradient(145deg, rgba(255,38,61,.12), transparent 58%),
    #0a0506;
}

.hell-character-grid span {
  color: var(--hell-cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 900;
}

.hell-character-grid p {
  color: #b9afa6;
  line-height: 1.62;
  margin-bottom: 0;
}

.hell-impact {
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(0deg, rgba(5,3,4,.96) 0%, rgba(5,3,4,.52) 65%, rgba(5,3,4,.9) 100%),
    radial-gradient(circle at 50% 0%, rgba(255,38,61,.34), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 70px),
    #0b0505;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hell-impact > div {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 30px;
}

.hell-impact h2 { max-width: 900px; }
.hell-impact p { max-width: 720px; }

.hell-package {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hell-package-grid {
  display: grid;
  gap: 16px;
}

.hell-package-grid article {
  padding: 28px;
  border: 1px solid rgba(255,38,61,.25);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,38,61,.16), transparent 42%),
    #0b0506;
}

.hell-package-grid h3 {
  margin: 0 0 14px;
  color: var(--hell-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
}

.hell-package-grid p {
  margin: 0;
  color: #b9afa6;
  line-height: 1.65;
}

.hell-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hell-cards article {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,38,61,.25);
  background: linear-gradient(145deg, rgba(185,0,24,.17), transparent 58%), #0c0607;
}

.hell-cards h3 {
  margin: 0;
  color: var(--hell-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 400;
}

.hell-production {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
}

.hell-production-copy p:not(.eyebrow) {
  color: #b9afa6;
  font-size: 18px;
  line-height: 1.72;
}

.hell-production dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid rgba(255,38,61,.28);
  border-left: 1px solid rgba(255,38,61,.28);
}

.hell-production dl div {
  min-height: 124px;
  padding: 22px;
  border-right: 1px solid rgba(255,38,61,.28);
  border-bottom: 1px solid rgba(255,38,61,.28);
  background: linear-gradient(145deg, rgba(199,122,56,.08), transparent 60%);
}

.hell-production dt {
  color: var(--hell-hot);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 900;
}

.hell-production dd {
  margin: 20px 0 0;
  color: var(--hell-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.hell-comps {
  padding: clamp(72px, 10vw, 126px) 28px;
  text-align: center;
  background:
    linear-gradient(rgba(5,3,4,.74), rgba(5,3,4,.92)),
    radial-gradient(circle at 50% 55%, rgba(255,38,61,.22), transparent 42%),
    #090506;
  border-top: 1px solid rgba(255,38,61,.2);
  border-bottom: 1px solid rgba(255,38,61,.2);
}

.hell-comps h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hell-comps p:last-child {
  max-width: 860px;
  margin: 0 auto;
  color: #b9afa6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  line-height: 1.9;
  font-weight: 900;
}

.hell-page .project-next { background: radial-gradient(circle at 50% 100%, rgba(255,38,61,.22), transparent 48%); }
.hell-page .project-next a span, .hell-page .project-next a:hover { color: var(--hell-hot); }

.loren-page { --loren-gold: #d5a75f; --loren-cream: #f3e3c2; --loren-olive: #343323; background: #070604; }
.loren-page .eyebrow { color: var(--loren-gold); }
.loren-page .text-link:hover { color: var(--loren-gold); }
.loren-button { border-color: var(--loren-gold); color: var(--loren-gold); }
.loren-button:hover { background: var(--loren-gold); color: #070604; }

.loren-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding: clamp(72px, 10vw, 140px) 30px;
  background:
    linear-gradient(90deg, rgba(7,6,4,.94), rgba(7,6,4,.62)),
    radial-gradient(circle at 78% 28%, rgba(213,167,95,.23), transparent 32%),
    url("assets/finding-loren/poster.jpg") center / cover no-repeat;
  overflow: hidden;
}

.loren-hero-copy { max-width: 850px; justify-self: end; }
.loren-hero h1 { font-family: Arial, Helvetica, sans-serif; font-size: clamp(72px, 12vw, 168px); font-weight: 950; line-height: .78; letter-spacing: -.075em; text-transform: uppercase; }
.loren-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 30px 0 0; color: #e6d7bd; font-family: Georgia, "Times New Roman", serif; font-size: clamp(23px, 3vw, 38px); line-height: 1.25; }
.loren-poster img { display: block; width: min(100%, 520px); box-shadow: 0 36px 95px rgba(0,0,0,.72); }

.loren-section { max-width: 1320px; margin: 0 auto; padding: clamp(78px, 10vw, 140px) 30px; }
.loren-story { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(54px, 8vw, 120px); border-bottom: 1px solid rgba(255,255,255,.08); }
.loren-story .lead { margin: 0 0 30px; color: var(--loren-cream); font-family: Georgia, "Times New Roman", serif; font-size: clamp(29px, 4vw, 48px); line-height: 1.18; }
.loren-story p:not(.eyebrow):not(.lead),
.loren-image-copy p,
.loren-doc-copy p,
.loren-comps p,
.loren-writer-copy p { color: #beb29f; font-size: 18px; line-height: 1.75; }

.loren-image-split {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  background: #11100b;
  border-bottom: 1px solid rgba(213,167,95,.2);
}

.loren-map-image img { display: block; width: 100%; height: 100%; min-height: 560px; object-fit: cover; filter: saturate(.88) contrast(1.04); }
.loren-image-copy { padding: clamp(54px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }

.loren-documentary { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(54px, 8vw, 120px); align-items: center; }
.loren-doc-image { position: relative; }
.loren-doc-image::after { content: ""; position: absolute; inset: 8% -7% -7% 10%; z-index: -1; border: 1px solid rgba(213,167,95,.5); }
.loren-doc-image img { display: block; width: 100%; filter: sepia(.16) saturate(.72) contrast(1.06); }
.loren-doc-copy h2,
.loren-writer-copy h2 { margin-bottom: 28px; }

.loren-section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 46px; }
.loren-section-heading h2 { margin: 0; max-width: 900px; }
.loren-press-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(213,167,95,.3); border-left: 1px solid rgba(213,167,95,.3); }
.loren-press-grid a { min-height: 270px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; color: inherit; text-decoration: none; border-right: 1px solid rgba(213,167,95,.3); border-bottom: 1px solid rgba(213,167,95,.3); background: linear-gradient(145deg, rgba(213,167,95,.1), transparent 58%); }
.loren-press-grid a:hover { background: rgba(213,167,95,.14); }
.loren-press-grid span { color: var(--loren-gold); text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 900; }
.loren-press-grid p { margin: 70px 0 0; color: var(--loren-cream); font-family: Georgia, "Times New Roman", serif; font-size: 24px; line-height: 1.18; }

.loren-comps {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: clamp(38px, 6vw, 90px);
  padding: clamp(60px, 8vw, 110px) 30px;
  background: #0c0a07;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.loren-comps img { display: block; width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.loren-writer { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr); gap: clamp(54px, 8vw, 120px); align-items: center; }
.loren-writer-photo img { display: block; width: 100%; max-width: 420px; filter: sepia(.2) saturate(.8) contrast(1.05); }
.loren-page .project-next { background: radial-gradient(circle at 50% 100%, rgba(213,167,95,.2), transparent 48%); }
.loren-page .project-next a span, .loren-page .project-next a:hover { color: var(--loren-gold); }

.strings-page { --strings-amber: #d89234; --strings-blue: #90a9bc; --strings-cream: #eee2cf; background: #050607; }
.strings-page .eyebrow { color: var(--strings-amber); }
.strings-page .text-link:hover { color: var(--strings-amber); }
.strings-button { border-color: var(--strings-amber); color: var(--strings-amber); }
.strings-button:hover { background: var(--strings-amber); color: #050607; }

.strings-hero {
  min-height: calc(100vh - 76px);
  padding: clamp(92px, 13vw, 190px) 30px clamp(70px, 9vw, 124px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3,4,5,.96) 0%, rgba(3,4,5,.58) 52%, rgba(3,4,5,.82) 100%),
    radial-gradient(circle at 30% 50%, rgba(216,146,52,.22), transparent 35%),
    url("assets/strings/hero.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(216,146,52,.24);
}

.strings-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, #050607);
}

.strings-hero-copy { width: 100%; max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.strings-hero h1 { margin: 0; font-family: Arial, Helvetica, sans-serif; font-size: clamp(78px, 14vw, 210px); font-weight: 950; line-height: .78; letter-spacing: .18em; text-transform: uppercase; color: #f5ecdf; text-shadow: 0 0 42px rgba(216,146,52,.22); }
.strings-hero-copy > p:not(.eyebrow) { max-width: 760px; margin: 32px 0 0; color: #d4c4b0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(23px, 3vw, 38px); line-height: 1.25; }

.strings-logline {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(74px, 10vw, 138px) 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(50px, 7vw, 110px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.strings-logline h2 { max-width: 900px; color: var(--strings-cream); font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5.6vw, 78px); font-weight: 400; line-height: 1.03; text-transform: none; letter-spacing: -.045em; }
.strings-meta { margin: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(216,146,52,.35); border-left: 1px solid rgba(216,146,52,.35); }
.strings-meta div { min-height: 150px; padding: 22px; border-right: 1px solid rgba(216,146,52,.35); border-bottom: 1px solid rgba(216,146,52,.35); background: linear-gradient(145deg, rgba(216,146,52,.12), rgba(144,169,188,.05)); }
.strings-meta dt { color: var(--strings-amber); text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 900; }
.strings-meta dd { margin: 34px 0 0; color: #f3e8d8; font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1.15; }

.strings-image-split,
.strings-tone,
.strings-team {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(78px, 10vw, 140px) 30px;
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.strings-frame { margin: 0; position: relative; }
.strings-frame::after { content: ""; position: absolute; inset: 8% -6% -7% 8%; z-index: -1; border: 1px solid rgba(216,146,52,.35); }
.strings-frame img { display: block; width: 100%; filter: saturate(.85) contrast(1.05); box-shadow: 0 34px 86px rgba(0,0,0,.52); }
.strings-image-split .lead { margin: 0 0 28px; color: var(--strings-cream); font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 52px); line-height: 1.14; }
.strings-image-split p:not(.eyebrow):not(.lead),
.strings-tone-copy p,
.strings-team p,
.strings-casting p,
.strings-palette p { color: #b9b7b2; font-size: 18px; line-height: 1.75; }

.strings-quote-panel {
  min-height: 54vh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 12vw, 160px) 30px;
  text-align: center;
  background:
    linear-gradient(rgba(5,6,7,.44), rgba(5,6,7,.78)),
    radial-gradient(circle at 50% 45%, rgba(216,146,52,.2), transparent 36%),
    url("assets/strings/hero.jpg") center / cover no-repeat fixed;
}

.strings-quote-panel p { max-width: 940px; margin: 0; color: #f0e5d5; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 6vw, 86px); line-height: 1.02; letter-spacing: -.05em; }

.strings-tone { border-top: 1px solid rgba(255,255,255,.08); }
.strings-tone-copy h2,
.strings-team h2 { margin-bottom: 30px; color: #f4eadc; }

.strings-palette {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px clamp(78px, 10vw, 140px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.strings-palette div { min-height: 270px; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(150deg, rgba(216,146,52,.1), rgba(144,169,188,.07)); }
.strings-palette span { width: 56px; height: 56px; margin-bottom: 48px; display: block; border-radius: 999px; background: var(--strings-amber); box-shadow: 0 0 34px rgba(216,146,52,.32); }
.strings-palette div:nth-child(2) span { background: #617b90; box-shadow: 0 0 34px rgba(144,169,188,.32); }
.strings-palette div:nth-child(3) span { background: #111; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 34px rgba(255,255,255,.08); }
.strings-palette h3 { margin: 0 0 12px; color: #fff; text-transform: uppercase; letter-spacing: 1px; font-size: 24px; }

.strings-gallery { max-width: 1520px; margin: 0 auto; padding: clamp(78px, 10vw, 140px) 30px; border-top: 1px solid rgba(255,255,255,.08); }
.strings-section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 44px; }
.strings-section-heading h2 { margin: 0; max-width: 820px; }
.strings-gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 16px; }
.strings-gallery-grid figure { margin: 0; min-height: 360px; overflow: hidden; background: #101113; }
.strings-gallery-grid img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.88) contrast(1.06); transition: transform .35s ease; }
.strings-gallery-grid figure:hover img { transform: scale(1.035); }

.strings-casting { max-width: 1320px; margin: 0 auto; padding: clamp(78px, 10vw, 140px) 30px; border-top: 1px solid rgba(216,146,52,.16); }
.strings-casting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.strings-casting article { min-height: 370px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(216,146,52,.28); background: linear-gradient(160deg, rgba(216,146,52,.11), rgba(144,169,188,.06)); }
.strings-casting span { color: var(--strings-amber); text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 900; }
.strings-casting h3 { margin: 18px 0; color: var(--strings-cream); font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 3.4vw, 48px); line-height: 1; }
.strings-page .project-next { background: radial-gradient(circle at 50% 100%, rgba(216,146,52,.18), transparent 46%); }
.strings-page .project-next a span, .strings-page .project-next a:hover { color: var(--strings-amber); }

footer p {
  margin: 8px 0;
  color: #aaa;
}

footer a {
  color: #ff5a1f;
}

.copyright {
  margin-top: 26px;
  color: #68615b;
  font-size: 12px;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  min-width: 132px;
  padding: 12px 18px;
  border: 1px solid rgba(255,90,31,.55);
  border-radius: 999px;
  color: #f7efe6;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 900;
  background: rgba(255,90,31,.06);
  box-shadow: 0 0 24px rgba(255,90,31,.08);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: #ff5a1f;
  background: #ff5a1f;
  color: #030303;
  transform: translateY(-2px);
}

@media (max-width: 850px) {
  .nav {
    padding: 12px 18px;
  }

  .nav nav {
    gap: 12px;
  }

  .nav nav a {
    letter-spacing: 1px;
    font-size: 10px;
  }

  .brand img {
    height: 50px;
  }

  .proof-bar {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .credits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .credits-grid article {
    display: block;
  }

  .credit-media {
    min-height: 150px;
    margin: 34px 0 20px;
  }

  .project-details { grid-template-columns: 1fr; gap: 44px; }
  .forever-hero { grid-template-columns: 1fr; }
  .forever-hero-art { min-height: 72vh; background: linear-gradient(0deg, #020403 0%, transparent 45%), url("assets/forever-tree/poster.jpg") center top / cover no-repeat; }
  .forever-hero-copy { margin-top: -20vh; padding: 20vh 28px 80px; background: linear-gradient(0deg, #020403 58%, transparent 100%); }
  .forever-story, .creators-section { grid-template-columns: 1fr; }
  .forever-poster-wrap { max-width: 520px; }
  .forever-gallery { grid-template-columns: 1fr; }
  .forever-gallery .gallery-wide { grid-row: auto; }
  .forever-gallery figure { min-height: 300px; }
  .crow-story, .crow-world, .crow-author { grid-template-columns: 1fr; }
  .crow-book-stack { min-height: 690px; max-width: 580px; }
  .crow-world-copy { padding: 70px 30px; }
  .crow-scenes { grid-template-columns: 1fr; }
  .crow-world-build { margin: 0 20px 90px; }
  .crow-embed-note { align-items: stretch; flex-direction: column; }
  .sidd-story, .sidd-passage, .sidd-director { grid-template-columns: 1fr; }
  .sidd-story-intro { position: static; }
  .sidd-dual-worlds { grid-template-columns: 1fr; }
  .character-grid { grid-template-columns: 1fr 1fr; }
  .writer-grid { grid-template-columns: 1fr; }
  .hell-intro, .hell-story, .hell-team, .hell-package, .hell-production { grid-template-columns: 1fr; }
  .hell-scoreboard { width: min(240px, 46vw); right: 22px; }
  .hell-rule-strip, .hell-cards { grid-template-columns: 1fr; }
  .hell-image-band { grid-template-columns: 1fr; }
  .hell-image-band figure,
  .hell-image-band img { min-height: 380px; }
  .hell-rule-strip article { min-height: 240px; border-right: 0; border-bottom: 1px solid rgba(255,38,61,.22); }
  .hell-rule-strip article:last-child { border-bottom: 0; }
  .hell-rule-strip h3 { margin-top: 58px; }
  .hell-poster-card { min-height: 540px; max-width: 560px; }
  .hell-meta { grid-template-columns: 1fr; }
  .hell-section-heading { display: block; }
  .hell-section-heading .eyebrow { margin-bottom: 18px; }
  .hell-character-grid, .hell-production dl { grid-template-columns: 1fr 1fr; }
  .loren-hero, .loren-story, .loren-image-split, .loren-documentary, .loren-comps, .loren-writer { grid-template-columns: 1fr; }
  .loren-hero-copy { justify-self: start; }
  .loren-poster img { max-width: 460px; }
  .loren-press-grid { grid-template-columns: 1fr 1fr; }
  .loren-map-image img { min-height: 360px; }
  .strings-logline, .strings-image-split, .strings-tone, .strings-team { grid-template-columns: 1fr; }
  .strings-meta, .strings-palette, .strings-casting-grid { grid-template-columns: 1fr 1fr; }
  .strings-gallery-grid { grid-template-columns: 1fr; }
  .strings-gallery-grid figure { min-height: 280px; }
  .strings-hero h1 { letter-spacing: .1em; }
  .teaser-shell { grid-template-columns: 1fr; }
  .teaser-art { min-height: 0; align-self: auto; }
  .teaser-art img { max-height: none; }
}

@media (max-width: 560px) {
  .forever-tree-page .nav nav a:nth-child(3) { display: none; }
  .forever-hero h1 { font-size: clamp(66px, 24vw, 104px); }
  .inline-meta { grid-template-columns: 1fr; gap: 0; }
  .credits-grid { grid-template-columns: 1fr; }
  .credits-grid article { min-height: 230px; }
  .credit-card h3 { font-size: 28px; }
  .credit-card-vmi .credit-media img { width: min(100%, 230px); }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 18px; }
  .crow-page .nav nav a:nth-child(3) { display: none; }
  .crow-hero h1 { font-size: clamp(64px, 22vw, 102px); }
  .crow-section-title { display: block; }
  .crow-section-title .eyebrow { margin-bottom: 18px; }
  .crow-book-stack { min-height: 540px; }
  .crow-world-build > div { position: relative; left: auto; bottom: auto; max-width: none; }
  .sidd-page .nav nav a:nth-child(3) { display: none; }
  .sidd-hero h1 { font-size: clamp(108px, 40vw, 190px); }
  .sidd-section-heading { display: block; }
  .sidd-section-heading .eyebrow { margin-bottom: 18px; }
  .character-grid { grid-template-columns: 1fr; }
  .writer-grid article { grid-template-columns: 1fr; }
  .writer-grid img { height: 380px; }
  .hell-page .nav nav a:nth-child(3) { display: none; }
  .hell-scoreboard { position: relative; top: auto; right: auto; width: auto; margin: 110px 22px 0; }
  .hell-hero { display: block; }
  .hell-hero-copy { padding: 48px 24px 76px; }
  .hell-hero h1 { font-size: clamp(62px, 20vw, 100px); }
  .hell-hero-copy > p:not(.eyebrow) { font-size: 21px; }
  .hell-quote blockquote { font-size: 28px; }
  .hell-poster-card { min-height: 460px; }
  .hell-character-grid, .hell-production dl { grid-template-columns: 1fr; }
  .hell-character-grid article { min-height: 230px; }
  .loren-hero h1 { font-size: clamp(62px, 20vw, 100px); }
  .loren-press-grid { grid-template-columns: 1fr; }
  .loren-press-grid a { min-height: 220px; }
  .loren-section-heading { display: block; }
  .loren-section-heading .eyebrow { margin-bottom: 18px; }
  .strings-hero { min-height: 74vh; padding-top: 86px; }
  .strings-hero h1 { font-size: clamp(54px, 20vw, 92px); letter-spacing: .08em; }
  .strings-hero-copy > p:not(.eyebrow) { font-size: 21px; }
  .strings-meta, .strings-palette, .strings-casting-grid { grid-template-columns: 1fr; }
  .strings-section-heading { display: block; }
  .strings-section-heading .eyebrow { margin-bottom: 18px; }
  .strings-quote-panel { background-attachment: scroll; }
  .strings-casting article { min-height: 300px; }
  .teaser-shell { padding: 48px 20px 72px; }
  .teaser-copy h1 { font-size: clamp(52px, 18vw, 84px); }
  .teaser-copy .lead { font-size: 22px; }
  .teaser-access { padding: 18px; }
}
