:root {
  --navy-950: #060c17;
  --navy-900: #0b1425;
  --navy-800: #142a49;
  --violet: #454285;
  --violet-deep: #252347;
  --lilac: #f8e9ff;
  --cream: #f8f6f2;
  --paper: #eee8df;
  --ink: #282828;
  --red: #f04b4b;
  --amber: #e6a35c;
  --line-dark: rgba(248, 246, 242, 0.17);
  --line-light: rgba(20, 42, 73, 0.18);
  --max: 1240px;
  --header-height: 76px;
  --radius: 22px;
  --shadow: 0 26px 70px rgba(5, 10, 20, 0.24);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
em { font-style: italic; }
::selection { background: var(--red); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: #fff;
  color: var(--navy-900);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}
.site-header.scrolled {
  background: rgba(6, 12, 23, 0.9);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.wordmark i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.75vw, 29px);
  width: 100%;
  font-size: 13px;
  font-weight: 750;
}
.site-nav a { position: relative; white-space: nowrap; }
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}
.nav-cta:hover,
.nav-cta:focus-visible { background: var(--cream); color: var(--navy-900); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--cream);
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; object-position: center 42%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 11, 23, 0.97) 0%, rgba(5, 11, 23, 0.79) 45%, rgba(5, 11, 23, 0.28) 77%),
    linear-gradient(0deg, rgba(5, 11, 23, 0.96) 0%, transparent 62%),
    linear-gradient(180deg, rgba(5, 11, 23, 0.42) 0%, transparent 34%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(125px, 15vh, 175px) 0 clamp(75px, 9vh, 105px);
}

.eyebrow,
.kicker,
.section-number,
.album-card span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; }
.recording-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(240, 75, 75, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 75, 75, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(240, 75, 75, 0); }
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 0.99; }
h1 {
  max-width: 1020px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.066em;
}
h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.35vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.064em;
}
h3 { font-size: 23px; letter-spacing: -0.035em; }

.hero-lead {
  max-width: 730px;
  margin-bottom: 8px;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.48;
}
.hero-lead-secondary { color: rgba(248,246,242,0.72); }
.handwritten {
  font-family: "Rock Salt", "Bradley Hand", "Segoe Print", cursive;
  font-weight: 400;
  line-height: 1.5;
}
.hero-handwritten {
  margin: 22px 0 24px 7px;
  color: #ffd9d5;
  font-size: clamp(18px, 2vw, 26px);
  transform: rotate(-2deg);
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: 0.62; transform: none; }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover,
.button-primary:focus-visible { background: #ff6666; }
.button-ghost { border-color: rgba(255,255,255,0.42); color: #fff; }
.button-ghost:hover,
.button-ghost:focus-visible { border-color: #fff; background: rgba(255,255,255,0.1); }
.button-light { background: var(--cream); color: var(--navy-900); }
.button-light:hover,
.button-light:focus-visible { background: #fff; }

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 64px);
  bottom: 35px;
  display: flex;
  gap: 14px;
  color: rgba(248,246,242,0.64);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section { position: relative; padding: clamp(100px, 11vw, 165px) clamp(20px, 4vw, 64px); }
.section > * { width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
.section-number { margin-bottom: clamp(55px, 7vw, 100px); color: rgba(20,42,73,0.56); }
.section-number-light { color: rgba(248,246,242,0.48); }
.kicker { margin-bottom: 20px; color: var(--red); }
.large-copy { font-size: clamp(21px, 2.15vw, 29px); font-weight: 650; line-height: 1.38; letter-spacing: -0.024em; }

.world-section { overflow: hidden; background: var(--cream); }
.world-section::after {
  position: absolute;
  z-index: 0;
  top: 18%;
  right: -13vw;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(69,66,133,0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(69,66,133,0.025), 0 0 0 160px rgba(69,66,133,0.018);
}
.world-section > * { position: relative; z-index: 1; }
.world-grid,
.story-grid,
.development-grid,
.creator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(50px, 8vw, 130px);
}
.world-copy,
.story-copy,
.development-copy,
.creator-copy { padding-top: 52px; }
.world-copy p:not(.large-copy),
.development-copy p:not(.large-copy) { max-width: 590px; color: #545454; }
.world-rule {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.26em;
  margin-top: clamp(100px, 13vw, 190px);
  margin-bottom: 0;
  padding: clamp(45px, 6vw, 80px) 20px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-align: center;
  font-size: clamp(1.65rem, 3.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.1;
}
.world-rule strong { color: var(--violet); font-size: 1.72em; font-weight: 950; }

.family-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(145,105,180,0.22), transparent 32%),
    radial-gradient(circle at 90% 50%, rgba(240,75,75,0.1), transparent 28%),
    #17182d;
  color: var(--cream);
}
.family-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
}
.family-section > * { position: relative; z-index: 1; }
.section-intro {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
  margin-bottom: clamp(65px, 8vw, 105px);
}
.section-intro h2 { margin-bottom: 0; }
.section-intro > div:last-child { padding-bottom: 8px; }
.section-intro > div:last-child p { max-width: 520px; margin-bottom: 13px; color: #555; font-size: 18px; }
.section-intro-light > div:last-child p { color: rgba(248,246,242,0.68); }
.polaroid-wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(36px, 5vw, 68px) clamp(24px, 4vw, 48px); }
.polaroid-card { display: grid; justify-items: center; align-content: start; }
.polaroid-card:nth-child(3n + 1) img { transform: rotate(-1.8deg); }
.polaroid-card:nth-child(3n + 2) img { transform: rotate(1.4deg); }
.polaroid-card:nth-child(3n) img { transform: rotate(-0.7deg); }
.polaroid-card img {
  width: min(100%, 270px);
  aspect-ratio: 5 / 7;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,0.33));
  transition: transform 260ms ease, filter 260ms ease;
}
.polaroid-card:hover img { transform: rotate(0deg) translateY(-6px); filter: drop-shadow(0 28px 34px rgba(0,0,0,0.42)); }
.polaroid-card > div { width: min(100%, 330px); margin-top: 22px; }
.polaroid-card h3 { margin-bottom: 12px; font-size: 25px; }
.polaroid-card p { margin: 0; color: rgba(248,246,242,0.66); font-size: 15px; line-height: 1.53; }
.polaroid-card strong { display: block; margin-bottom: 8px; color: #fff; font-weight: 750; }
.family-closing {
  max-width: 880px;
  margin-top: clamp(80px, 9vw, 125px);
  margin-bottom: 0;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
  color: var(--lilac);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 650;
  letter-spacing: -0.03em;
  text-align: center;
}

.story-section {
  overflow: hidden;
  background: var(--navy-900);
  color: var(--cream);
}
.story-section::before {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(69,66,133,0.35), transparent 67%);
  content: "";
}
.story-section > * { position: relative; z-index: 1; }
.story-copy p:not(.large-copy) { color: rgba(248,246,242,0.67); }
.story-questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(85px, 11vw, 150px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.story-questions span {
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 48px);
  color: var(--lilac);
  font-size: clamp(21px, 2.5vw, 32px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.14;
}
.story-questions span + span { border-left: 1px solid var(--line-dark); }

.mthrntr-section { background: var(--paper); }
.mthrntr-grid { display: grid; grid-template-columns: minmax(0, 1.17fr) minmax(340px, 0.83fr); gap: clamp(50px, 7vw, 100px); align-items: center; }
.mthrntr-visual { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.mthrntr-visual img { width: 100%; aspect-ratio: 11 / 14; object-fit: cover; object-position: center 46%; }
.mthrntr-copy h2 { font-size: clamp(3rem, 5.3vw, 5.6rem); }
.mthrntr-copy p:not(.large-copy) { color: #575757; }

.booth-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  column-gap: clamp(50px, 7vw, 110px);
  background: var(--navy-950);
  color: var(--cream);
}
.booth-section > * { width: auto; margin: 0; }
.booth-section .section-number { grid-column: 1 / -1; width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
.booth-visual { position: relative; align-self: start; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.booth-visual img { width: 100%; min-height: 720px; object-fit: cover; object-position: 52% center; }
.on-air-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  background: rgba(8,16,30,0.78);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.booth-copy { align-self: center; max-width: 620px; }
.booth-copy h2 { font-size: clamp(3rem, 5.1vw, 5.5rem); }
.booth-copy > p:not(.kicker):not(.handwritten):not(.large-copy) { color: rgba(248,246,242,0.68); }
.host-polaroids { display: flex; align-items: flex-start; margin: 44px 0 32px; padding: 12px 0 15px 8px; }
.host-polaroids img { width: 31%; max-width: 150px; filter: drop-shadow(0 18px 20px rgba(0,0,0,0.32)); }
.host-polaroids img:nth-child(1) { transform: rotate(-4deg); }
.host-polaroids img:nth-child(2) { margin-left: -12px; transform: translateY(13px) rotate(2deg); }
.host-polaroids img:nth-child(3) { margin-left: -12px; transform: rotate(4deg); }
.booth-rule { margin: 0; color: #ffd9d5; font-size: clamp(16px, 1.7vw, 22px); transform: rotate(-1.5deg); }

.music-section { overflow: hidden; background: var(--violet); color: var(--cream); }
.music-section > * { position: relative; z-index: 2; }
.music-wave {
  position: absolute;
  z-index: 0;
  top: 70px;
  right: -5vw;
  width: 58vw;
  height: 250px;
  margin: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(90deg, transparent 0 12px, #fff 12px 14px);
  clip-path: polygon(0 45%, 5% 25%, 10% 65%, 15% 35%, 20% 80%, 25% 20%, 30% 58%, 35% 8%, 40% 70%, 45% 32%, 50% 85%, 55% 18%, 60% 72%, 65% 38%, 70% 95%, 75% 24%, 80% 64%, 85% 12%, 90% 75%, 95% 42%, 100% 58%, 100% 60%, 95% 44%, 90% 77%, 85% 14%, 80% 66%, 75% 26%, 70% 97%, 65% 40%, 60% 74%, 55% 20%, 50% 87%, 45% 34%, 40% 72%, 35% 10%, 30% 60%, 25% 22%, 20% 82%, 15% 37%, 10% 67%, 5% 27%, 0 47%);
}
.album-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(64px, 8vw, 112px); }
.album-card img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 25px; border-radius: 10px; box-shadow: 0 24px 48px rgba(10,8,30,0.25); transition: transform 250ms ease; }
.album-card:hover img { transform: translateY(-6px) rotate(-0.5deg); }
.album-card span { color: rgba(248,246,242,0.53); }
.album-card h3 { margin: 12px 0 10px; font-size: 27px; line-height: 1.08; }
.album-card p { max-width: 340px; color: rgba(248,246,242,0.68); font-size: 14px; }
.music-action { display: flex; align-items: center; gap: 24px; margin-top: 65px; padding-top: 35px; border-top: 1px solid var(--line-dark); }
.music-action p { max-width: 620px; margin: 0; color: rgba(248,246,242,0.68); font-size: 15px; }

.development-section { background: var(--lilac); }
.development-section::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 48%;
  background: radial-gradient(circle at 100% 100%, rgba(69,66,133,0.18), transparent 70%);
  content: "";
}
.development-section > * { position: relative; z-index: 1; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(80px, 11vw, 150px); background: rgba(20,42,73,0.2); border: 1px solid rgba(20,42,73,0.2); }
.pillar-grid article { min-height: 310px; padding: clamp(28px, 4vw, 52px); background: var(--lilac); }
.pillar-grid span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 75px; border: 1px solid rgba(20,42,73,0.27); border-radius: 50%; font: 800 11px ui-monospace, monospace; }
.pillar-grid h3 { margin-bottom: 14px; font-size: 30px; }
.pillar-grid p { max-width: 290px; margin: 0; color: #60606a; font-size: 15px; }

.creator-section { overflow: hidden; background: #24213b; color: var(--cream); }
.creator-section::after {
  position: absolute;
  right: -18vw;
  bottom: -28vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255,255,255,0.018), 0 0 0 200px rgba(255,255,255,0.012);
  content: "";
}
.creator-section > * { position: relative; z-index: 1; }
.creator-copy p:not(.large-copy) { color: rgba(248,246,242,0.67); }

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(105px, 13vw, 185px) clamp(20px, 4vw, 64px);
  background: var(--navy-950);
  color: var(--cream);
}
.contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.26), transparent);
  content: "";
}
.contact-glow { position: absolute; top: 10%; left: 8%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(240,75,75,0.15), transparent 68%); }
.contact-inner { position: relative; z-index: 1; width: min(100%, var(--max)); margin: auto; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.74fr); gap: clamp(65px, 9vw, 140px); }
.contact-copy h2 { font-size: clamp(3.6rem, 7.5vw, 7.7rem); }
.contact-copy > p:not(.eyebrow) { max-width: 590px; color: rgba(248,246,242,0.68); }
.contact-form { padding: clamp(26px, 4vw, 48px); background: rgba(255,255,255,0.055); border: 1px solid var(--line-dark); border-radius: var(--radius); backdrop-filter: blur(10px); }
.form-row { margin-bottom: 23px; }
.form-row label { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 8px; color: rgba(248,246,242,0.78); font-size: 14px; font-weight: 720; }
.form-row label span { color: rgba(248,246,242,0.38); font-size: 12px; font-weight: 600; }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(248,246,242,0.34);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  transition: border-color 180ms ease;
}
.form-row textarea { min-height: 145px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus { border-color: var(--red); }
.form-row input[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] { border-color: #ff8d8d; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .button { width: 100%; margin-top: 5px; border: 0; }
.form-privacy { margin: 17px 0 0; color: rgba(248,246,242,0.43); font-size: 12px; text-align: center; }
.form-status { min-height: 24px; margin: 15px 0 0; color: #ffd9d5; font-size: 14px; font-weight: 650; text-align: center; }
.form-status.success { color: #b7f0d1; }
.form-status.error { color: #ffb5b5; }

.site-footer { padding: 80px clamp(20px, 4vw, 64px) 35px; background: #03070e; color: var(--cream); }
.site-footer > * { width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
.footer-wordmark { font-size: 25px; }
.footer-wordmark i { width: 28px; height: 28px; font-size: 13px; }
.site-footer > p { max-width: 650px; margin-top: 28px; color: rgba(248,246,242,0.57); font-size: 15px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px 34px; margin-top: 48px; padding: 28px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-size: 13px; font-weight: 750; }
.site-footer nav a:hover,
.site-footer nav a:focus-visible { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 28px; color: rgba(248,246,242,0.38); font: 700 10px ui-monospace, monospace; letter-spacing: 0.1em; text-transform: uppercase; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

@media (max-width: 1120px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 12px; }
  .booth-section { grid-template-columns: 1fr; }
  .booth-visual, .booth-copy { width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
  .booth-copy { margin-top: 65px; }
  .booth-visual img { min-height: 0; }
  .album-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .site-header { justify-content: space-between; }
  .menu-toggle { position: relative; z-index: 102; display: flex; align-items: center; gap: 12px; padding: 8px 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
  .menu-label { font: 800 10px ui-monospace, monospace; letter-spacing: 0.12em; text-transform: uppercase; }
  .menu-icon { display: grid; gap: 5px; width: 24px; }
  .menu-icon i { width: 24px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-open .menu-icon i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-open .menu-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; padding: 90px 30px 45px; background: rgba(6,12,23,0.985); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { font-size: clamp(1.65rem, 6vw, 2.8rem); font-weight: 850; letter-spacing: -0.05em; line-height: 1.03; }
  .site-nav .nav-cta { margin-top: 6px; padding: 11px 17px; font-size: 14px; letter-spacing: 0; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,11,23,0.97) 0%, rgba(5,11,23,0.73) 62%, rgba(5,11,23,0.38) 100%); }
  .scroll-cue { display: none; }
  .world-grid, .story-grid, .development-grid, .creator-grid, .section-intro, .mthrntr-grid, .contact-inner { grid-template-columns: 1fr; }
  .world-copy, .story-copy, .development-copy, .creator-copy { padding-top: 0; }
  .section-intro { align-items: start; }
  .polaroid-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-questions { grid-template-columns: 1fr; }
  .story-questions span { min-height: 145px; }
  .story-questions span + span { border-top: 1px solid var(--line-dark); border-left: 0; }
  .mthrntr-visual img { aspect-ratio: 5 / 6; object-position: center 43%; }
  .album-grid { grid-template-columns: 1fr; gap: 60px; }
  .album-card { display: grid; grid-template-columns: minmax(180px, 0.82fr) 1.18fr; gap: 28px; align-items: center; }
  .album-card img { margin-bottom: 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-grid article { min-height: auto; }
  .pillar-grid span { margin-bottom: 50px; }
  .contact-inner { gap: 60px; }
  .contact-form { max-width: 720px; }
}

@media (max-width: 590px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(2.75rem, 12.6vw, 4.7rem); }
  h2 { font-size: clamp(2.7rem, 12.4vw, 4.5rem); }
  .hero { min-height: 900px; }
  .hero-image { object-position: 56% center; }
  .hero-content { width: calc(100% - 36px); padding-bottom: 62px; }
  .hero-lead { font-size: 17px; }
  .button-row .button { width: 100%; }
  .section { padding-left: 18px; padding-right: 18px; }
  .world-rule { flex-direction: column; align-items: center; gap: 0.05em; }
  .world-rule strong { font-size: 1.75em; }
  .polaroid-wall { grid-template-columns: 1fr; gap: 70px; }
  .polaroid-card img { width: min(82vw, 300px); }
  .polaroid-card > div { text-align: center; }
  .mthrntr-section { padding-left: 0; padding-right: 0; }
  .mthrntr-section .section-number, .mthrntr-copy { padding-left: 18px; padding-right: 18px; }
  .mthrntr-visual { border-radius: 0; }
  .mthrntr-visual img { aspect-ratio: 11 / 14; }
  .booth-section { padding-left: 18px; padding-right: 18px; }
  .host-polaroids img { width: 35%; }
  .album-card { grid-template-columns: 1fr; gap: 0; }
  .album-card img { margin-bottom: 22px; }
  .music-action { align-items: flex-start; flex-direction: column; }
  .music-action .button { width: 100%; }
  .contact-section { padding-left: 18px; padding-right: 18px; }
  .contact-form { padding: 25px 20px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
