:root {
  --pitch-ink: #061f21;
  --pitch-teal: #0a3436;
  --pitch-teal-soft: #155154;
  --pitch-paper: #faf3e7;
  --pitch-paper-deep: #eee1cb;
  --pitch-gold: #d48912;
  --pitch-gold-soft: #dfb96f;
  --pitch-copy: #172526;
  --pitch-display: "Iowan Old Style", Baskerville, "Palatino Linotype", Georgia, serif;
  --pitch-label: "Josefin Sans", "Arial Narrow", sans-serif;
  --pitch-body: "Lato", Arial, sans-serif;
}

.pitch-page {
  background: var(--pitch-paper);
  color: var(--pitch-copy);
  font-family: var(--pitch-body);
  line-height: 1.6;
}

.pitch-page ::selection {
  background: var(--pitch-gold);
  color: var(--pitch-ink);
}

.pitch-page h1,
.pitch-page h2,
.pitch-page h3 {
  font-family: var(--pitch-display);
}

.pitch-page p {
  font-size: clamp(1.6rem, 1.4vw, 1.9rem);
  font-weight: 400;
}

.pitch-page a:focus-visible {
  outline: 0.3rem solid var(--pitch-gold-soft);
  outline-offset: 0.4rem;
}

.pitch-skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 1rem 1.4rem;
  background: var(--pitch-paper);
  color: var(--pitch-ink);
  font-family: var(--pitch-label);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.pitch-site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 8rem;
  padding: 1.2rem clamp(1.5rem, 4vw, 5rem);
  border-bottom: 0.1rem solid rgba(212, 137, 18, 0.55);
  background: var(--pitch-ink);
}

.pitch-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
}

.pitch-logo,
.pitch-footer-brand {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border: 0.1rem solid var(--pitch-paper);
  background: var(--pitch-gold);
  color: var(--pitch-ink);
  font-family: var(--fancy-font);
  font-size: 2.8rem;
  line-height: 1;
}

.pitch-site-name {
  color: var(--pitch-paper);
  font-family: var(--pitch-label);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pitch-site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem clamp(1rem, 2.2vw, 2.8rem);
}

.pitch-site-nav a {
  position: relative;
  padding: 0.8rem 0;
  color: var(--pitch-paper);
  font-family: var(--pitch-label);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.pitch-site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 0.1rem;
  background: var(--pitch-gold);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.pitch-site-nav a:hover::after,
.pitch-site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.pitch-hero,
.pitch-closing {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(10, 52, 54, 0.96), rgba(6, 31, 33, 0.99) 66%),
    var(--pitch-ink);
  color: var(--pitch-paper);
}

.pitch-hero {
  min-height: 100vh;
  min-height: 100svh;
}

.pitch-hero::before {
  position: absolute;
  inset: -35% -10% auto auto;
  width: 70%;
  height: 140%;
  background: linear-gradient(160deg, rgba(223, 185, 111, 0.14), transparent 66%);
  clip-path: polygon(48% 0, 100% 0, 70% 100%, 0 100%);
  content: "";
}

.pitch-deco-frame {
  position: absolute;
  inset: clamp(1.2rem, 2.4vw, 3rem);
  border: 0.1rem solid rgba(223, 185, 111, 0.65);
  clip-path: polygon(2.2rem 0, calc(100% - 2.2rem) 0, 100% 2.2rem, 100% calc(100% - 2.2rem), calc(100% - 2.2rem) 100%, 2.2rem 100%, 0 calc(100% - 2.2rem), 0 2.2rem);
  pointer-events: none;
}

.pitch-deco-frame::before {
  position: absolute;
  inset: 0.7rem;
  border: 0.1rem solid rgba(223, 185, 111, 0.22);
  content: "";
}

.pitch-hero-inner,
.pitch-shell,
.pitch-closing-inner {
  width: min(calc(100% - clamp(4rem, 10vw, 13rem)), 124rem);
  margin-inline: auto;
}

.pitch-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(8rem, 12vw, 14rem) 0 clamp(7rem, 10vw, 11rem);
}

.pitch-breadcrumb,
.pitch-eyebrow,
.pitch-section-label,
.pitch-card-label,
.pitch-credit,
.pitch-storyboard-frame figcaption {
  font-family: var(--pitch-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pitch-breadcrumb {
  margin-bottom: clamp(3rem, 5vw, 6rem);
  color: var(--pitch-gold-soft);
  font-size: 1.25rem;
  text-underline-offset: 0.5rem;
}

.pitch-eyebrow,
.pitch-section-label,
.pitch-card-label {
  margin: 0 0 1.4rem;
  color: #765f38;
  font-size: 1.2rem;
}

.pitch-eyebrow,
.pitch-label-light,
.pitch-card-label {
  color: var(--pitch-gold-soft);
}

.pitch-section-label::before,
.pitch-eyebrow::before {
  display: inline-block;
  width: 4.5rem;
  height: 0.1rem;
  margin: 0 1.1rem 0.35rem 0;
  background: currentColor;
  content: "";
}

.pitch-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(5rem, 9.2vw, 12rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.pitch-hero h1 span {
  display: block;
}

.pitch-hero h1 span:last-child {
  margin-left: clamp(1.5rem, 8vw, 10rem);
  color: var(--pitch-gold-soft);
  font-style: italic;
}

.pitch-hook {
  max-width: 38ch;
  margin: clamp(3.5rem, 6vw, 6rem) 0 2.8rem;
  font-family: var(--pitch-display);
  font-size: clamp(2.3rem, 3vw, 3.8rem) !important;
  line-height: 1.2;
}

.pitch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1.2rem 1.8rem;
  border: 0.1rem solid var(--pitch-gold-soft);
  border-radius: 0;
  font-family: var(--pitch-label);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.pitch-button:hover {
  transform: translateY(-0.2rem);
}

.pitch-button-gold {
  background: var(--pitch-gold-soft);
  color: var(--pitch-ink);
}

.pitch-button-gold:hover {
  background: transparent;
  color: var(--pitch-paper);
}

.pitch-logline {
  width: 100%;
  margin: clamp(4rem, 7vw, 8rem) 0 0;
  padding: 2rem clamp(1rem, 3vw, 3rem);
  border-top: 0.1rem solid rgba(223, 185, 111, 0.7);
  border-bottom: 0.1rem solid rgba(223, 185, 111, 0.7);
  color: var(--pitch-paper);
  font-family: var(--pitch-display);
  font-size: clamp(2rem, 2.5vw, 3rem) !important;
  line-height: 1.35;
  text-align: center;
}

.pitch-section {
  padding: clamp(7rem, 10vw, 13rem) 0;
}

.pitch-paper {
  background: var(--pitch-paper);
}

.pitch-ink {
  background: var(--pitch-ink);
  color: var(--pitch-paper);
}

.pitch-intro-grid {
  display: grid;
  grid-template-columns: minmax(26rem, 0.9fr) minmax(30rem, 1.1fr);
  gap: 4rem clamp(5rem, 9vw, 12rem);
}

.pitch-heading-block h2,
.pitch-contest-heading h2,
.pitch-split-heading h2,
.pitch-screen-copy h2,
.pitch-why-grid h2,
.pitch-creator h2,
.pitch-closing h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.pitch-heading-block h2 {
  max-width: 9ch;
  color: var(--pitch-teal);
  font-size: clamp(4.5rem, 6vw, 8rem);
}

.pitch-copy {
  align-self: end;
}

.pitch-copy p {
  margin: 0;
  font-family: var(--pitch-display);
  font-size: clamp(1.9rem, 1.8vw, 2.35rem);
  line-height: 1.62;
}

.pitch-copy p + p {
  margin-top: 1.8rem;
}

.pitch-drop-cap p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em -0.05em 0;
  color: var(--pitch-gold);
  font-family: var(--pitch-display);
  font-size: 5em;
  line-height: 0.72;
}

.pitch-format-quote {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(14rem, 0.35fr) minmax(0, 1.65fr);
  gap: 3rem;
  align-items: center;
  margin: clamp(3rem, 6vw, 7rem) 0 0;
  padding: 2.2rem 0;
  border-top: 0.1rem solid var(--pitch-gold);
  border-bottom: 0.1rem solid var(--pitch-gold);
}

.pitch-format-quote span {
  color: #765f38;
  font-family: var(--pitch-label);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pitch-format-quote p {
  margin: 0;
  color: var(--pitch-teal);
  font-family: var(--pitch-display);
  font-size: clamp(2.3rem, 3vw, 3.5rem);
  font-style: italic;
  line-height: 1.35;
}

.pitch-contest-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 3rem;
}

.pitch-contest-heading h2 {
  max-width: 18ch;
  font-size: clamp(4.6rem, 6.8vw, 9rem);
}

.pitch-contest-heading h2 em,
.pitch-split-heading h2 em {
  display: block;
  color: var(--pitch-gold-soft);
  font-weight: 500;
}

.pitch-contest-grid {
  display: grid;
  grid-template-columns: minmax(27rem, 0.8fr) minmax(35rem, 1.2fr);
  gap: clamp(4rem, 7vw, 9rem);
  margin-top: clamp(5rem, 8vw, 9rem);
}

.pitch-beaumont-card {
  position: relative;
  padding: clamp(2.7rem, 4vw, 5rem);
  border: 0.1rem solid rgba(223, 185, 111, 0.58);
  clip-path: polygon(1.6rem 0, 100% 0, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%, 0 1.6rem);
}

.pitch-beaumont-card::after {
  position: absolute;
  inset: 0.7rem;
  border: 0.1rem solid rgba(223, 185, 111, 0.18);
  content: "";
  pointer-events: none;
}

.pitch-beaumont-card h3 {
  margin: 1rem 0 1.5rem;
  font-size: clamp(3.5rem, 4vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
}

.pitch-beaumont-card p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(250, 243, 231, 0.78);
}

.pitch-ambitions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0.1rem solid rgba(223, 185, 111, 0.4);
}

.pitch-ambitions article {
  min-height: 13rem;
  padding: 2.2rem;
  border-bottom: 0.1rem solid rgba(223, 185, 111, 0.4);
}

.pitch-ambitions article:nth-child(odd) {
  border-right: 0.1rem solid rgba(223, 185, 111, 0.4);
}

.pitch-ambitions h3 {
  margin: 0;
  font-size: clamp(2.5rem, 2.8vw, 4rem);
  font-weight: 500;
}

.pitch-ambitions p {
  margin: 0.5rem 0 0;
  color: rgba(250, 243, 231, 0.62);
  font-family: var(--pitch-label);
  font-size: 1.15rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pitch-ensemble {
  max-width: 57ch;
  margin: clamp(5rem, 8vw, 9rem) 0 0 auto;
  color: rgba(250, 243, 231, 0.86);
  font-family: var(--pitch-display);
  font-size: clamp(2.2rem, 2.3vw, 3.2rem) !important;
  line-height: 1.48;
}

.pitch-split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(4rem, 8vw, 10rem);
  align-items: end;
}

.pitch-split-heading h2 {
  color: var(--pitch-teal);
  font-size: clamp(4.6rem, 6vw, 8.2rem);
}

.pitch-split-heading > p {
  max-width: 34ch;
  margin: 0 0 0.5rem;
  color: #4a5a5b;
  font-family: var(--pitch-display);
  font-size: clamp(1.9rem, 1.9vw, 2.5rem);
}

.pitch-set-pieces {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(4rem, 7vw, 8rem);
  border-top: 0.1rem solid var(--pitch-gold);
}

.pitch-set-pieces article {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-bottom: 0.1rem solid rgba(212, 137, 18, 0.45);
}

.pitch-set-pieces article:nth-child(odd) {
  padding-right: clamp(3rem, 5vw, 7rem);
  border-right: 0.1rem solid rgba(212, 137, 18, 0.45);
}

.pitch-set-pieces article:nth-child(even) {
  padding-left: clamp(3rem, 5vw, 7rem);
}

.pitch-set-pieces h3 {
  margin: 0;
  color: var(--pitch-teal);
  font-size: clamp(2.4rem, 2.6vw, 3.5rem);
  font-weight: 500;
}

.pitch-set-pieces p {
  max-width: 56ch;
  margin: 0.8rem 0 0;
  color: #455354;
}

.pitch-sketch-section {
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, transparent 0 8rem, rgba(223, 185, 111, 0.05) 8rem 8.1rem),
    var(--pitch-teal);
  color: var(--pitch-paper);
}

.pitch-sketch-grid {
  display: grid;
  grid-template-columns: minmax(25rem, 0.62fr) minmax(40rem, 1.38fr);
  gap: clamp(4rem, 8vw, 10rem);
  align-items: center;
}

.pitch-screen-copy h2 {
  max-width: 9ch;
  font-size: clamp(4.3rem, 5.5vw, 7.5rem);
}

.pitch-screen-copy > p:last-child {
  margin: 2.5rem 0 0;
  color: rgba(250, 243, 231, 0.75);
  font-family: var(--pitch-display);
  font-size: clamp(2rem, 2vw, 2.6rem);
  line-height: 1.58;
}

.pitch-storyboard-frame {
  position: relative;
  margin: 0;
  padding: clamp(1.2rem, 2vw, 2rem);
  border: 0.1rem solid rgba(223, 185, 111, 0.72);
  background: rgba(6, 31, 33, 0.46);
  clip-path: polygon(1.8rem 0, 100% 0, 100% calc(100% - 1.8rem), calc(100% - 1.8rem) 100%, 0 100%, 0 1.8rem);
}

.pitch-storyboard-frame::before {
  position: absolute;
  inset: 0.65rem;
  border: 0.1rem solid rgba(223, 185, 111, 0.22);
  content: "";
  pointer-events: none;
}

.pitch-storyboard-frame img {
  position: relative;
  z-index: 1;
  display: block;
  height: auto;
  filter: saturate(0.82) contrast(1.02);
}

.pitch-storyboard-frame figcaption {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 0.4rem;
  color: var(--pitch-gold-soft);
  font-size: 1.1rem;
  text-align: left;
}

.pitch-why-now {
  position: relative;
  background: var(--pitch-paper);
}

.pitch-why-now::before,
.pitch-why-now::after {
  position: absolute;
  left: 50%;
  width: min(calc(100% - 4rem), 124rem);
  height: 0.1rem;
  background: linear-gradient(90deg, transparent, var(--pitch-gold) 15%, var(--pitch-gold) 85%, transparent);
  content: "";
  transform: translateX(-50%);
}

.pitch-why-now::before {
  top: 3rem;
}

.pitch-why-now::after {
  bottom: 3rem;
}

.pitch-why-grid {
  display: grid;
  grid-template-columns: 0.35fr 0.8fr 0.85fr;
  gap: clamp(3rem, 7vw, 9rem);
}

.pitch-why-grid h2 {
  color: var(--pitch-teal);
  font-size: clamp(4rem, 5.5vw, 7.3rem);
}

.pitch-why-grid > p:last-child {
  margin: 0.6rem 0 0;
  color: #384748;
  font-family: var(--pitch-display);
  font-size: clamp(2.1rem, 2.1vw, 2.8rem);
  line-height: 1.52;
}

.pitch-creator {
  background: var(--pitch-paper-deep);
}

.pitch-creator-grid {
  display: grid;
  grid-template-columns: minmax(25rem, 0.75fr) minmax(38rem, 1.25fr);
  gap: clamp(5rem, 10vw, 13rem);
  align-items: center;
}

.pitch-archive-mark {
  position: relative;
  display: grid;
  place-content: center;
  width: min(100%, 43rem);
  aspect-ratio: 1;
  border: 0.1rem solid rgba(10, 52, 54, 0.58);
  color: var(--pitch-teal);
  font-family: var(--pitch-label);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}

.pitch-archive-mark::before {
  position: absolute;
  inset: 0.8rem;
  border: 0.1rem solid rgba(212, 137, 18, 0.68);
  content: "";
}

.pitch-archive-mark::after {
  position: absolute;
  top: 50%;
  right: -2rem;
  left: -2rem;
  height: 0.1rem;
  background: var(--pitch-gold);
  content: "";
}

.pitch-archive-mark span {
  font-size: clamp(1.1rem, 1.4vw, 1.7rem);
  letter-spacing: 0.24em;
}

.pitch-archive-mark strong {
  color: var(--pitch-gold);
  font-family: var(--pitch-display);
  font-size: clamp(6rem, 8vw, 11rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
  text-transform: lowercase;
}

.pitch-creator blockquote {
  max-width: 35ch;
  margin: 3rem 0 2rem;
  padding: 0;
  border: 0;
  color: var(--pitch-teal);
  font-family: var(--pitch-display);
  font-size: clamp(2.3rem, 2.6vw, 3.5rem);
  line-height: 1.45;
}

.pitch-credit {
  margin: 0;
  color: #6c5837;
  font-size: 1.15rem !important;
}

.pitch-closing {
  display: grid;
  min-height: 72svh;
  place-items: center;
  padding: clamp(9rem, 13vw, 16rem) 0;
  text-align: center;
}

.pitch-closing-inner {
  position: relative;
  z-index: 1;
}

.pitch-closing h2 {
  color: var(--pitch-gold-soft);
  font-size: clamp(5rem, 10vw, 13rem);
  font-style: italic;
}

.pitch-closing-inner > p:not(.pitch-section-label) {
  max-width: 48rem;
  margin: 3rem auto 3.4rem;
  color: rgba(250, 243, 231, 0.75);
  font-family: var(--pitch-display);
  font-size: clamp(1.9rem, 2vw, 2.5rem);
}

.pitch-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1.5rem 3rem;
  align-items: center;
  padding: 2rem clamp(1.5rem, 4vw, 5rem);
  border-top: 0.1rem solid rgba(212, 137, 18, 0.5);
  background: var(--pitch-ink);
  color: rgba(250, 243, 231, 0.65);
}

.pitch-footer a,
.pitch-footer p {
  color: inherit;
  font-family: var(--pitch-label);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pitch-footer a {
  text-underline-offset: 0.4rem;
}

.pitch-footer p {
  margin: 0;
}

.pitch-footer-brand {
  width: 4rem;
  height: 4rem;
  color: var(--pitch-ink) !important;
  font-size: 2.2rem !important;
  text-decoration: none;
  text-transform: none !important;
}

.pitch-feature .pitch-feature-row {
  background: var(--pitch-teal);
}

.pitch-feature .pitch-feature-image {
  background: var(--pitch-paper);
}

.pitch-feature .pitch-feature-image img {
  object-position: center;
}

.pitch-feature .pitch-feature-copy {
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem);
  background: var(--pitch-teal);
  color: var(--pitch-paper);
}

.pitch-feature .pitch-feature-copy h2 {
  color: var(--pitch-gold-soft);
  font-family: var(--pitch-display);
  font-size: clamp(3.2rem, 4.4vw, 6rem);
  line-height: 0.98;
}

.pitch-feature .pitch-feature-copy .meta {
  color: rgba(250, 243, 231, 0.7);
}

.pitch-feature .pitch-feature-copy .btn {
  border: 0.1rem solid var(--pitch-gold-soft);
  border-radius: 0;
  background: var(--pitch-gold-soft);
  color: var(--pitch-ink);
  font-family: var(--pitch-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .pitch-site-header {
    align-items: flex-start;
    min-height: auto;
  }

  .pitch-site-name {
    display: none;
  }

  .pitch-site-nav {
    max-width: 24rem;
    gap: 0 1.4rem;
  }

  .pitch-site-nav a {
    font-size: 1.1rem;
  }

  .pitch-hero-inner {
    padding-block: 8rem 6rem;
  }

  .pitch-hero h1 {
    font-size: clamp(4.6rem, 15vw, 7.5rem);
    line-height: 0.9;
  }

  .pitch-hero h1 span:last-child {
    margin-left: 0;
  }

  .pitch-deco-frame {
    inset: 1rem;
  }

  .pitch-intro-grid,
  .pitch-contest-heading,
  .pitch-contest-grid,
  .pitch-split-heading,
  .pitch-sketch-grid,
  .pitch-why-grid,
  .pitch-creator-grid {
    grid-template-columns: 1fr;
  }

  .pitch-heading-block h2 {
    max-width: 11ch;
  }

  .pitch-format-quote {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pitch-ambitions,
  .pitch-set-pieces {
    grid-template-columns: 1fr;
  }

  .pitch-ambitions article:nth-child(odd),
  .pitch-set-pieces article:nth-child(odd) {
    border-right: 0;
  }

  .pitch-set-pieces article,
  .pitch-set-pieces article:nth-child(odd),
  .pitch-set-pieces article:nth-child(even) {
    padding: 2.5rem 0;
  }

  .pitch-screen-copy h2 {
    max-width: 11ch;
  }

  .pitch-archive-mark {
    width: min(84%, 36rem);
    margin-inline: auto;
  }

  .pitch-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pitch-feature .pitch-feature-copy {
    padding: 4rem 2.5rem;
  }
}

@media (max-width: 520px) {
  .pitch-site-header {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .pitch-logo {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.5rem;
  }

  .pitch-site-nav {
    justify-content: flex-end;
  }

  .pitch-site-nav a:nth-child(2),
  .pitch-site-nav a:nth-child(3) {
    display: none;
  }

  .pitch-hero-inner,
  .pitch-shell,
  .pitch-closing-inner {
    width: min(calc(100% - 4rem), 124rem);
  }

  .pitch-hero h1 {
    font-size: clamp(4.2rem, 14.5vw, 6rem);
  }

  .pitch-hook {
    font-size: 2.3rem !important;
  }

  .pitch-logline {
    padding-inline: 0;
    text-align: left;
  }

  .pitch-contest-heading h2,
  .pitch-split-heading h2,
  .pitch-screen-copy h2,
  .pitch-why-grid h2,
  .pitch-creator h2 {
    font-size: clamp(4rem, 13vw, 5.8rem);
  }

  .pitch-button {
    width: 100%;
  }

  .pitch-storyboard-frame {
    margin-inline: -1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pitch-page *,
  .pitch-page *::before,
  .pitch-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .pitch-site-header,
  .pitch-skip-link,
  .pitch-button,
  .pitch-footer {
    display: none;
  }

  .pitch-hero,
  .pitch-ink,
  .pitch-sketch-section,
  .pitch-closing {
    min-height: auto;
    background: #fff;
    color: #000;
  }

  .pitch-page section {
    break-inside: avoid;
  }
}
