:root {
  --ink: #211f1c;
  --ink-soft: #4f4b45;
  --paper: #f6f3eb;
  --paper-deep: #ebe5d8;
  --white: #fff;
  --magenta: #e6007e;
  --lime: #b4d600;
  --amber: #f29100;
  --yellow: #ffd31a;
  --red: #e51b23;
  --teal: #0d6570;
  --rule: rgba(33, 31, 28, 0.2);
  --shadow: 0 18px 50px rgba(33, 31, 28, 0.12);
  --display: "Bodoni MT", Didot, "Times New Roman", serif;
  --body: Candara, "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 10px;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 10px;
  visibility: visible;
  opacity: 1;
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: 74px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  width: min(100% - 40px, 1320px);
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 84px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.brand__words {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__words strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
}

.brand__words span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 6px 0;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle__icon {
  width: 24px;
  height: 16px;
  display: grid;
  align-content: space-between;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after,
.menu-toggle__icon span {
  display: block;
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle__icon::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle__icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-open .menu-toggle__icon span {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 510px;
  height: 68vh;
  max-height: 690px;
  isolation: isolate;
  color: var(--white);
  background-color: #17130f;
  background-image: url("/wp-content/uploads/2018/04/home-live2.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 9px solid var(--amber);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: rgba(18, 14, 12, 0.34);
}

.hero::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: min(47%, 680px);
  content: "";
  background: rgba(22, 18, 15, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hero__inner {
  width: min(100% - 40px, 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  padding: 68px 0;
}

.hero__copy {
  width: min(42%, 540px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 5px;
  content: "";
  background: var(--lime);
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: 82px;
  line-height: 0.9;
  font-weight: 700;
}

.hero__lead {
  max-width: 500px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.55;
}

.hero__cue {
  display: inline-block;
  margin-top: 24px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration-color: var(--magenta);
  text-decoration-thickness: 3px;
}

.articles-surface {
  position: relative;
  padding: 82px 0 92px;
  background-color: var(--paper);
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(33, 31, 28, 0.035) 40px);
}

.articles-surface::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--lime) 0 24%, var(--magenta) 24% 50%, var(--yellow) 50% 72%, var(--red) 72% 100%);
}

.section-inner {
  width: min(100% - 40px, 1220px);
  margin-inline: auto;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 64px;
  align-items: end;
  margin-bottom: 38px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: 54px;
  line-height: 1.02;
  font-weight: 700;
}

.section-intro__copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.article-filters {
  display: flex;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 38px;
  padding: 4px;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--rule);
}

.article-filters button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 16px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.article-filters button[aria-selected="true"] {
  color: var(--white);
  background: var(--ink);
}

.published-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.story {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 30px;
  background: var(--white);
  transition: transform 180ms ease, background-color 180ms ease;
}

.story:nth-child(2n) {
  background: #fbfaf6;
}

.story::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--magenta);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 220ms ease;
}

.story[data-topic="communication"]::before {
  background: var(--lime);
}

.story[data-topic="editorial"]::before {
  background: var(--amber);
}

.story:hover {
  z-index: 2;
  background: var(--paper);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.story:hover::before {
  transform: scaleX(1);
}

.story[hidden] {
  display: none;
}

.story__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 52px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.story h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.12;
}

.story p {
  margin: 18px 0 26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.story__link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 900;
  text-decoration-color: var(--magenta);
  text-decoration-thickness: 3px;
}

.story__link::after {
  content: "  →";
}

.signal-band {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.signal-band::before {
  position: absolute;
  top: 0;
  right: -90px;
  width: 46%;
  height: 100%;
  content: "LIVE";
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: 250px;
  font-weight: 700;
  line-height: 0.8;
  writing-mode: vertical-rl;
}

.signal-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 110px;
}

.signal-grid h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 62px;
  line-height: 0.98;
}

.signal-copy {
  max-width: 690px;
}

.signal-copy > p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.signal-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.signal-point {
  padding-top: 18px;
  border-top: 4px solid var(--magenta);
}

.signal-point:nth-child(2) {
  border-color: var(--lime);
}

.signal-point strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 23px;
}

.signal-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
}

.network-band {
  padding: 90px 0 100px;
  background: var(--white);
}

.network-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.network-grid h2,
.contact-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 50px;
  line-height: 1.03;
}

.network-links {
  border-top: 1px solid var(--ink);
}

.network-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}

.network-links a::after {
  content: "↗";
  color: var(--magenta);
  font-size: 20px;
}

.network-links strong {
  display: block;
  font-family: var(--display);
  font-size: 23px;
}

.network-links span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-cta {
  padding: 78px 0;
  color: var(--ink);
  background: var(--yellow);
}

.contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text-link {
  flex: 0 0 auto;
  display: inline-block;
  padding: 13px 20px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.text-link:hover {
  color: var(--ink);
  background: transparent;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #171512;
}

.site-footer__stripes {
  height: 8px;
  background: linear-gradient(90deg, var(--amber) 0 18%, var(--red) 18% 38%, var(--yellow) 38% 60%, var(--magenta) 60% 82%, var(--lime) 82% 100%);
}

.site-footer__inner {
  width: min(100% - 40px, 1220px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 42px 0;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-nav a {
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Reading pages */
.article-page,
.interior-page {
  background: var(--paper);
}

.article-page .site-header,
.interior-page .site-header {
  position: sticky;
  top: 0;
}

.article-shell {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(170px, 250px) minmax(0, 760px);
  gap: 70px;
  justify-content: center;
  padding: 74px 0 110px;
}

.article-rail {
  align-self: start;
  position: sticky;
  top: 120px;
  padding-top: 18px;
  border-top: 5px solid var(--magenta);
}

.article-rail p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-rail a {
  font-size: 14px;
  font-weight: 800;
}

.prose {
  min-width: 0;
  font-size: 18px;
  line-height: 1.75;
}

.prose > h1 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 62px;
  line-height: 0.98;
  font-weight: 700;
}

.prose .meta,
.article-meta {
  margin-bottom: 42px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.prose > p:first-of-type:not(.meta) {
  font-size: 21px;
  line-height: 1.55;
}

.prose h2 {
  margin: 2.1em 0 0.55em;
  padding-top: 0.55em;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.08;
  border-top: 1px solid var(--rule);
}

.prose h3 {
  margin: 1.8em 0 0.5em;
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.18;
}

.prose p,
.prose li {
  color: #35312c;
}

.prose a {
  color: var(--teal);
  font-weight: 700;
}

.prose img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 14px auto 20px;
  border: 1px solid var(--rule) !important;
  border-radius: 0 !important;
  box-shadow: 10px 10px 0 var(--paper-deep);
}

.prose table {
  width: 100%;
  margin: 30px 0;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 15px;
}

.prose th,
.prose td {
  min-width: 145px;
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--rule);
}

.prose th {
  color: var(--white);
  background: var(--ink);
}

.prose blockquote {
  margin: 34px 0;
  padding: 10px 0 10px 28px;
  border-left: 7px solid var(--lime);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.35;
}

.prose .takeaway,
.prose .note {
  margin: 34px 0;
  padding: 24px 28px;
  background: var(--white);
  border-left: 6px solid var(--magenta);
}

.article-footer {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}

.article-footer a {
  font-weight: 900;
}

/* Interior pages */
.interior-hero {
  position: relative;
  padding: 92px 0 82px;
  color: var(--white);
  background: var(--ink);
  border-bottom: 8px solid var(--magenta);
}

.interior-hero::after {
  position: absolute;
  right: 8%;
  bottom: -8px;
  width: 32%;
  height: 8px;
  content: "";
  background: var(--lime);
}

.interior-hero__inner,
.interior-content {
  width: min(100% - 40px, 980px);
  margin-inline: auto;
}

.interior-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--display);
  font-size: 66px;
  line-height: 0.98;
}

.interior-hero p {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.interior-content {
  padding: 78px 0 110px;
}

.policy-content {
  width: min(100% - 40px, 850px);
}

.policy-content h2,
.policy-content h3 {
  font-family: var(--display);
  line-height: 1.15;
}

.policy-content h2 {
  margin: 0 0 32px;
  font-size: 42px;
}

.policy-content h3 {
  margin: 42px 0 12px;
  padding-top: 24px;
  font-size: 27px;
  border-top: 1px solid var(--rule);
}

.policy-content p {
  overflow-wrap: anywhere;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
}

.contact-lead {
  margin: 0;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.18;
}

.contact-details {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.contact-details dt {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.legacy-visual {
  margin-top: 62px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule);
}

.legacy-visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .hero::after {
    width: 57%;
  }

  .hero__copy {
    width: 50%;
  }

  .hero h1 {
    font-size: 64px;
  }

  .story {
    grid-column: span 6;
  }

  .signal-grid,
  .network-grid {
    gap: 60px;
  }

  .article-shell {
    grid-template-columns: 1fr;
    max-width: 800px;
  }

  .article-rail {
    position: static;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header__inner {
    width: min(100% - 28px, 1320px);
  }

  .brand img {
    width: 68px;
    height: 43px;
  }

  .brand__words strong {
    font-size: 20px;
  }

  .brand__words span {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 0;
    z-index: 90;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 24px;
    background: var(--paper);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 18px 2px;
    font-family: var(--display);
    font-size: 29px;
    border-bottom: 1px solid var(--rule);
  }

  .hero {
    min-height: 570px;
    height: 76vh;
    max-height: 680px;
    background-position: 61% center;
  }

  .hero::before {
    background: rgba(18, 14, 12, 0.42);
  }

  .hero::after {
    top: auto;
    width: 100%;
    height: 58%;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 0;
  }

  .hero__inner {
    width: min(100% - 32px, 1320px);
    padding: 40px 0;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero__lead {
    max-width: 420px;
    font-size: 17px;
  }

  .articles-surface {
    padding: 64px 0 72px;
  }

  .section-inner,
  .site-footer__inner {
    width: min(100% - 32px, 1220px);
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 43px;
  }

  .article-filters {
    width: 100%;
  }

  .story {
    grid-column: 1 / -1;
    min-height: 280px;
    padding: 30px 26px 26px;
  }

  .story__meta {
    margin-bottom: 36px;
  }

  .signal-band,
  .network-band {
    padding: 76px 0;
  }

  .signal-grid,
  .network-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .signal-grid h2,
  .network-grid h2,
  .contact-cta h2 {
    font-size: 43px;
  }

  .signal-copy > p {
    font-size: 18px;
  }

  .contact-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .article-shell,
  .interior-hero__inner,
  .interior-content,
  .policy-content {
    width: min(100% - 32px, 850px);
  }

  .article-shell {
    padding: 48px 0 80px;
    gap: 38px;
  }

  .article-rail {
    flex-direction: column;
    gap: 0;
  }

  .prose {
    font-size: 17px;
  }

  .prose > h1,
  .interior-hero h1 {
    font-size: 45px;
  }

  .prose h2 {
    font-size: 32px;
  }

  .interior-hero {
    padding: 68px 0 60px;
  }

  .interior-content {
    padding: 58px 0 82px;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 430px) {
  .hero h1,
  .prose > h1,
  .interior-hero h1 {
    font-size: 40px;
  }

  .section-title,
  .signal-grid h2,
  .network-grid h2,
  .contact-cta h2 {
    font-size: 38px;
  }

  .signal-points {
    grid-template-columns: 1fr;
  }

  .story h3 {
    font-size: 28px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
