:root {
  color-scheme: light;
  --paper: #f3f0e9;
  --ink: #1c1b18;
  --ink-soft: #5b574e;
  --bronze: #876847;
  --bronze-deep: #705238;
  --line: rgba(28, 27, 24, 0.2);
  --line-soft: rgba(28, 27, 24, 0.11);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  z-index: 10;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 0.9rem;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.site-header,
.hero,
.manifesto,
.site-footer {
  width: calc(100% - 6rem);
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2.1rem;
  padding-bottom: 1.35rem;
}

.wordmark {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
}

.wordmark__dot {
  color: var(--bronze);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.header-meta__rule {
  display: block;
  width: 1.8rem;
  height: 1px;
  background: var(--line);
}

main {
  flex: 1;
  display: grid;
  align-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  padding-top: clamp(2rem, 4vh, 4rem);
  padding-bottom: clamp(2rem, 4vh, 4rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.eyebrow,
.section-label,
.figure-caption,
.hero-note dt,
.site-footer {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--bronze-deep);
}

.eyebrow::before,
.section-label::before {
  display: block;
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 9ch;
  margin: clamp(1.7rem, 3.3vw, 3.4rem) 0 1.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4.3rem, 7.4vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.082em;
  line-height: 0.86;
}

.hero h1 em {
  color: var(--bronze-deep);
  font-style: italic;
  letter-spacing: -0.095em;
}

.hero-intro {
  max-width: 31rem;
  margin: 0;
  color: #39352e;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  letter-spacing: -0.012em;
  line-height: 1.55;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: clamp(2.3rem, 4.5vw, 4.5rem) 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-note {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-note dt {
  color: var(--ink-soft);
}

.hero-note dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.03rem;
  line-height: 1.12;
}

.hero-figure {
  width: min(100%, 730px);
  margin: 0;
  justify-self: end;
}

.watch-stage {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
}

.watch-stage::before {
  position: absolute;
  bottom: 10%;
  left: 13%;
  width: 74%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(112, 82, 56, 0.18) 0%, rgba(112, 82, 56, 0.08) 43%, transparent 73%);
  content: "";
  filter: blur(1px);
  transform: rotate(-8deg);
}

.watch-stage picture,
.watch-stage img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.watch-stage img {
  filter: drop-shadow(0 1.4rem 1.8rem rgba(39, 29, 20, 0.12));
  object-fit: contain;
}

.figure-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.figure-caption span:first-child {
  flex: 0 0 auto;
  color: var(--bronze-deep);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(11rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(2rem, 8vw, 10rem);
  padding-top: clamp(1.3rem, 2.5vw, 2rem);
  padding-bottom: clamp(5rem, 10vw, 10rem);
  border-top: 1px solid var(--line);
}

.manifesto-copy {
  display: grid;
  gap: 1.8rem;
  max-width: 48rem;
}

.manifesto-lede {
  max-width: 14ch;
  margin: -0.08em 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.8vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.manifesto-copy p:last-child {
  max-width: 35rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
  padding-bottom: 1.65rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.site-footer span:first-child {
  color: var(--ink);
  letter-spacing: -0.025em;
  text-transform: none;
}

.site-footer .wordmark__dot {
  color: var(--bronze);
}

.error-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 3rem);
  max-width: 1600px;
  min-height: min(70svh, 48rem);
  margin-right: auto;
  margin-left: auto;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.error-code {
  margin: 0 0 1.7rem;
  color: var(--bronze-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.error-title {
  max-width: 11ch;
  margin: 0 0 1.8rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.error-copy {
  max-width: 28rem;
  margin: 0 0 2.2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.error-link {
  width: fit-content;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--bronze);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

a:focus-visible {
  outline: 2px solid var(--bronze-deep);
  outline-offset: 0.35rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 2rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-figure {
    width: min(100%, 720px);
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .site-header,
  .hero,
  .manifesto,
  .site-footer,
  .error-main {
    width: calc(100% - 2.25rem);
  }

  .site-header {
    align-items: flex-start;
    padding-top: 1.45rem;
  }

  .header-meta {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    max-width: 10rem;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .header-meta__rule {
    width: 1.1rem;
  }

  .hero {
    gap: 0.5rem;
    padding-top: 1.8rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    max-width: 8.6ch;
    margin-top: 1.55rem;
    margin-bottom: 1.6rem;
    font-size: clamp(3.85rem, 17.6vw, 6rem);
  }

  .hero-intro {
    font-size: 1.04rem;
  }

  .hero-notes {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 2.5rem;
  }

  .hero-note {
    display: grid;
    grid-template-columns: 6.8rem minmax(0, 1fr);
    align-items: baseline;
    gap: 0.65rem;
  }

  .figure-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-top: 1.15rem;
    padding-bottom: 5.7rem;
  }

  .manifesto-lede {
    max-width: 12ch;
    font-size: clamp(2.55rem, 11.2vw, 3.7rem);
  }

  .site-footer {
    flex-direction: column;
    gap: 0.65rem;
    padding-bottom: 1.4rem;
    font-size: 0.75rem;
  }

  .error-main {
    min-height: 70svh;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .error-title {
    font-size: clamp(3.85rem, 17vw, 6rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body,
  html {
    background: #fff;
  }

  .skip-link {
    display: none;
  }

  .watch-stage img {
    filter: none;
  }
}
