:root {
  --ink: #13101a;
  --deep: #09080d;
  --paper: #f4e9d7;
  --chalk: #fff8ed;
  --violet: #7c5cff;
  --coral: #ff6a5e;
  --gold: #f4c95d;
  --teal: #36c2b4;
  --smoke: #2b2634;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--sans);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p, figure { margin-top: 0; }

.site-head {
  height: 78px;
  padding: 0 clamp(20px, 5vw, 74px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  background: rgba(9, 8, 13, 0.96);
  border-bottom: 1px solid rgba(244, 233, 215, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font: 700 12px var(--mono);
  letter-spacing: 1.4px;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
}
nav { display: flex; gap: 28px; }
nav a {
  text-decoration: none;
  color: rgba(255, 248, 237, 0.68);
  font: 700 11px var(--mono);
  letter-spacing: 0.8px;
}
nav a:hover, nav a:focus-visible { color: var(--gold); }

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(42px, 8vw, 110px);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 13, 0.97) 0%, rgba(9, 8, 13, 0.75) 40%, rgba(9, 8, 13, 0.08) 78%),
    linear-gradient(0deg, rgba(9, 8, 13, 0.75), transparent 45%);
}
.paper-field {
  position: absolute;
  width: 48vw;
  height: 110%;
  left: -11vw;
  top: -5%;
  background: rgba(244, 233, 215, 0.09);
  clip-path: polygon(0 0, 87% 0, 100% 18%, 91% 47%, 100% 67%, 84% 100%, 0 100%);
}
.hero-copy { max-width: 720px; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  font: 700 11px var(--mono);
  letter-spacing: 1.7px;
  color: var(--gold);
}
.eyebrow.coral { color: var(--coral); }
.eyebrow.gold { color: var(--gold); }
.eyebrow.teal { color: var(--teal); }
.hero h1, .policy-hero h1 {
  font: 900 clamp(64px, 10vw, 150px) / 0.84 var(--serif);
  letter-spacing: -0.055em;
  margin: 0 0 34px;
}
.lede {
  max-width: 610px;
  font-size: clamp(17px, 2vw, 23px);
  color: rgba(255, 248, 237, 0.8);
}
.cue-button {
  display: inline-flex;
  gap: 40px;
  margin-top: 24px;
  padding: 15px 20px;
  background: var(--violet);
  text-decoration: none;
  font: 700 11px var(--mono);
  letter-spacing: 1px;
  clip-path: polygon(0 0, 92% 0, 100% 35%, 100% 100%, 8% 100%, 0 65%);
}
.orbit {
  position: absolute;
  border: 2px solid;
  opacity: 0.34;
  border-radius: 50%;
  z-index: 1;
  animation: orbit 14s linear infinite;
}
.orbit-one { width: 34vw; height: 34vw; right: -8vw; top: 3vw; border-color: var(--teal); }
.orbit-two { width: 22vw; height: 22vw; right: 10vw; bottom: -7vw; border-color: var(--coral); animation-direction: reverse; }
@keyframes orbit { to { transform: rotate(360deg); } }

.section-pad { padding: clamp(72px, 9vw, 140px) clamp(20px, 7vw, 110px); }
.section-intro { max-width: 850px; margin-bottom: 58px; }
.section-intro h2, .organization-copy h2, .room-memory h2, .mixer-band h2 {
  font: 800 clamp(42px, 6.4vw, 86px) / 0.96 var(--serif);
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}
.section-intro > p:last-child, .organization-copy > p {
  font-size: 18px;
  color: rgba(244, 233, 215, 0.72);
  max-width: 780px;
}

.scene-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.scene-card {
  position: relative;
  background: var(--smoke);
  clip-path: polygon(0 0, 91% 0, 100% 9%, 100% 100%, 8% 100%, 0 92%);
  overflow: hidden;
  padding-bottom: 28px;
}
.scene-card img { display: block; width: 100%; height: 360px; object-fit: cover; }
.scene-card span, .scene-card h3, .scene-card p { display: block; margin-left: 28px; margin-right: 28px; }
.scene-card span { font: 700 10px var(--mono); letter-spacing: 1px; margin-top: 24px; }
.scene-card h3 { font: 700 34px / 1.05 var(--serif); margin-top: 12px; margin-bottom: 14px; }
.scene-card p { color: rgba(244, 233, 215, 0.7); }
.violet-card span { color: var(--violet); }
.gold-card span { color: var(--gold); }
.teal-card span { color: var(--teal); }
.coral-card span { color: var(--coral); }

.mixer-band {
  padding: clamp(58px, 8vw, 120px) clamp(20px, 7vw, 110px);
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.mixer-band h2 { font-size: clamp(38px, 5.5vw, 72px); }
.mixer-band h2 i { color: var(--violet); }
.mixer-copy > p:last-child { font-size: 18px; max-width: 720px; color: rgba(19, 16, 26, 0.72); }
.mood-wheel { aspect-ratio: 1; border: 2px solid var(--ink); border-radius: 50%; position: relative; animation: orbit 32s linear infinite; }
.mood-wheel::before, .mood-wheel::after { content: ""; position: absolute; inset: 19%; border: 2px solid var(--coral); border-radius: 50%; }
.mood-wheel::after { inset: 39%; background: var(--ink); }
.mood-wheel span { position: absolute; font: 800 10px var(--mono); letter-spacing: 1px; }
.mood-wheel span:nth-child(1) { top: 4%; left: 44%; }
.mood-wheel span:nth-child(2) { top: 30%; right: -5%; }
.mood-wheel span:nth-child(3) { bottom: 8%; right: 16%; }
.mood-wheel span:nth-child(4) { bottom: 8%; left: 16%; }
.mood-wheel span:nth-child(5) { top: 30%; left: -5%; }

.field-notes { background: var(--deep); }
.field-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 118px;
  gap: 16px;
}
.field-collage figure {
  grid-column: span 4;
  grid-row: span 3;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--smoke);
  clip-path: polygon(0 0, 91% 0, 100% 9%, 100% 100%, 9% 100%, 0 91%);
}
.field-collage .field-wide { grid-column: span 8; }
.field-collage .field-tall { grid-row: span 5; }
.field-collage img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.field-collage figure:hover img { transform: scale(1.035); }
.field-collage figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 20px 17px;
  background: linear-gradient(transparent, rgba(9, 8, 13, 0.92));
  color: var(--chalk);
  font: 700 11px var(--mono);
  letter-spacing: 0.4px;
}

.organization { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 7vw, 100px); align-items: start; }
.organization-image { position: sticky; top: 28px; }
.organization-image img {
  width: 100%;
  min-height: 680px;
  object-fit: cover;
  clip-path: polygon(0 0, 90% 0, 100% 9%, 100% 100%, 12% 100%, 0 90%);
}
.organization-image span { display: block; margin-top: 20px; font: 900 clamp(26px, 4vw, 58px) / 0.9 var(--serif); color: var(--teal); }
.fact-block { margin: 34px 0; padding: 24px; border-left: 6px solid var(--coral); background: var(--smoke); display: grid; gap: 7px; }
.fact-block span { font: 700 10px var(--mono); letter-spacing: 1px; color: var(--gold); }
.fact-block a, .fact-block p { margin-bottom: 13px; }
.source-note { padding-top: 24px; border-top: 1px solid rgba(244, 233, 215, 0.18); font-size: 13px !important; }

.room-memory {
  background: var(--deep);
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}
.memory-mark { aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(54, 194, 180, 0.56); display: grid; place-content: center; gap: 18px; text-align: center; position: relative; }
.memory-mark::before, .memory-mark::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(124, 92, 255, 0.45); inset: 15%; }
.memory-mark::after { inset: 31%; border-color: rgba(255, 106, 94, 0.48); }
.memory-mark span { position: relative; z-index: 2; font: 800 10px var(--mono); letter-spacing: 2px; color: var(--paper); }
.memory-mark i { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; justify-self: center; position: relative; z-index: 2; }
.memory-copy p:not(.eyebrow) { max-width: 740px; color: rgba(244, 233, 215, 0.72); font-size: 18px; }
.text-link { display: inline-block; margin-top: 20px; font: 700 12px var(--mono); color: var(--gold); }

footer {
  padding: 44px clamp(20px, 5vw, 74px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  border-top: 1px solid rgba(244, 233, 215, 0.16);
  background: var(--ink);
  font-size: 13px;
  color: rgba(244, 233, 215, 0.55);
}
footer strong { font-family: var(--mono); color: var(--chalk); }
footer div:nth-child(2) { display: flex; gap: 24px; }
footer p { grid-column: 1 / -1; margin: 0; }

.policy-main { padding: clamp(50px, 8vw, 120px) clamp(20px, 9vw, 160px); overflow: hidden; }
.policy-hero { max-width: 1100px; margin-bottom: 60px; }
.policy-hero h1 { font-size: clamp(58px, 9vw, 126px); }
.policy-hero code, .policy-sheet code { color: var(--gold); }
.policy-opening {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  margin: 0 0 70px;
}
.policy-opening img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  clip-path: polygon(0 0, 91% 0, 100% 11%, 100% 100%, 10% 100%, 0 89%);
}
.policy-opening p:last-child { color: rgba(244, 233, 215, 0.74); font-size: 18px; }
.policy-index {
  max-width: 1120px;
  margin: 0 0 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.policy-index a {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 233, 215, 0.2);
  background: rgba(43, 38, 52, 0.72);
  color: var(--paper);
  text-decoration: none;
  font: 700 10px var(--mono);
  letter-spacing: 0.45px;
}
.policy-index a:hover, .policy-index a:focus-visible { border-color: var(--teal); color: var(--chalk); }
.policy-index span { color: var(--coral); }
.policy-sheet {
  max-width: 1040px;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(30px, 6vw, 76px);
  clip-path: polygon(0 0, 96% 0, 100% 2%, 100% 100%, 4% 100%, 0 98%);
  counter-reset: policy;
}
.policy-sheet section {
  position: relative;
  padding: 32px 0 32px 78px;
  border-bottom: 1px solid rgba(19, 16, 26, 0.18);
  scroll-margin-top: 28px;
}
.policy-sheet section:last-child { border: 0; }
.policy-number {
  position: absolute;
  left: 0;
  top: 34px;
  color: var(--coral);
  font: 900 19px var(--mono);
  letter-spacing: -1px;
}
.policy-sheet section:nth-of-type(3n + 2) .policy-number { color: #4930cf; }
.policy-sheet section:nth-of-type(3n) .policy-number { color: #08796f; }
.policy-sheet h2 { font: 700 31px / 1.08 var(--serif); margin-bottom: 12px; }
.policy-sheet p { color: rgba(19, 16, 26, 0.76); }
.policy-sheet a { color: #4930cf; }
.policy-sheet code { color: #4930cf; overflow-wrap: anywhere; }
.policy-interlude {
  margin: 42px -24px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(190px, 0.7fr);
  gap: 22px;
  align-items: end;
}
.policy-interlude-right { grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr); }
.policy-interlude-right img { order: 2; }
.policy-interlude img { width: 100%; height: 310px; object-fit: cover; display: block; }
.policy-interlude figcaption { font: 700 11px / 1.6 var(--mono); color: rgba(19, 16, 26, 0.62); padding: 14px; border-left: 4px solid var(--teal); }

@media (max-width: 920px) {
  .field-collage { grid-auto-rows: 92px; }
  .policy-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  nav { gap: 14px; }
  .hero { min-height: 760px; padding-top: 90px; align-items: flex-end; }
  .hero::after { background: linear-gradient(0deg, rgba(9, 8, 13, 0.98) 0%, rgba(9, 8, 13, 0.72) 65%, rgba(9, 8, 13, 0.15)); }
  .hero h1 { font-size: 68px; }
  .scene-grid, .organization, .mixer-band, .room-memory, .policy-opening { grid-template-columns: 1fr; }
  .scene-card img { height: 280px; }
  .organization-image { position: relative; top: 0; }
  .organization-image img { min-height: 440px; }
  .mood-wheel, .memory-mark { max-width: 460px; width: 100%; justify-self: center; }
  .site-head nav a:not(:last-child) { display: none; }
  .field-collage figure, .field-collage .field-wide { grid-column: span 6; }
  .field-collage .field-tall { grid-row: span 4; }
}

@media (max-width: 560px) {
  .brand span { display: none; }
  .hero h1 { font-size: 56px; }
  .section-intro h2, .organization-copy h2, .room-memory h2 { font-size: 43px; }
  .scene-grid { grid-template-columns: 1fr; }
  .field-collage { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .field-collage figure, .field-collage .field-wide, .field-collage .field-tall { grid-column: 1; grid-row: auto; min-height: 300px; }
  .scene-card img { height: 240px; }
  footer { grid-template-columns: 1fr; }
  footer div:nth-child(2) { flex-direction: column; gap: 6px; }
  .policy-main { padding-left: 16px; padding-right: 16px; }
  .policy-index { grid-template-columns: 1fr 1fr; }
  .policy-index a { align-items: flex-start; flex-direction: column; gap: 3px; }
  .policy-sheet { padding: 28px 22px; }
  .policy-sheet section { padding-left: 0; padding-top: 72px; }
  .policy-number { top: 30px; }
  .policy-interlude, .policy-interlude-right { margin-left: 0; margin-right: 0; grid-template-columns: 1fr; }
  .policy-interlude-right img { order: 0; }
  .policy-interlude img { height: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit, .mood-wheel { animation: none; }
  .field-collage img { transition: none; }
}
