:root {
  --ink: #efe8d3;
  --muted: #b9b09b;
  --black: #0a090c;
  --panel: #141119;
  --violet: #4d1b64;
  --magenta: #e22884;
  --orange: #ff7a18;
  --gold: #f4c64f;
  --green: #40c980;
  --blue: #33a5df;
  --line: rgba(255,255,255,.14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(77,27,100,.52), transparent 34rem),
    linear-gradient(180deg, #0a090c 0%, #0d0910 42%, #09090b 100%);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(226,40,132,.06), transparent 25%), radial-gradient(circle at 80% 30%, rgba(255,122,24,.06), transparent 24%), radial-gradient(circle at 50% 80%, rgba(51,165,223,.05), transparent 28%);
  z-index: -1;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
.section-shell { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(10,9,12,.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { font-family: "Rye", serif; font-size: clamp(1rem, 2vw, 1.3rem); letter-spacing: .02em; }
nav { display: flex; gap: 22px; font-size: .86rem; text-transform: uppercase; letter-spacing: .14em; }
nav a { color: var(--muted); transition: color .2s ease; }
nav a:hover { color: var(--gold); }

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  padding-block: clamp(72px, 10vw, 140px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 700;
}
h1, h2, h3 { margin-top: 0; line-height: 1.05; }
h1 {
  font-family: "Rye", serif;
  font-size: clamp(3.5rem, 8vw, 7.7rem);
  letter-spacing: -.045em;
  margin-bottom: 28px;
  text-wrap: balance;
}
h1 span {
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--magenta), #9d5cff);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-deck { max-width: 690px; font-size: clamp(1.18rem, 2vw, 1.55rem); color: #d9d1c0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(90deg, var(--magenta), var(--orange)); color: #fff; border-color: transparent; }
.button-ghost:hover { border-color: var(--gold); }
.hero-art { margin: 0; position: relative; transform: rotate(2deg); }
.hero-art::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -1;
  filter: blur(28px);
  opacity: .6;
  background: conic-gradient(from 90deg, var(--magenta), var(--orange), var(--gold), var(--green), var(--blue), var(--violet), var(--magenta));
  border-radius: 44%;
}
.hero-art img { border-radius: 24px; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 32px 100px rgba(0,0,0,.6); }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: #efe8d3; color: #111; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; font-family: "Rye", serif; font-size: clamp(1rem, 2vw, 1.5rem); padding: 14px 0; }
.marquee-track span { white-space: nowrap; padding-right: 24px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.split-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(42px, 8vw, 120px); padding-block: clamp(90px, 11vw, 150px); }
.section-heading h2, .principle h2, .finale h2 { font-family: "Rye", serif; font-size: clamp(2.4rem, 5.2vw, 5rem); letter-spacing: -.03em; text-wrap: balance; }
.story-copy { max-width: 720px; color: #d2c9b7; font-size: 1.08rem; }
.story-copy p:first-child { font-size: 1.5rem; color: var(--ink); }
.manifesto { margin-block: 42px; padding: 26px 0; border-block: 1px solid var(--line); font-weight: 700; color: #fff; letter-spacing: .02em; }
.manifesto span { color: var(--magenta); }
.big-line { font-family: "Rye", serif; color: var(--gold); font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: 1.25; }

.collection { padding-block: clamp(90px, 10vw, 130px); }
.centered { text-align: center; max-width: 840px; margin: 0 auto 54px; }
.disc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.disc-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  position: relative;
  overflow: hidden;
}
.disc-card::after { content: ""; position: absolute; inset: auto -20% -50% 0; height: 170px; background: radial-gradient(circle, rgba(226,40,132,.24), transparent 65%); }
.disc-number { color: var(--gold); font-family: "Rye", serif; font-size: 1rem; }
.disc-card h3 { font-family: "Rye", serif; font-size: clamp(1.45rem, 2vw, 2rem); margin: auto 0 18px; }
.disc-card p { margin: 0; color: var(--muted); }
.collection-close { max-width: 880px; text-align: center; margin: 56px auto 0; font-size: 1.25rem; color: #ddd3c0; }

.trailers { padding-block: clamp(90px, 10vw, 130px); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.video-card h3 { margin: 16px 4px 0; font-size: 1.1rem; }
.video-frame { aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 28px 70px rgba(0,0,0,.42); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

.principle { padding-block: clamp(90px, 11vw, 150px); }
.principle-card { padding: clamp(34px, 7vw, 88px); border: 1px solid rgba(244,198,79,.28); border-radius: 30px; background: linear-gradient(135deg, rgba(244,198,79,.07), rgba(226,40,132,.06) 52%, rgba(51,165,223,.04)); }
.principle-card h2 { max-width: 930px; }
.principle-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; margin-top: 48px; color: #d5ccba; font-size: 1.08rem; }

.gallery { padding-block: clamp(80px, 10vw, 130px); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-item { margin: 0; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: #111; }
.gallery-item img { aspect-ratio: 1; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.025); }

.finale { text-align: center; padding-block: clamp(100px, 14vw, 180px); }
.finale h2 { max-width: 900px; margin-inline: auto; }
.finale .button { margin-top: 18px; }
footer { border-top: 1px solid var(--line); width: min(var(--max), calc(100% - 44px)); margin: 0 auto; padding: 28px 0 42px; display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: .85rem; }
footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { max-width: 720px; margin-inline: auto; }
  .split-section { grid-template-columns: 1fr; gap: 28px; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .section-shell { width: min(100% - 28px, var(--max)); }
  .site-header { padding-inline: 14px; }
  .hero { padding-top: 62px; }
  h1 { font-size: clamp(3.15rem, 17vw, 5rem); }
  .video-grid, .principle-copy, .gallery-grid { grid-template-columns: 1fr; }
  .disc-grid { grid-template-columns: 1fr; }
  .disc-card { min-height: 230px; }
  .gallery-item.wide { grid-column: auto; }
  footer { width: calc(100% - 28px); flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
