:root {
  --paper: #f2ecde;
  --ink: #151613;
  --muted: #67655e;
  --rule: #bdb5a5;
  --red: #9c3f31;
  --blue: #214f9b;
  --white: #fffaf0;
  --page: min(100% - 48px, 1440px);
  --space-xs: clamp(0.7rem, 0.5rem + 0.35vw, 1rem);
  --space-sm: clamp(1.1rem, 0.8rem + 0.7vw, 1.8rem);
  --space-md: clamp(2rem, 1.3rem + 1.5vw, 3.5rem);
  --space-lg: clamp(4rem, 2.5rem + 4vw, 8rem);
  --space-xl: clamp(6.5rem, 4rem + 7vw, 13rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-underline-offset: 0.2em; text-decoration-thickness: 1px; }

a:hover { color: var(--red); }

a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

p, h1, h2, ul, ol, figure, blockquote { margin-top: 0; }

h1, h2, p, li, a { overflow-wrap: break-word; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.page-shell { width: var(--page); margin-inline: auto; }

.site-header {
  width: var(--page);
  margin-inline: auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: 3fr 2fr 7fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
}

.wordmark {
  width: max-content;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.header-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a { text-decoration: none; border-bottom: 1px solid transparent; }
.site-nav a[aria-current="page"] { color: var(--red); border-color: currentColor; }

.kicker {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker span { color: var(--red); margin-right: 1.2rem; }

.hero {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  padding-top: clamp(4rem, 8vw, 8.5rem);
}

.hero-title { grid-column: 1 / 10; }

.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(4rem, 9.3vw, 9rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.hero-index {
  grid-column: 11 / -1;
  align-self: end;
  padding-bottom: 0.3rem;
  border-top: 4px solid var(--blue);
}

.index-label {
  margin: 0.7rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-index ol { padding: 0; margin: 0; list-style: none; }
.hero-index li { display: flex; gap: 0.8rem; padding: 0.25rem 0; font-size: 0.74rem; line-height: 1.25; }
.hero-index li span { color: var(--red); font-variant-numeric: tabular-nums; }

.hero-deck {
  grid-column: 2 / 8;
  max-width: 740px;
  margin: clamp(3rem, 6vw, 6rem) 0 clamp(2.5rem, 5vw, 5rem);
  font-size: clamp(1.25rem, 1rem + 0.9vw, 2rem);
  line-height: 1.33;
  letter-spacing: -0.025em;
}

.hero-figure { grid-column: 2 / 12; margin-bottom: 0; }
.hero-figure img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; filter: saturate(0.78) contrast(1.04); }

figcaption {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--ink);
  font-size: 0.7rem;
  line-height: 1.45;
}

figcaption span { flex: 0 0 auto; color: var(--red); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  padding-block: var(--space-xl);
  border-top: 1px solid var(--ink);
}

.intro-section { margin-top: var(--space-xl); }

.section-number {
  grid-column: 1 / 3;
  margin: -0.22em 0 0;
  color: var(--red);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.section-heading { grid-column: 4 / 11; }

.section-heading h2 {
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.body-copy { color: #292a26; }
.body-copy p { margin-bottom: 1.25em; }
.body-copy p:last-child { margin-bottom: 0; }
.body-copy--wide { grid-column: 4 / 9; font-size: clamp(1.05rem, 1rem + 0.25vw, 1.3rem); }

.margin-list {
  grid-column: 10 / -1;
  align-self: start;
  padding-top: 0.7rem;
  border-top: 4px solid var(--blue);
}

.list-title {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.margin-list ul, .legal-aside ul { padding: 0; margin: 0; list-style: none; }
.margin-list li, .legal-aside li { padding: 0.62rem 0; border-top: 1px solid var(--rule); font-size: 0.82rem; line-height: 1.35; }

.section-heading--offset { grid-column: 4 / 10; }
.camera-copy { grid-column: 5 / 10; }

.camera-note {
  grid-column: 10 / -1;
  grid-row: 2 / span 2;
  padding-left: var(--space-sm);
  border-left: 1px solid var(--ink);
  font-size: 0.78rem;
  line-height: 1.45;
}

.camera-note .note-mark {
  margin-bottom: 3rem;
  color: var(--blue);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.camera-note strong { display: block; color: var(--red); font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; }

.image-section { row-gap: var(--space-md); }
.detail-figure { grid-column: 1 / 8; grid-row: 1 / span 3; margin: 0; align-self: start; }
.detail-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(0.72) contrast(1.08); }
.image-section > .section-number { grid-column: 9 / -1; grid-row: 1; }
.image-section > .section-heading { grid-column: 9 / -1; grid-row: 2; }
.image-section .section-heading h2 { font-size: clamp(2.4rem, 4vw, 4.4rem); }
.lighting-copy { grid-column: 9 / -1; grid-row: 3; }

.technical-scale {
  grid-column: 3 / 8;
  margin-top: var(--space-md);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem 1rem;
  align-items: center;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.technical-scale i { height: 1px; background: var(--rule); }
.technical-scale b { color: var(--red); font-size: 0.6rem; }

.sound-section { position: relative; }
.sound-section::before { content: ""; position: absolute; z-index: -1; top: var(--space-xl); bottom: var(--space-xl); left: 50%; width: 1px; background: var(--rule); }
.sound-grid { grid-column: 4 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 6rem); }

.sound-check {
  grid-column: 4 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-top: var(--space-lg);
  padding-top: 1rem;
  border-top: 4px solid var(--blue);
}

.sound-check ol { padding: 0; margin: 0; list-style: none; }
.sound-check li { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; padding: 0.65rem 0; border-top: 1px solid var(--rule); font-size: 0.85rem; }
.sound-check li:first-child { border-top: 0; }
.sound-check li span { color: var(--red); font-weight: 800; }

.section-heading--narrow { grid-column: 4 / 9; }
.background-copy { grid-column: 4 / 9; }

blockquote {
  grid-column: 10 / -1;
  align-self: end;
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 4px solid var(--red);
  color: var(--blue);
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

blockquote p { margin: 0; }
.reflection-copy { grid-column: 5 / 11; font-size: clamp(1.05rem, 1rem + 0.25vw, 1.3rem); }

.final-check { color: var(--paper); background: var(--ink); }
.final-check-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; padding-block: var(--space-xl); }
.final-check .section-number { color: #c85b47; }
.final-check .section-heading { grid-column: 4 / -1; }
.final-check .kicker { color: #b9b2a5; }
.final-check .section-heading h2 { max-width: 900px; }

.checklist { grid-column: 4 / 11; padding: 0; margin: var(--space-md) 0 0; list-style: none; border-top: 1px solid #716d65; }
.checklist li { display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; padding: 1.2rem 0; border-bottom: 1px solid #716d65; }
.checklist li > span { color: #c85b47; font-weight: 800; }
.checklist p { margin: 0; }
.checklist strong { display: inline-block; min-width: 7rem; color: var(--white); }

.closing-note {
  grid-column: 8 / -1;
  margin: var(--space-lg) 0 0;
  color: #d1cabd;
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.7rem);
  line-height: 1.35;
}

.site-footer {
  width: var(--page);
  min-height: 230px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 24px;
  align-items: center;
}

.footer-brand { width: max-content; font-size: clamp(2.7rem, 5vw, 5.5rem); font-weight: 800; line-height: 0.9; letter-spacing: -0.075em; text-decoration: none; }
.footer-contact { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.8rem; }
.footer-contact span { color: var(--red); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-nav { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; font-size: 0.75rem; }
.footer-nav a[aria-current="page"] { color: var(--red); }

.legal-main { padding-bottom: var(--space-xl); }
.legal-hero { display: grid; grid-template-columns: 2fr 7fr 3fr; gap: 24px; padding-block: clamp(5rem, 10vw, 11rem) var(--space-lg); border-bottom: 1px solid var(--ink); }
.legal-index { color: var(--red); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; }
.legal-hero h1 { max-width: 920px; margin: 0; font-size: clamp(4rem, 8vw, 8rem); font-weight: 800; line-height: 0.84; letter-spacing: -0.07em; }
.legal-lead { align-self: end; margin: 0; color: var(--blue); font-size: 1.08rem; font-weight: 700; line-height: 1.35; }

.legal-content { display: grid; grid-template-columns: 2fr 1fr 6fr 3fr; gap: 24px; padding-top: var(--space-lg); }
.legal-aside { grid-column: 1 / 2; align-self: start; padding-top: 0.8rem; border-top: 4px solid var(--blue); }
.legal-article { grid-column: 3 / 4; }
.legal-article section { padding: 0 0 var(--space-lg); }
.legal-article section + section { padding-top: var(--space-lg); border-top: 1px solid var(--rule); }
.legal-article h2 { margin-bottom: 1.4rem; font-size: clamp(1.8rem, 2.7vw, 3rem); line-height: 1.05; letter-spacing: -0.04em; }
.legal-article p { margin-bottom: 1.2rem; color: #292a26; }
.legal-article code { font-family: Consolas, monospace; font-size: 0.88em; }
.legal-article address { margin-top: 2rem; padding: 1.2rem 0; border-top: 4px solid var(--red); border-bottom: 1px solid var(--rule); font-style: normal; }
.legal-date { color: var(--muted) !important; font-size: 0.74rem; letter-spacing: 0.05em; }

@media (max-width: 1080px) {
  :root { --page: min(100% - 40px, 960px); }
  .site-header { grid-template-columns: 1fr 2fr; padding-block: 1.2rem; }
  .header-note { display: none; }
  .hero-title { grid-column: 1 / 11; }
  .hero-index { grid-column: 11 / -1; }
  .hero h1 { font-size: clamp(4.2rem, 10vw, 7rem); }
  .hero-deck { grid-column: 2 / 9; }
  .section-number { grid-column: 1 / 3; }
  .section-heading { grid-column: 3 / 11; }
  .body-copy--wide { grid-column: 3 / 9; }
  .margin-list { grid-column: 10 / -1; }
  .camera-copy { grid-column: 3 / 9; }
  .camera-note { grid-column: 10 / -1; }
  .detail-figure { grid-column: 1 / 8; }
  .image-section > .section-number, .image-section > .section-heading, .lighting-copy { grid-column: 9 / -1; }
  .sound-grid, .sound-check { grid-column: 3 / -1; }
  .background-copy { grid-column: 3 / 9; }
  .background-section blockquote { grid-column: 10 / -1; }
  .reflection-copy { grid-column: 3 / 11; }
  .final-check .section-heading, .checklist { grid-column: 3 / -1; }
  .closing-note { grid-column: 7 / -1; }
  .legal-hero { grid-template-columns: 2fr 7fr 3fr; }
  .legal-content { grid-template-columns: 2fr 1fr 7fr 2fr; }
}

@media (max-width: 760px) {
  :root { --page: min(100% - 28px, 680px); }
  body { font-size: 16px; }
  .site-header { min-height: 0; grid-template-columns: 1fr; gap: 1rem; }
  .site-nav { justify-self: stretch; justify-content: flex-start; gap: 0.7rem 1.1rem; }
  .hero { padding-top: 4.5rem; }
  .hero-title { grid-column: 1 / -1; }
  .hero h1 { max-width: 620px; font-size: clamp(3.5rem, 16vw, 6.3rem); }
  .hero-index { grid-column: 9 / -1; margin-top: 3rem; }
  .hero-deck { grid-column: 1 / 9; grid-row: 2; margin: 3rem 0; }
  .hero-figure { grid-column: 1 / -1; }
  .hero-figure img { aspect-ratio: 4 / 3; }
  figcaption { flex-direction: column; gap: 0.35rem; }
  .section { row-gap: 2rem; }
  .section-number { grid-column: 1 / 4; }
  .section-heading, .section-heading--offset, .section-heading--narrow { grid-column: 4 / -1; }
  .body-copy--wide, .camera-copy, .background-copy, .reflection-copy { grid-column: 4 / -1; }
  .margin-list { grid-column: 4 / -1; margin-top: 1rem; }
  .camera-note { grid-column: 4 / -1; grid-row: auto; display: grid; grid-template-columns: 3rem 1fr 1fr; gap: 1.2rem; padding: 1rem 0 0; border-top: 1px solid var(--ink); border-left: 0; }
  .camera-note .note-mark { margin: 0; }
  .image-section { display: grid; }
  .detail-figure { grid-column: 1 / -1; grid-row: 1; margin-bottom: 2rem; }
  .image-section > .section-number { grid-column: 1 / 4; grid-row: 2; }
  .image-section > .section-heading { grid-column: 4 / -1; grid-row: 2; }
  .lighting-copy { grid-column: 4 / -1; grid-row: 3; }
  .technical-scale { grid-column: 4 / -1; }
  .sound-section::before { display: none; }
  .sound-grid { grid-column: 4 / -1; grid-template-columns: 1fr; gap: 1.5rem; }
  .sound-check { grid-column: 4 / -1; grid-template-columns: 1fr; }
  .background-section blockquote { grid-column: 4 / -1; }
  .final-check .section-heading, .checklist { grid-column: 4 / -1; }
  .closing-note { grid-column: 4 / -1; }
  .site-footer { min-height: 0; grid-template-columns: 1fr 1fr; padding-block: 4rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-nav { justify-self: end; }
  .legal-hero { grid-template-columns: 2fr 10fr; gap: 1.5rem 24px; padding-top: 5rem; }
  .legal-hero > div { grid-column: 2 / -1; }
  .legal-lead { grid-column: 2 / -1; }
  .legal-content { grid-template-columns: 2fr 10fr; }
  .legal-aside { grid-column: 1 / -1; display: grid; grid-template-columns: 2fr 10fr; gap: 24px; }
  .legal-aside ul { grid-column: 2 / -1; }
  .legal-article { grid-column: 2 / -1; }
}

@media (max-width: 500px) {
  :root { --page: min(100% - 24px, 460px); }
  .site-nav { display: grid; grid-template-columns: 1fr 1fr; }
  .hero { display: block; }
  .hero-index { display: none; }
  .hero-deck { margin-block: 3rem; }
  .section, .final-check-grid { grid-template-columns: 3.25rem minmax(0, 1fr); column-gap: 1rem; }
  .section-number { grid-column: 1; font-size: 2.8rem; }
  .section-heading, .section-heading--offset, .section-heading--narrow,
  .body-copy--wide, .camera-copy, .background-copy, .reflection-copy,
  .margin-list, .camera-note, .sound-grid, .sound-check,
  .background-section blockquote, .technical-scale { grid-column: 2; }
  .section-heading h2 { font-size: clamp(2.15rem, 11vw, 3rem); }
  .camera-note { grid-template-columns: 1fr; }
  .camera-note .note-mark { display: none; }
  .detail-figure { grid-column: 1 / -1; }
  .image-section > .section-number { grid-column: 1; }
  .image-section > .section-heading, .lighting-copy { grid-column: 2; }
  .sound-check { gap: 0; }
  .checklist, .closing-note, .final-check .section-heading { grid-column: 2; }
  .checklist li { grid-template-columns: 2rem 1fr; gap: 0.7rem; }
  .checklist strong { display: block; min-width: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-brand, .footer-contact, .footer-nav { grid-column: 1; }
  .footer-nav { justify-self: start; align-items: flex-start; }
  .legal-hero { grid-template-columns: 3.25rem minmax(0, 1fr); }
  .legal-hero h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .legal-content { grid-template-columns: 3.25rem minmax(0, 1fr); }
  .legal-aside { display: block; grid-column: 1 / -1; }
  .legal-article { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
