:root {
  --cream: #f0dcae;
  --paper: #dfc18a;
  --paper-deep: #c09b5d;
  --ink: #211b16;
  --navy: #171f26;
  --red: #812b1b;
  --red-bright: #a63820;
  --gold: #bf8c3e;
  --shadow: rgba(25, 17, 11, .42);
  --display: "Bebas Neue", Impact, sans-serif;
  --serif: "Roboto Slab", Georgia, serif;
  --type: "Special Elite", "Courier New", serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 6%, rgba(255, 226, 164, .3), transparent 29%),
    repeating-linear-gradient(84deg, rgba(43, 27, 15, .025) 0 1px, transparent 1px 4px),
    #c8a76e;
  font-family: var(--serif);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(33, 24, 16, .23);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 29;
  opacity: .2;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle, #241810 .65px, transparent .75px),
    radial-gradient(circle, #fff2c9 .5px, transparent .65px);
  background-position: 0 0, 3px 5px;
  background-size: 5px 5px, 7px 7px;
}

.dust { position: fixed; inset: 0; z-index: 31; pointer-events: none; overflow: hidden; }

.mote {
  position: absolute;
  bottom: -12px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  opacity: 0;
  background: #f7dd9b;
  filter: blur(.35px);
  animation: drift var(--speed) linear infinite var(--delay);
}

@keyframes drift {
  8% { opacity: .35; }
  80% { opacity: .16; }
  100% { transform: translate(var(--sway), -108vh); opacity: 0; }
}

a { color: inherit; }

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

figure { margin: 0; }

[data-include="header"],
[data-include="footer"],
.masthead,
main,
.footer {
  width: 100%;
}

.masthead {
  background: var(--navy);
  color: var(--cream);
  border-bottom: 6px double var(--gold);
  position: relative;
  z-index: 2;
}

.masthead__classified {
  display: flex;
  justify-content: space-between;
  padding: .45rem max(calc((100vw - 1320px) / 2), 1.2rem);
  background: var(--red);
  color: #f4dfad;
  font: .8rem var(--type);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand-row {
  max-width: 1320px;
  margin: auto;
  padding: 1rem 1.2rem 1.05rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1rem;
}

.brand {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 1.25rem;
  align-items: center;
  flex: 1 1 640px;
  text-decoration: none;
  line-height: .86;
  min-width: 0;
}

.brand__crown {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
}

.brand__seal-img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
}

.brand__name {
  align-self: end;
  color: var(--cream);
  font: clamp(4rem, 8vw, 6.55rem)/.82 var(--display);
  letter-spacing: .065em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .28);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.brand__name span { color: var(--red-bright); margin-left: .1em; }

.brand__department {
  position: relative;
  display: flex;
  align-items: center;
  gap: .85rem;
  align-self: start;
  color: var(--paper-deep);
  font: clamp(.78rem, 1.15vw, 1rem) var(--type);
  letter-spacing: .28em;
  text-transform: uppercase;
}

.brand__department::before,
.brand__department::after {
  content: "";
  width: clamp(58px, 10vw, 170px);
  border-top: 2px solid var(--gold);
}

.brand__department::before {
  width: clamp(34px, 5vw, 82px);
}

.brand__department::after {
  flex: 1 1 auto;
}

.brand__department span {
  color: var(--gold);
  white-space: nowrap;
}

.brand__department span::before,
.brand__department span::after {
  content: "\2605";
  margin: 0 .55rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: .78em;
  letter-spacing: 0;
}

.masthead__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 0 1 auto;
  max-width: 100%;
  min-width: 0;
}

.share-button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 2px solid var(--gold);
  padding: .65rem .8rem .55rem;
  background: transparent;
  color: var(--cream);
  font: .78rem var(--type);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}

.share-button span {
  display: inline-grid;
  place-items: center;
  min-width: 25px;
  min-height: 25px;
  border: 1px solid currentColor;
  color: var(--gold);
  font: 1rem var(--display);
  letter-spacing: .04em;
}

.share-button:hover,
.share-button:focus-visible {
  background: var(--red);
  color: var(--cream);
  outline: 0;
  transform: translateY(-1px);
}

.share-button.is-copied {
  background: var(--gold);
  color: var(--ink);
}

.share-button--paper {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(223, 193, 138, .32);
}

.share-button--paper span {
  color: var(--red);
}

.share-button--paper:hover,
.share-button--paper:focus-visible {
  background: var(--red);
  color: var(--cream);
}

.menu-toggle {
  display: none;
  border: 2px solid var(--gold);
  padding: .75rem 1rem;
  background: transparent;
  color: var(--cream);
  font: 1rem var(--type);
  text-transform: uppercase;
}

.nav {
  max-width: 1320px;
  margin: auto;
  display: flex;
  border-top: 1px solid rgba(191, 140, 62, .42);
}

.nav__item {
  flex: 1;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .65rem .35rem;
  border-right: 1px solid rgba(191, 140, 62, .27);
  color: var(--cream);
  font-size: .74rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}

.nav__item:first-child { border-left: 1px solid rgba(191, 140, 62, .27); }
.nav__item:hover, .nav__item.active { background: var(--red); }

.nav__item b {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  min-height: 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font: .75rem var(--type);
}

main {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 1.4rem clamp(1rem, 3vw, 2rem) 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(310px, .88fr) minmax(370px, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.7rem);
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: inset 0 0 0 5px var(--paper), 5px 6px 0 var(--shadow);
}

.stamp {
  width: fit-content;
  margin: 0 0 .9rem;
  padding: .38rem .65rem .27rem;
  border: 3px solid var(--red);
  color: var(--red);
  font: .85rem var(--type);
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.stamp--dark { border-color: var(--ink); color: var(--ink); }

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
  margin-bottom: .8rem;
  font: clamp(4.6rem, 8vw, 7rem)/.87 var(--display);
  letter-spacing: .025em;
  text-transform: uppercase;
}

.hero h1 span { color: var(--red); }

.hero__lede {
  max-width: 540px;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  padding: .95rem 1.3rem .78rem;
  background: var(--red);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--cream);
  font: 1.32rem var(--display);
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .15s, box-shadow .15s;
}

.button:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.button--ink { background: var(--navy); }

.hero__brief {
  margin-top: 1.5rem;
  padding: .85rem 1rem;
  border: 1px dashed var(--ink);
  background: rgba(192, 155, 93, .2);
  font: .92rem/1.6 var(--type);
}

.hero__brief strong { color: var(--red); }

.hero__poster {
  margin: 0;
  border: 5px solid var(--ink);
  background: var(--ink);
  box-shadow: 6px 7px 0 rgba(35, 26, 18, .32);
}

.hero__poster img {
  aspect-ratio: 1.25;
  width: 100%;
  object-fit: cover;
}

.hero__poster figcaption {
  padding: .7rem .9rem;
  background: var(--navy);
  color: var(--paper);
  font: .8rem var(--type);
  text-align: center;
  text-transform: uppercase;
}

.poster-lift { transition: transform .3s ease; }
.poster-lift:hover { transform: rotate(-.5deg) translateY(-3px); }

.ticker {
  display: flex;
  margin: 1.35rem 0 2.2rem;
  overflow: hidden;
  background: var(--navy);
  border: 3px solid var(--ink);
  color: var(--cream);
}

.ticker__label {
  position: relative;
  z-index: 1;
  flex: none;
  padding: .92rem 1.1rem .72rem;
  background: var(--red);
  font: 1.15rem var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ticker__window {
  display: flex;
  overflow: hidden;
  align-items: center;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: crawl 34s linear infinite;
}

.ticker__track span {
  flex: none;
  padding: .95rem 2.7rem .78rem 0;
  font: 1rem var(--type);
  letter-spacing: .04em;
}

.ticker__track span::after {
  content: " * ";
  margin-left: 2.7rem;
  color: var(--gold);
}

@keyframes crawl { to { transform: translateX(-50%); } }

.section-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: .65rem 0 .45rem;
  border-block: 4px double var(--ink);
}

.section-rule h2 {
  margin: 0;
  font: clamp(3.2rem, 7vw, 5.5rem)/1 var(--display);
  letter-spacing: .05em;
  text-align: center;
  text-transform: uppercase;
}

.section-rule p {
  margin: 0;
  font: .72rem var(--type);
  text-align: center;
  text-transform: uppercase;
}

.clippings {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 1.05rem;
}

.clipping {
  min-height: 250px;
  padding: 1.1rem;
  background: #e8ce98;
  border: 1px solid rgba(33, 27, 22, .65);
  box-shadow: 2px 3px 0 rgba(33, 27, 22, .2);
  transition: transform .23s;
}

.clipping:hover { transform: rotate(-.65deg) translateY(-4px); }

.clipping--lead {
  grid-row: span 2;
  transform: rotate(-.35deg);
}

.clipping--lead:hover { transform: rotate(-.9deg) translateY(-4px); }

.clipping--red {
  grid-column: span 2;
  background: var(--red);
  color: var(--cream);
  transform: rotate(.45deg);
}

.clipping--report {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(220px, 1fr);
  gap: 1.35rem;
  align-items: center;
  padding: 1.05rem;
}

.clipping__report-image {
  overflow: hidden;
  border: 3px solid var(--ink);
}

.clipping__report-image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clipping__image {
  margin: -.65rem -.65rem 1rem;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}

.clipping__image img {
  height: clamp(220px, 30vw, 336px);
  width: 100%;
  object-fit: cover;
}

.kicker {
  margin-bottom: .5rem;
  color: var(--red);
  font: .8rem var(--type);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.clipping--red .kicker { color: #f7d490; }

.clipping h3 {
  margin-bottom: .6rem;
  font: clamp(1.65rem, 2.5vw, 2.25rem)/1.04 var(--display);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.clipping p:not(.kicker) { line-height: 1.58; }

.read-more {
  font: .85rem var(--type);
  font-weight: bold;
  text-transform: uppercase;
}

.article-page main {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.article-banner {
  margin-bottom: 1.3rem;
  padding: .55rem .8rem .4rem;
  border-block: 4px double var(--ink);
  font: .8rem var(--type);
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.article-sheet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: start;
  padding: clamp(1.15rem, 4vw, 2.6rem);
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: inset 0 0 0 5px var(--paper), 5px 6px 0 var(--shadow);
}

.article-story {
  max-width: 790px;
}

.article-story .stamp {
  margin-bottom: 1.2rem;
}

.article-story h1 {
  margin-bottom: .65rem;
  color: var(--red);
  font: clamp(3.4rem, 7vw, 5.7rem)/.94 var(--display);
  letter-spacing: .025em;
  text-transform: uppercase;
}

.article-subhead {
  margin-bottom: 1.25rem;
  padding-block: .65rem;
  border-block: 1px solid rgba(33, 27, 22, .46);
  font: .85rem var(--type);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-share-row {
  display: flex;
  justify-content: flex-end;
  margin: -.35rem 0 1.15rem;
}

.article-body {
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.78;
}

.article-body p:first-child::first-letter {
  float: left;
  margin: .08rem .36rem 0 0;
  color: var(--red);
  font: 4.15rem/.76 var(--display);
}

.article-body p {
  margin-bottom: 1.2rem;
}

.article-body p:last-child {
  margin-bottom: 0;
  padding: 1rem 0 .1rem;
  border-top: 3px double var(--ink);
  font-weight: bold;
}

.article-body ul {
  margin: -.4rem 0 1.25rem 1.25rem;
  padding-left: 1rem;
  line-height: 1.75;
}

.article-body li::marker {
  color: var(--red);
}

.article-sidebar {
  position: sticky;
  top: 1rem;
}

.article-portrait {
  margin: 0 0 1.15rem;
  padding: .42rem;
  background: var(--navy);
  border: 3px solid var(--ink);
}

.article-portrait img {
  aspect-ratio: .88;
  width: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.article-feature-poster {
  margin: 0 0 1.5rem;
  padding: .45rem;
  background: var(--navy);
  border: 3px solid var(--ink);
}

.article-feature-poster__image {
  width: 100%;
  overflow: hidden;
}

.article-feature-poster__image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-feature-poster figcaption {
  padding: .68rem .4rem .28rem;
  color: var(--paper);
  font: .72rem/1.5 var(--type);
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.article-portrait figcaption {
  padding: .7rem .4rem .35rem;
  color: var(--paper);
  font: .71rem/1.5 var(--type);
  text-align: center;
  text-transform: uppercase;
}

.dossier {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  background: #e5c88f;
}

.dossier h2 {
  margin-bottom: .6rem;
  font: 1.75rem var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.dossier p,
.dossier li {
  font-size: .87rem;
  line-height: 1.6;
}

.dossier ul {
  margin: .65rem 0 0;
  padding-left: 1.1rem;
}

.article-back {
  display: block;
  padding: .72rem;
  background: var(--red);
  color: var(--cream);
  font: 1.15rem var(--display);
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-page main {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.contact-office {
  display: grid;
  grid-template-columns: minmax(245px, .58fr) minmax(400px, 1fr);
  gap: clamp(1.25rem, 4vw, 2.8rem);
  align-items: start;
  padding: clamp(1.15rem, 4vw, 2.5rem);
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: inset 0 0 0 5px var(--paper), 5px 6px 0 var(--shadow);
}

.contact-intro h1 {
  margin-bottom: .8rem;
  color: var(--red);
  font: clamp(3.2rem, 6vw, 5rem)/.95 var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-intro > p:not(.stamp) {
  line-height: 1.7;
}

.contact-notice {
  margin-top: 1.4rem;
  padding: 1rem;
  border: 2px dashed var(--ink);
  background: var(--paper);
  font: .84rem/1.62 var(--type);
}

.contact-notice strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--red);
  text-transform: uppercase;
}

.contact-form-shell {
  padding: clamp(.55rem, 2vw, 1rem);
  background: var(--navy);
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(33, 27, 22, .24);
}

.contact-form-shell h2 {
  margin: 0 0 .7rem;
  color: var(--paper);
  font: 2rem/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-frame {
  display: block;
  width: 100%;
  min-height: 770px;
  border: 0;
  background: var(--cream);
}

.contact-fallback {
  margin: .8rem 0 0;
  color: var(--paper);
  font: .73rem/1.6 var(--type);
  text-align: center;
}

.contact-fallback a {
  color: var(--gold);
}

.wanted {
  margin-top: 3.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--red);
  border: 6px double var(--cream);
  box-shadow: 0 5px 0 var(--ink);
  color: var(--cream);
}

.wanted__intro {
  max-width: 670px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.wanted__intro .stamp { margin-inline: auto; border-color: var(--cream); color: var(--cream); }

.wanted__intro h2,
.section-heading h2,
.bulletin h2,
.recruit h2 {
  margin-bottom: .5rem;
  font: clamp(2.8rem, 5vw, 4.4rem)/1 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.wanted__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.wanted-card {
  position: relative;
  padding: 1.1rem 1rem 1rem;
  background: var(--cream);
  border: 4px solid var(--ink);
  color: var(--ink);
}

.wanted-card:nth-child(even) { transform: rotate(1deg); }
.wanted-card:nth-child(odd) { transform: rotate(-.8deg); }

.wanted-card__no {
  font: .78rem var(--type);
  text-transform: uppercase;
}

.wanted-card h3 {
  margin: .4rem 0 .55rem;
  font: 2rem/1 var(--display);
  text-transform: uppercase;
}

.bounty {
  padding: .35rem;
  background: var(--ink);
  color: var(--cream);
  font: .72rem var(--type);
  text-transform: uppercase;
}

.wanted-card p:last-of-type { min-height: 92px; font-size: .91rem; line-height: 1.45; }

.verdict {
  display: block;
  width: fit-content;
  margin: .6rem auto 0;
  border: 3px solid var(--red);
  padding: .32rem .45rem .2rem;
  color: var(--red);
  font: 1.25rem var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.bulletin {
  display: grid;
  grid-template-columns: minmax(230px, .7fr) minmax(350px, 1.5fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  margin-top: 3.6rem;
  align-items: start;
}

.bulletin__poster {
  margin: 0;
  border: 7px solid var(--ink);
  box-shadow: 6px 7px 0 var(--shadow);
}

.bulletin__poster img { width: 100%; }

.bulletin__content { padding: clamp(.3rem, 2vw, 1.3rem) 0; }

.bulletin blockquote {
  min-height: 122px;
  margin: 1.4rem 0 .85rem;
  padding: 1.3rem 1.3rem 1.1rem;
  border-left: 8px solid var(--red);
  background: var(--cream);
  font: clamp(1.35rem, 2.5vw, 1.85rem)/1.45 var(--type);
  transition: opacity .18s;
}

.bulletin blockquote.switching { opacity: 0; }

.quote-controls {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.6rem;
  font: .84rem var(--type);
}

.quote-controls button {
  border: 2px solid var(--ink);
  padding: .55rem .8rem;
  background: transparent;
  font: .85rem var(--type);
  text-transform: uppercase;
  cursor: pointer;
}

.quote-controls button:hover { background: var(--ink); color: var(--cream); }

.war-room-files {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(205px, .58fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 2.2rem;
}

.file-folder {
  position: relative;
  padding: 1.3rem 1.4rem 1.1rem;
  background: #e6c583;
  border: 2px solid var(--ink);
  box-shadow: 4px 5px 0 rgba(33, 27, 22, .22);
}

.file-folder::before {
  content: "Declassified";
  position: absolute;
  top: -24px;
  left: 18px;
  height: 24px;
  padding: .35rem 1.4rem 0;
  background: #e6c583;
  border: 2px solid var(--ink);
  border-bottom: 0;
  font: .72rem var(--type);
  text-transform: uppercase;
}

.file-folder p {
  margin: 0;
  color: var(--red);
  font: .8rem var(--type);
  text-transform: uppercase;
}

.file-folder h3 {
  margin: .4rem 0 .65rem;
  font: 2rem var(--display);
  text-transform: uppercase;
}

.file-folder ol {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.7;
}

.operation-controls {
  justify-content: flex-end;
  margin: 1.15rem 0 0;
  padding-top: .85rem;
  border-top: 2px dashed rgba(33, 27, 22, .45);
}

.operation-controls button {
  padding: .42rem .62rem;
  font-size: .72rem;
}

.fitness-crime {
  position: relative;
  min-height: 100%;
  padding: 1.15rem 1rem 1rem;
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 4px 5px 0 rgba(33, 27, 22, .18);
}

.fitness-crime__status {
  position: absolute;
  top: .65rem;
  right: .7rem;
  border: 3px solid var(--red);
  padding: .22rem .34rem .12rem;
  color: var(--red);
  font: 1rem var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.fitness-crime__label {
  max-width: 58%;
  margin: 0 0 1.3rem;
  color: var(--red);
  font: .72rem var(--type);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fitness-crime h3 {
  margin: 0 0 .75rem;
  font: clamp(1.65rem, 2.2vw, 2.2rem)/.96 var(--display);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.fitness-crime p:not(.fitness-crime__label) {
  margin-bottom: .9rem;
  font-size: .9rem;
  line-height: 1.55;
}

.fitness-crime #crime-verdict {
  display: block;
  margin-top: auto;
  border-top: 3px double var(--ink);
  padding-top: .65rem;
  color: var(--red);
  font: .78rem var(--type);
  font-weight: bold;
  text-transform: uppercase;
}

.archive, .ads { margin-top: 4rem; }

.section-heading {
  margin-bottom: 1.45rem;
  border-bottom: 4px double var(--ink);
}

.archive__grid {
  display: grid;
  grid-template-columns: 1.7fr .8fr;
  gap: 1.1rem;
}

.archive-card {
  margin: 0;
  padding: .55rem;
  background: var(--cream);
  border: 2px solid var(--ink);
}

.archive-card img {
  width: 100%;
  height: clamp(300px, 39vw, 480px);
  object-fit: cover;
  filter: sepia(.12) contrast(1.04);
}

.archive-card:not(.archive-card--wide) img { object-position: center top; }

.archive-card figcaption {
  padding: .8rem .4rem .3rem;
  font: .9rem var(--type);
  text-align: center;
  text-transform: uppercase;
}

.ads__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.ad {
  min-height: 312px;
  padding: 1.25rem;
  border: 5px solid var(--ink);
  background: var(--cream);
  text-align: center;
  transform: rotate(-.7deg);
}

.ad:nth-child(2) { transform: rotate(1deg); }
.ad:nth-child(3) { transform: rotate(-1.1deg); }

.ad--dark {
  background: var(--navy);
  color: var(--cream);
}

.ad__burst {
  width: fit-content;
  margin: 0 auto .7rem;
  padding: .35rem .55rem .2rem;
  background: var(--red);
  color: var(--cream);
  font: 1rem var(--display);
  letter-spacing: .12em;
}

.ad h3 {
  margin-bottom: .55rem;
  font: clamp(2.1rem, 3.5vw, 2.8rem)/1 var(--display);
  text-transform: uppercase;
}

.ad__promise {
  border-block: 2px solid currentColor;
  padding: .55rem 0;
  color: var(--red);
  font: 1.08rem/1.35 var(--type);
}

.ad--dark .ad__promise { color: var(--gold); }
.ad p:not(.ad__burst):not(.ad__promise) { font-size: .91rem; line-height: 1.48; }

.ad span {
  display: inline-block;
  color: var(--red);
  font: .9rem var(--type);
  font-weight: bold;
  text-transform: uppercase;
}

.ad--dark span { color: var(--gold); }

.recruit {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: 4rem;
  padding: clamp(1.2rem, 4vw, 2.5rem);
  background: var(--navy);
  border: 5px double var(--gold);
  color: var(--cream);
}

.recruit p:not(.stamp) { line-height: 1.65; }

.signup {
  padding: 1.15rem;
  background: rgba(240, 220, 174, .08);
  border: 1px dashed var(--gold);
}

.signup__label {
  display: block;
  margin-bottom: .65rem;
  color: var(--paper);
  font: .85rem var(--type);
  text-transform: uppercase;
}

.signup__label {
  letter-spacing: .08em;
}

.signup__fine {
  margin: .75rem 0 0;
  color: var(--paper-deep);
  font: .7rem/1.5 var(--type);
}

.signup--live {
  overflow: hidden;
}

.signup--live .beehiiv-slot {
  display: block;
  min-height: 74px;
  padding: .15rem 0;
}

.signup--live .beehiiv-slot > div,
.signup--live iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem max(calc((100vw - 1260px) / 2), 1.3rem);
  background: #151919;
  border-top: 6px double var(--gold);
  color: var(--cream);
}

.footer strong { font: 2rem var(--display); letter-spacing: .08em; }
.footer p { margin: .2rem 0 0; font: .75rem var(--type); text-transform: uppercase; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  font: .76rem var(--type);
  text-transform: uppercase;
}

.footer__motto { text-align: right; color: var(--gold); }

@media (max-width: 1050px) {
  .menu-toggle { display: block; }
  .masthead__classified {
    gap: .45rem;
    padding-inline: .75rem;
    font-size: .68rem;
    line-height: 1.45;
    letter-spacing: .1em;
  }
  .masthead__classified span { text-align: right; }
  .brand-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .85rem;
    padding: .9rem .75rem .85rem;
  }
  .brand {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .brand__crown { display: none; }
  .brand__name {
    font-size: clamp(3.1rem, 13vw, 5.25rem);
    letter-spacing: .035em;
  }
  .brand__department {
    gap: .45rem;
    max-width: 100%;
    font-size: clamp(.58rem, 1.9vw, .8rem);
    letter-spacing: .16em;
  }
  .brand__department::before,
  .brand__department::after {
    width: clamp(34px, 11vw, 82px);
    flex: 0 0 clamp(34px, 11vw, 82px);
  }
  .brand__department span {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }
  .brand__department span::before,
  .brand__department span::after {
    margin: 0 .25rem;
  }
  .masthead__actions {
    width: 100%;
    justify-content: stretch;
    gap: .55rem;
  }
  .share-button,
  .menu-toggle {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
  }
  .nav {
    display: none;
    flex-wrap: wrap;
    padding: .4rem 1rem 1rem;
  }
  .nav.open { display: flex; }
  .nav__item { flex: 0 0 50%; justify-content: flex-start; padding-left: .8rem; }
  .hero { grid-template-columns: 1fr; }
  .hero__poster {
    order: 0;
  }
  .hero__poster img {
    height: clamp(300px, 72vw, 520px);
    object-fit: cover;
    object-position: center 24%;
  }
  .wanted__cards { grid-template-columns: repeat(2, 1fr); }
  .war-room-files { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  .menu-toggle { display: block; }
  .brand-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .85rem;
    padding: .9rem .75rem .85rem;
  }
  .brand {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .brand__crown { display: none; }
  .masthead__actions {
    width: 100%;
    justify-content: stretch;
    gap: .55rem;
  }
  .share-button,
  .menu-toggle {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
  }
  .nav {
    display: none;
    flex-wrap: wrap;
    padding: .4rem 1rem 1rem;
  }
  .nav.open { display: flex; }
  .nav__item { flex: 0 0 50%; justify-content: flex-start; padding-left: .8rem; }
}

@media (max-width: 760px) {
  main { padding-inline: .75rem; }
  .masthead__classified {
    gap: .45rem;
    padding-inline: .75rem;
    font-size: .62rem;
    line-height: 1.45;
    letter-spacing: .09em;
  }
  .masthead__classified span { text-align: right; }
  .brand__name {
    font-size: clamp(3.1rem, 17vw, 4.45rem);
  }
  .brand__department {
    font-size: .58rem;
  }
  .brand__department::before,
  .brand__department::after {
    width: 34px;
    flex: 0 0 34px;
  }
  .share-button,
  .menu-toggle {
    padding-inline: .55rem;
    font-size: .68rem;
  }
  .share-button span { min-width: 22px; min-height: 22px; }
  .hero {
    padding: .8rem;
    box-shadow: inset 0 0 0 4px var(--paper), 3px 4px 0 var(--shadow);
  }
  .hero h1 { font-size: clamp(3.4rem, 18vw, 4.8rem); }
  .hero,
  .hero__poster,
  .hero__poster img {
    width: 100%;
    max-width: 100%;
  }
  .hero__poster {
    order: 0;
    border-width: 4px;
    box-shadow: 3px 4px 0 rgba(35, 26, 18, .32);
  }
  .hero__poster img {
    height: clamp(260px, 82vw, 370px);
    object-fit: cover;
    object-position: center 22%;
  }
  .ticker { flex-direction: column; }
  .ticker__label { text-align: center; }
  .section-rule { display: block; }
  .section-rule p { margin: .35rem 0; }
  .clippings, .bulletin, .archive__grid, .ads__grid, .recruit {
    display: block;
  }
  .clipping, .bulletin__poster, .archive-card, .ad, .recruit__copy { margin-bottom: 1.1rem; }
  .clipping--red { transform: none; }
  .clipping--report { display: block; }
  .clipping__report-image { margin-bottom: 1.2rem; }
  .bulletin__content { padding-top: 1.5rem; }
  .quote-controls {
    flex-wrap: wrap;
    gap: .65rem;
  }
  .quote-controls button { flex: 1 1 110px; }
  .quote-controls span { flex: 1 0 100%; text-align: center; }
  .archive-card img { height: auto; }
  .footer { display: block; text-align: center; }
  .footer__links { margin: 1.5rem 0; }
  .footer__motto { text-align: center; }
  .article-sheet { display: block; }
  .article-sidebar {
    position: static;
    margin-top: 2rem;
  }
  .article-portrait img {
    max-height: 410px;
  }
  .contact-office { display: block; }
  .contact-form-shell { margin-top: 1.5rem; }
  .contact-frame { min-height: 860px; }
}

@media (max-width: 540px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    overflow-x: hidden;
  }

  [data-include],
  [data-include="header"],
  [data-include="footer"],
  body > [data-include],
  .masthead,
  .masthead__classified,
  .brand-row,
  .brand,
  .masthead__actions,
  .nav,
  main,
  .hero,
  .hero__copy,
  .hero__poster,
  .ticker,
  .gazette,
  .clippings,
  .clipping,
  .wanted,
  .wanted__intro,
  .wanted__cards,
  .wanted-card,
  .bulletin,
  .bulletin__poster,
  .bulletin__content,
  .war-room-files,
  .file-folder,
  .fitness-crime,
  .archive,
  .archive__grid,
  .archive-card,
  .ads,
  .ads__grid,
  .ad,
  .recruit,
  .signup,
  .contact-office,
  .contact-form-shell,
  .article-sheet,
  .article-story,
  .article-sidebar,
  .footer {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .masthead,
  .footer {
    inline-size: 100%;
  }

  .masthead__classified {
    display: grid;
    grid-template-columns: 1fr;
    gap: .12rem;
    justify-items: start;
  }

  .masthead__classified span {
    text-align: left;
  }

  .brand-row {
    margin: 0;
  }

  .brand__name,
  .brand__department,
  .brand__department span,
  .masthead__actions,
  .share-button,
  .menu-toggle {
    max-width: 100%;
    min-width: 0;
  }

  .brand__name {
    display: block;
    width: 100%;
    font-size: clamp(2.8rem, 15vw, 3.75rem);
    line-height: .85;
    letter-spacing: .02em;
    white-space: normal;
  }

  .brand__department::before,
  .brand__department::after {
    flex: 1 1 22px;
    min-width: 22px;
  }

  .masthead__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .share-button,
  .menu-toggle {
    width: 100%;
    overflow: hidden;
    text-align: center;
  }

  main {
    padding-left: .65rem;
    padding-right: .65rem;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .hero,
  .hero__poster,
  .hero__poster img {
    width: 100%;
    max-width: 100%;
  }

  .hero__lede,
  .wanted__intro {
    max-width: none;
  }

  img,
  .hero__poster img,
  .clipping__image img,
  .clipping__report-image img,
  .archive-card img,
  .bulletin__poster img,
  .article-portrait img,
  .article-feature-poster__image img {
    max-width: 100%;
    height: auto;
  }

  .poster-lift,
  .poster-lift:hover,
  .clipping,
  .clipping:hover,
  .clipping--lead,
  .clipping--lead:hover,
  .wanted-card,
  .ad {
    transform: none;
  }

  .hero__poster,
  .bulletin__poster,
  .archive-card,
  .ad {
    box-shadow: 3px 4px 0 rgba(35, 26, 18, .24);
  }

  .nav__item { flex-basis: 100%; }
  .wanted__cards { display: block; }
  .wanted-card { margin-bottom: 1.1rem; transform: none !important; }
  .hero__actions .button { width: 100%; }
  .brand-row { align-items: stretch; }
  .masthead__actions { align-items: stretch; }
  .share-button { max-width: none; }
  .article-share-row { justify-content: stretch; }
  .article-share-row .share-button { max-width: none; width: 100%; }
}

@media (max-width: 390px) {
  .brand__name { font-size: clamp(2.75rem, 16vw, 3.65rem); }
  .brand__department { font-size: .52rem; letter-spacing: .12em; }
  .share-button,
  .menu-toggle {
    min-height: 44px;
    font-size: .62rem;
  }
  .share-button span { display: none; }
  .hero h1 { font-size: clamp(3rem, 17vw, 4.15rem); }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: clip;
  }

  [data-include="header"],
  .masthead {
    width: 100vw;
    max-width: 100vw;
    overflow: clip;
  }

  .masthead {
    background: var(--navy);
  }

  .masthead__classified {
    display: grid;
    grid-template-columns: 1fr;
    gap: .16rem;
    width: 100%;
    padding: .42rem .75rem .36rem;
    font-size: .62rem;
    line-height: 1.35;
    letter-spacing: .08em;
  }

  .masthead__classified span {
    text-align: left;
  }

  .brand-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: start;
    gap: .75rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: .9rem .75rem .8rem;
    background: var(--navy);
  }

  .brand {
    display: block;
    width: auto;
    min-width: 0;
  }

  .brand__crown,
  .brand__department {
    display: none;
  }

  .brand__name {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.55rem, 12.5vw, 4rem);
    line-height: .88;
    letter-spacing: .035em;
    white-space: nowrap;
    overflow: hidden;
  }

  .masthead__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .45rem;
    align-items: stretch;
    justify-self: end;
    width: 46px;
    max-width: 46px;
    min-width: 0;
  }

  .share-button,
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    min-width: 0;
    min-height: 38px;
    padding: 0;
    overflow: hidden;
    line-height: 1;
  }

  .share-button {
    gap: 0;
    font-size: 0;
    letter-spacing: 0;
  }

  .share-button span {
    display: grid;
    min-width: 0;
    min-height: 0;
    width: 26px;
    height: 24px;
    border: 1px solid currentColor;
    font-size: .78rem;
  }

  .menu-toggle {
    color: var(--cream);
    font-size: 0;
  }

  .menu-toggle span {
    font-size: 0;
  }

  .menu-toggle::before {
    content: "";
    width: 21px;
    height: 15px;
    background:
      linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
  }

  .nav {
    display: none;
    grid-template-columns: 1fr;
    gap: .45rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: .2rem .75rem .9rem;
    background: var(--navy);
    border-top: 1px solid rgba(191, 140, 62, .42);
  }

  .nav.open {
    display: grid;
  }

  .nav__item {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    gap: .65rem;
    padding: .58rem .7rem;
    border: 1px solid rgba(191, 140, 62, .34);
    background: rgba(0, 0, 0, .12);
    font-size: .75rem;
    text-align: left;
  }

  .nav__item:first-child {
    border-left: 1px solid rgba(191, 140, 62, .34);
  }

  .nav__item b {
    flex: 0 0 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .dust { display: none; }
}
