:root {
  --ink: #111111;
  --paper: #f5f3ee;
  --white: #ffffff;
  --red: #e21b2d;
  --line: #c9c6bf;
  --muted: #66635e;
  --shell: min(92vw, 1500px);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea { font-family: var(--sans); }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { border-radius: 0; }
button, select { cursor: pointer; }

::selection { color: var(--white); background: var(--red); }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-120%);
  transition: transform 160ms ease;
}

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

.utility-bar {
  height: 31px;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.utility-inner p { margin: 0; }

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--red);
  vertical-align: 1px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(245, 243, 238, .96);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.wordmark,
.footer-wordmark {
  display: inline-block;
  font-size: clamp(25px, 2.25vw, 37px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .8;
}

.wordmark span,
.footer-wordmark span { color: inherit; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 7px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.menu-toggle i,
.menu-toggle i::before {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.menu-toggle i::before { transform: translateY(6px); }

.mobile-nav {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: var(--paper);
}

.hero { border-bottom: 1px solid var(--ink); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(330px, .72fr);
  min-height: calc(100vh - 109px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 8vw, 124px) clamp(40px, 6vw, 110px) clamp(70px, 9vw, 132px) 0;
  border-right: 1px solid var(--ink);
}

.eyebrow,
.kicker,
.section-number,
.index-label {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(26px, 4vw, 56px);
}

.eyebrow::before {
  width: 36px;
  height: 3px;
  background: var(--red);
  content: "";
}

.hero h1,
.section-body h2,
.standards-head h2,
.music-copy h2,
.network h2,
.contact-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.062em;
}

.hero h1 {
  max-width: 1000px;
  font-size: clamp(68px, 8.6vw, 146px);
  line-height: .84;
}

.hero h1 em,
.network h2 em {
  font-weight: 400;
  color: var(--red);
}

.hero-lede {
  max-width: 730px;
  margin: clamp(35px, 5vw, 70px) 0 0;
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.46;
  letter-spacing: -.015em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 51px;
  padding: 0 20px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.button span,
.text-link span { font-size: 17px; }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover, .button-dark:focus-visible { color: var(--white); background: var(--red); }
.button-light { color: var(--ink); background: var(--paper); }
.button-light:hover, .button-light:focus-visible { color: var(--white); background: var(--red); }
.button-red { color: var(--white); background: var(--red); border-color: var(--red); }
.button-red:hover, .button-red:focus-visible { color: var(--ink); background: var(--paper); border-color: var(--paper); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible { color: var(--red); }

.hero-index {
  display: flex;
  flex-direction: column;
  padding: clamp(68px, 8vw, 124px) 0 0 clamp(28px, 3vw, 54px);
}

.index-label { margin-bottom: 22px; color: var(--muted); }

.hero-index > a {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  min-height: 66px;
  border-top: 1px solid var(--ink);
  transition: padding 180ms ease, color 180ms ease;
}

.hero-index > a:last-of-type { border-bottom: 1px solid var(--ink); }
.hero-index > a:hover, .hero-index > a:focus-visible { padding-left: 8px; color: var(--red); }
.hero-index > a span { font-size: 9px; font-weight: 800; }
.hero-index > a strong { font-size: 13px; letter-spacing: -.01em; }

.index-statement {
  margin-top: auto;
  padding: 34px 32px 38px;
  color: var(--white);
  background: var(--red);
}

.index-statement p {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.index-statement span {
  display: block;
  max-width: 300px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
}

.signal-strip { color: var(--white); background: var(--ink); }

.signal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.signal-inner i { width: 3px; height: 3px; background: var(--red); }

.publication-strip {
  padding: 34px 0;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}

.publication-inner {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.publication-inner > p {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.5;
}

.publication-inner ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
  list-style: none;
}

.publication-inner li {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 700;
  line-height: 1.15;
}

.section { padding: clamp(100px, 12vw, 190px) 0; }

.section-grid {
  display: grid;
  grid-template-columns: minmax(160px, .36fr) minmax(0, 1.64fr);
}

.section-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  padding-right: 35px;
  border-right: 1px solid var(--line);
}

.section-rail > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.7;
}

.section-body { padding-left: clamp(40px, 6vw, 108px); }
.kicker { color: var(--red); }

.section-body h2,
.standards-head h2,
.music-copy h2,
.contact-intro h2 {
  margin-top: 24px;
  font-size: clamp(62px, 7vw, 112px);
  line-height: .9;
}

.two-column-copy {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 8vw, 135px);
  margin-top: clamp(65px, 8vw, 110px);
  padding-top: 25px;
  border-top: 1px solid var(--ink);
}

.lead-copy,
.newscov-lede {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 39px);
  line-height: 1.24;
  letter-spacing: -.035em;
}

.body-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.body-copy p,
.newscov-copy p,
.music-copy > p,
.network-bottom p,
.contact-intro > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

blockquote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  margin: clamp(76px, 10vw, 150px) 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--ink);
}

blockquote span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 70px;
  line-height: .85;
}

blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5.4vw, 85px);
  line-height: .98;
  letter-spacing: -.045em;
}

.services { border-top: 1px solid var(--ink); }
.service-ledger { margin-top: clamp(75px, 9vw, 135px); }

.service-ledger article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 15px;
  padding: 34px 0 35px;
  border-top: 1px solid var(--ink);
}

.service-ledger article:last-child { border-bottom: 1px solid var(--ink); }
.service-number { margin: 5px 0 0; font-size: 10px; font-weight: 800; }
.service-ledger h3 { margin: 0 0 12px; font-size: clamp(25px, 2.3vw, 36px); letter-spacing: -.04em; }
.service-ledger article > span { font-size: 21px; }

.service-ledger article div > p {
  max-width: 680px;
  margin: 0;
  color: #3d3b37;
  font-size: 14px;
  line-height: 1.65;
}

.service-ledger article div > span {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.standards {
  padding: clamp(100px, 11vw, 170px) 0;
  color: var(--white);
  background: var(--red);
}

.standards-head {
  display: grid;
  grid-template-columns: .42fr 1.2fr .5fr;
  gap: 50px;
  align-items: end;
}

.standards-head h2 { margin: 0; }

.standards-head > p:last-child {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(65px, 9vw, 130px);
  border-top: 1px solid rgba(255,255,255,.7);
  border-left: 1px solid rgba(255,255,255,.35);
}

.standards-grid article {
  min-height: 240px;
  padding: 25px 26px;
  border-right: 1px solid rgba(255,255,255,.35);
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.standards-grid span { font-size: 9px; font-weight: 800; }
.standards-grid h3 { margin: 52px 0 12px; font-size: 25px; letter-spacing: -.03em; }
.standards-grid p { max-width: 310px; margin: 0; font-size: 13px; line-height: 1.65; }

.newscov {
  padding: clamp(90px, 10vw, 155px) 0 clamp(100px, 12vw, 190px);
  color: var(--white);
  background: var(--ink);
}

.division-label {
  display: flex;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid #484848;
  color: #adadad;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.newscov > .shell > h2 {
  margin: 30px 0 0;
  font-size: clamp(94px, 17.2vw, 280px);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .75;
}

.newscov > .shell > h2 span { color: inherit; }

.newscov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 12vw, 200px);
  margin-top: clamp(100px, 12vw, 180px);
}

.kicker-light { color: #a8a8a8; }
.newscov-lede { margin-top: 28px; }

.newscov-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-content: end;
  color: #c9c9c9;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(70px, 9vw, 140px);
  border-top: 1px solid #484848;
}

.format-grid article {
  min-height: 230px;
  padding: 25px 24px;
  border-right: 1px solid #484848;
}

.format-grid article:first-child { border-left: 1px solid #484848; }
.format-grid span { color: var(--red); font-size: 9px; font-weight: 800; }
.format-grid h3 { margin: 55px 0 12px; font-size: 23px; letter-spacing: -.03em; }
.format-grid p { margin: 0; color: #aaa; font-size: 13px; line-height: 1.6; }

.music { background: var(--white); }

.music-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(65px, 10vw, 160px);
  align-items: center;
}

.music-mark {
  position: relative;
  display: flex;
  min-height: 620px;
  padding: clamp(30px, 4vw, 64px);
  color: var(--white);
  background: var(--red);
  flex-direction: column;
  overflow: hidden;
}

.music-mark > span { font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.music-mark > strong { margin-top: auto; font-size: clamp(72px, 9.5vw, 150px); letter-spacing: -.08em; line-height: .74; }

.wave-lines {
  position: absolute;
  top: 24%;
  right: -12%;
  left: 21%;
  display: grid;
  gap: 24px;
  transform: rotate(-18deg);
}

.wave-lines i {
  display: block;
  height: 1px;
  background: rgba(255,255,255,.65);
}

.wave-lines i:nth-child(2) { transform: translateX(-14%); }
.wave-lines i:nth-child(3) { transform: translateX(9%); }
.wave-lines i:nth-child(4) { transform: translateX(-19%); }
.wave-lines i:nth-child(5) { transform: translateX(18%); }
.wave-lines i:nth-child(6) { transform: translateX(-7%); }

.music-copy > p { max-width: 610px; margin-top: 38px; color: #3e3c38; }

.music-copy ul {
  margin: 55px 0 38px;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.music-copy li {
  display: grid;
  grid-template-columns: 35px 145px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: #4a4844;
  font-size: 12px;
  line-height: 1.5;
}

.music-copy li span { color: var(--red); font-size: 9px; font-weight: 800; }
.music-copy li strong { color: var(--ink); font-size: 12px; }

.network {
  padding: clamp(100px, 12vw, 190px) 0;
  color: var(--white);
  background: #191919;
}

.network-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid #555;
}

.network-top p { margin: 0; }
.network-top p:last-child { color: #a1a1a1; font-size: 9px; font-weight: 800; letter-spacing: .12em; }

.network h2 {
  margin-top: clamp(65px, 8vw, 120px);
  font-size: clamp(72px, 10vw, 160px);
  line-height: .88;
}

.network-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(80px, 15vw, 250px);
  margin-top: clamp(85px, 10vw, 150px);
  padding-top: 24px;
  border-top: 1px solid #555;
}

.network-bottom > p { max-width: 520px; color: #bbb; }
.network-bottom > div p { max-width: 480px; color: #bbb; }
.network-bottom .button { margin-top: 30px; }

.contact {
  padding: clamp(100px, 12vw, 190px) 0;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid #4d4d4d;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(70px, 11vw, 180px);
}

.contact-intro > p { max-width: 480px; margin-top: 40px; color: #b8b8b8; }

.contact-direct {
  margin-top: 80px;
  padding-top: 17px;
  border-top: 1px solid #555;
}

.contact-direct span { display: block; margin-bottom: 14px; color: #858585; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.contact-direct a { display: flex; justify-content: space-between; font-size: 16px; }
.contact-direct a:hover { color: var(--red); }

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 22px;
}

.field { border-bottom: 1px solid #555; }
.field-full { grid-column: 1 / -1; }

.field label {
  display: block;
  margin-bottom: 12px;
  color: #888;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 4px 0 16px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 18px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field select { color-scheme: dark; }
.field input:focus, .field select:focus, .field textarea:focus { box-shadow: inset 0 -2px var(--red); }
.field textarea::placeholder { color: #666; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 5px;
  border-bottom: 0;
}

.form-footer p { max-width: 340px; margin: 0; color: #777; font-size: 10px; line-height: 1.5; }

footer { padding: 80px 0 25px; background: var(--paper); }

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr .65fr .45fr .8fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}

.footer-wordmark { font-size: clamp(36px, 5vw, 72px); }
.footer-address p, .footer-links p { margin: 0 0 15px; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.footer-address address { color: #52504c; font-size: 12px; font-style: normal; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 11px; }
.footer-links a:hover { color: var(--red); }
.footer-statement p { max-width: 380px; margin: 0; font-family: var(--serif); font-size: 24px; line-height: 1.3; letter-spacing: -.025em; }

.footer-legal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.footer-legal span:nth-child(2) { text-align: center; }
.footer-legal a { text-align: right; }
.footer-legal a:hover { color: var(--red); }

:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; border-top: 0 solid var(--ink); transition: max-height 280ms ease, border-width 280ms ease; }
  .mobile-nav.is-open { max-height: 520px; border-top-width: 1px; }
  .mobile-nav a { display: grid; grid-template-columns: 60px 1fr; width: var(--shell); margin: 0 auto; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 22px; font-weight: 700; }
  .mobile-nav a span { padding-top: 6px; color: var(--red); font-size: 9px; }

  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: calc(100svh - 109px); padding-right: 0; border-right: 0; }
  .hero-index { padding: 70px 0 0; border-top: 1px solid var(--ink); }
  .index-statement { margin-top: 70px; }
  .publication-inner { grid-template-columns: 200px minmax(0, 1fr); }
  .publication-inner ul { grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
  .publication-inner li { border-top: 1px solid var(--line); }

  .standards-head { grid-template-columns: .4fr 1.3fr; }
  .standards-head > p:last-child { grid-column: 2; }
  .music-grid { grid-template-columns: 1fr; }
  .music-mark { min-height: 500px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 70px; }
  .contact-intro .section-number, .contact-intro h2 { grid-column: 1 / -1; }
  .contact-intro > p, .contact-direct { margin-top: 25px; }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-wordmark { grid-column: 1 / -1; margin-bottom: 20px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 36px); }
  html { scroll-padding-top: 80px; }
  .utility-bar { display: none; }
  .header-inner { height: 68px; }
  .site-header { top: 0; }
  .wordmark { font-size: 27px; }

  .hero-copy { min-height: calc(100svh - 69px); padding: 60px 0 68px; }
  .hero h1 { font-size: clamp(54px, 17vw, 98px); }
  .hero-lede { max-width: 590px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .signal-inner { flex-wrap: wrap; gap: 12px 24px; justify-content: flex-start; padding: 15px 0; }
  .publication-inner { grid-template-columns: 1fr; gap: 20px; }
  .publication-inner ul { grid-template-columns: 1fr 1fr; }
  .publication-inner li { min-height: 52px; font-size: 12px; }

  .section-grid { grid-template-columns: 1fr; }
  .section-rail { min-height: auto; padding: 0 0 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-rail > p:last-child { display: none; }
  .section-body { padding: 44px 0 0; }
  .section-body h2, .standards-head h2, .music-copy h2, .contact-intro h2 { font-size: clamp(54px, 14vw, 86px); }
  .two-column-copy { grid-template-columns: 1fr; gap: 34px; }
  .body-copy { gap: 22px; }
  blockquote { grid-template-columns: 35px 1fr; gap: 8px; }
  blockquote p { font-size: clamp(40px, 11vw, 66px); }

  .service-ledger article { grid-template-columns: 35px 1fr auto; }
  .standards-head { grid-template-columns: 1fr; align-items: start; }
  .standards-head > p:last-child { grid-column: auto; max-width: 420px; }
  .standards-grid { grid-template-columns: 1fr 1fr; }

  .division-label { align-items: flex-start; flex-direction: column; gap: 8px; }
  .newscov > .shell > h2 { margin-top: 25px; font-size: min(18vw, 82px); letter-spacing: -.07em; white-space: nowrap; }
  .newscov-grid { grid-template-columns: 1fr; gap: 44px; }
  .format-grid { grid-template-columns: 1fr 1fr; }
  .format-grid article:nth-child(3) { border-left: 1px solid #484848; }

  .network-top { align-items: flex-start; flex-direction: column; gap: 20px; }
  .network-top p:last-child { line-height: 1.8; }
  .network-bottom { grid-template-columns: 1fr; gap: 40px; }
  .contact-intro { grid-template-columns: 1fr; }
  .contact-intro .section-number, .contact-intro h2 { grid-column: auto; }
  .inquiry-form { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-wordmark, .footer-statement { grid-column: 1 / -1; }
  .footer-legal { grid-template-columns: 1fr; gap: 12px; }
  .footer-legal span:nth-child(2), .footer-legal a { text-align: left; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 15.3vw; }
  .hero-index > a { grid-template-columns: 29px 1fr auto; }
  .two-column-copy { margin-top: 52px; }
  .body-copy, .newscov-copy { grid-template-columns: 1fr; }
  .service-ledger article { grid-template-columns: 29px 1fr; }
  .service-ledger article > span { display: none; }
  .standards-grid, .format-grid { grid-template-columns: 1fr; }
  .standards-grid article { min-height: 210px; }
  .format-grid article, .format-grid article:nth-child(3) { min-height: 190px; border-left: 1px solid #484848; }
  .music-mark { min-height: 410px; }
  .music-copy li { grid-template-columns: 28px 1fr; }
  .music-copy li strong { display: block; }
  .music-copy li { font-size: 11px; }
  .network h2 { font-size: 17vw; }
  .network-bottom .button { width: 100%; gap: 12px; font-size: 9px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-wordmark, .footer-statement { grid-column: auto; }
}

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