:root {
  --ink: #171717;
  --muted: #5e625c;
  --paper: #f8f3e9;
  --paper-deep: #efe2cd;
  --night: #101113;
  --night-soft: #24282a;
  --line: rgba(23, 23, 23, 0.12);
  --line-inverse: rgba(255, 255, 255, 0.18);
  --gold: #d7a73f;
  --tomato: #d84f35;
  --green: #2f6b4f;
  --blue: #1f6f8f;
  --white: #fffaf0;
  --shadow: 0 22px 60px rgba(16, 17, 19, 0.16);
  --width: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(16, 17, 19, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, #f2e5d4 48%, #f7f0e6 100%);
  background-size: 72px 72px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(216, 79, 53, 0.05) 48%, transparent 82%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(16, 17, 19, 0.035) 118px 120px);
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main {
  width: var(--width);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  position: relative;
  z-index: 5;
}

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

.brand__mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 58px;
  height: 50px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.76rem;
  line-height: 1;
  box-shadow: 6px 6px 0 var(--ink);
}

.brand__mark span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.brand__mark span + span {
  border-left: 2px solid var(--ink);
}

.brand__kicker,
.brand__name,
.brand__url {
  display: block;
}

.brand__kicker {
  margin-bottom: 3px;
  color: var(--tomato);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__name {
  font-weight: 900;
  line-height: 1.05;
}

.brand__url {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

body[data-page="home"] .site-nav a[href="./index.html"],
body[data-page="about"] .site-nav a[href="./about.html"],
body[data-page="stories"] .site-nav a[href="./stories.html"],
body[data-page="contact"] .site-nav a[href="./contact.html"] {
  color: var(--ink);
  background: rgba(215, 167, 63, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  grid-template-rows: minmax(640px, 74vh) auto;
  min-height: 740px;
  border: 1px solid var(--line);
  background: var(--night);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__media {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  min-height: 640px;
  background:
    linear-gradient(90deg, rgba(16, 17, 19, 0.94) 0%, rgba(16, 17, 19, 0.74) 48%, rgba(16, 17, 19, 0.36) 100%),
    linear-gradient(180deg, rgba(16, 17, 19, 0.18), rgba(16, 17, 19, 0.92)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Times_Square_Night.JPG?width=1800");
  background-position: center;
  background-size: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(215, 167, 63, 0.20), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.09) 0 1px, transparent 1px 42px);
  mix-blend-mode: screen;
  opacity: 0.48;
}

.hero__credit {
  position: absolute;
  right: 14px;
  bottom: 12px;
  max-width: 280px;
  padding: 7px 9px;
  color: rgba(255, 250, 240, 0.76);
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.68rem;
}

.hero__copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-self: start;
  max-width: 980px;
  padding: clamp(28px, 6vw, 62px);
  padding-top: clamp(72px, 8vw, 112px);
  padding-right: clamp(28px, 6vw, 72px);
}

.hero__brief {
  position: relative;
  z-index: 3;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin: -160px 24px 24px 0;
  align-self: end;
  padding: 26px;
  border: 1px solid var(--line-inverse);
  background: rgba(16, 17, 19, 0.82);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero p,
.legal-band p,
.newsletter p,
.hero__brief p {
  color: rgba(255, 250, 240, 0.82);
}

.hero__text {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.64);
}

.hero__actions,
.source-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  text-decoration: none;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 rgba(23, 23, 23, 0.28);
}

.button--primary {
  background: var(--tomato);
  color: #fff;
}

.button--secondary {
  background: var(--white);
  color: var(--ink);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.stat {
  min-height: 170px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat span {
  display: block;
  margin-bottom: 22px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.section {
  padding: 38px 0;
}

.two-column,
.legal-band,
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.section-copy,
.finder-card,
.guide-card,
.do-dont,
.detail-tile,
.verified-card,
.verification-note,
.signal-story,
.market-panel,
.page-intro,
.article-shell,
.timeline-card,
.story-list article,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.76);
}

.section-copy,
.finder-card,
.do-dont,
.detail-tile,
.verified-card,
.verification-note,
.signal-story,
.market-panel,
.page-intro,
.article-shell,
.timeline-card,
.story-list article,
.contact-card,
.contact-form {
  padding: clamp(22px, 4vw, 34px);
}

.finder-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--green);
  color: var(--white);
}

.finder-card p {
  color: rgba(255, 250, 240, 0.82);
}

.guide-details {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.85fr) minmax(260px, 0.9fr);
  gap: 18px;
  padding-top: 10px;
}

.detail-tile {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.detail-tile--dark {
  background: var(--night);
  color: var(--white);
}

.detail-tile--dark p {
  color: rgba(255, 250, 240, 0.78);
}

.detail-tile--image {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 17, 19, 0.20), rgba(16, 17, 19, 0.82)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Times%20Square%20NYC.jpg?width=1000");
  background-position: center;
  background-size: cover;
}

.detail-tile--image span {
  position: relative;
  z-index: 1;
  max-width: 220px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.5rem;
  line-height: 0.94;
}

.verified-section {
  padding-top: 18px;
}

.verified-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.verified-head h2 {
  max-width: 820px;
}

.verified-source {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--night);
  color: var(--white);
}

.verified-source span {
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.verified-source a,
.verification-note a {
  color: inherit;
  font-weight: 900;
  text-underline-offset: 4px;
}

.verified-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.verified-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.10), rgba(255, 250, 240, 0.035)),
    radial-gradient(circle at 92% 4%, rgba(47, 107, 79, 0.38), transparent 34%),
    linear-gradient(135deg, #111315, #202528 70%, #12261d);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(16, 17, 19, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.verified-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(47, 107, 79, 0.28);
  filter: blur(22px);
  pointer-events: none;
}

.verified-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 167, 63, 0.56);
  box-shadow: 0 28px 70px rgba(16, 17, 19, 0.28);
}

.verified-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--white);
  font-size: 1.42rem;
}

.verified-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 250, 240, 0.76);
}

.verified-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(87, 205, 139, 0.42);
  background: rgba(47, 107, 79, 0.26);
  color: #85e5a9;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
}

.verified-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #85e5a9;
  box-shadow: 0 0 14px rgba(133, 229, 169, 0.72);
}

.verified-card__meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.verified-card__meta span {
  display: block;
  color: rgba(255, 250, 240, 0.48);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 900;
}

.verified-card__meta strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.3;
}

.verified-card__actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.verified-card__actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
}

.verified-card__actions a:last-child {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.verified-card__small {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.verified-card__small a {
  color: rgba(255, 250, 240, 0.86);
  font-weight: 800;
  text-underline-offset: 4px;
}

.verification-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  background: var(--paper-deep);
}

.verification-note h3 {
  margin-bottom: 0;
}

.signal-section {
  padding-top: 22px;
}

.signal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.signal-head h2 {
  max-width: 860px;
}

.signal-stamp {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.signal-stamp span,
.panel-label span,
.market-note span {
  display: block;
  color: var(--tomato);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
}

.signal-stamp strong {
  display: block;
  margin-top: 8px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 0.96;
}

.signal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.38fr);
  gap: 18px;
}

.news-panel {
  display: grid;
  gap: 14px;
}

.panel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.72);
}

.panel-label a {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-underline-offset: 4px;
}

.signal-story {
  display: grid;
  gap: 10px;
  min-height: 260px;
  background: rgba(255, 250, 240, 0.84);
}

.signal-story--lead {
  min-height: 270px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 17, 19, 0.96), rgba(33, 42, 40, 0.92)),
    radial-gradient(circle at 90% 0%, rgba(215, 167, 63, 0.28), transparent 36%);
}

.signal-story--lead p {
  color: rgba(255, 250, 240, 0.78);
}

.signal-story h3 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.5rem;
}

.signal-story p {
  margin-bottom: 6px;
}

.signal-story a {
  margin-top: auto;
  color: var(--tomato);
  font-weight: 900;
  text-underline-offset: 4px;
}

.signal-story--lead a {
  color: var(--gold);
}

.signal-tag {
  justify-self: start;
  padding: 7px 9px;
  border: 1px solid rgba(216, 79, 53, 0.34);
  background: rgba(216, 79, 53, 0.12);
  color: var(--tomato);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 900;
}

.signal-story--lead .signal-tag {
  border-color: rgba(215, 167, 63, 0.44);
  background: rgba(215, 167, 63, 0.14);
  color: var(--gold);
}

.signal-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.signal-story-grid .signal-story {
  min-height: 330px;
  padding: 22px;
}

.signal-story-grid .signal-story h3 {
  font-size: 1.18rem;
}

.market-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
  background:
    linear-gradient(155deg, #111315 0%, #1e2421 62%, #263728 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 60px rgba(16, 17, 19, 0.18);
}

.market-panel .panel-label {
  min-height: auto;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

.market-panel .panel-label a {
  color: var(--white);
}

.market-panel p {
  color: rgba(255, 250, 240, 0.76);
}

.ticker-list {
  display: grid;
  gap: 10px;
}

.ticker-list a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 250, 240, 0.07);
  color: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.ticker-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 167, 63, 0.52);
  background: rgba(255, 250, 240, 0.11);
}

.ticker-card--up {
  border-color: rgba(87, 205, 139, 0.22);
}

.ticker-card--down {
  border-color: rgba(216, 79, 53, 0.32);
}

.ticker-list span {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(215, 167, 63, 0.46);
  background: rgba(215, 167, 63, 0.12);
  color: var(--gold);
  font-weight: 900;
}

.ticker-list strong {
  font-size: 0.9rem;
  line-height: 1.3;
}

.ticker-list em {
  justify-self: end;
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}

.ticker-list small {
  grid-column: 2 / -1;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.ticker-card--up small {
  color: #85e5a9;
}

.ticker-card--down small {
  color: #ff9b87;
}

.market-status {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 250, 240, 0.06);
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
}

.market-note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.market-note p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 20px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 22px;
  border-top: 0;
  border-left: 0;
}

.guide-card__number {
  display: block;
  margin-bottom: 72px;
  color: var(--tomato);
  font-weight: 900;
}

.guide-card a,
.story-link {
  margin-top: auto;
  color: var(--tomato);
  font-weight: 900;
  text-underline-offset: 4px;
}

.legal-band,
.newsletter {
  padding: 34px;
  background: var(--night);
  color: var(--white);
}

.legal-band__copy {
  align-self: center;
}

.source-row a {
  color: var(--white);
  font-weight: 900;
  text-underline-offset: 4px;
}

.do-dont {
  display: grid;
  gap: 14px;
  background: rgba(255, 250, 240, 0.08);
  border-color: var(--line-inverse);
}

.do-dont div {
  padding: 18px;
  background: rgba(255, 250, 240, 0.08);
}

.newsletter {
  margin-bottom: 22px;
  background: var(--blue);
}

.signup-form,
.contact-form form {
  display: grid;
  gap: 14px;
  align-content: center;
}

.signup-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: inherit;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 23, 0.18);
  padding: 15px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 42px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.page-intro {
  margin-bottom: 22px;
}

.page-title {
  color: var(--ink);
}

.lede {
  max-width: 820px;
  font-size: 1.08rem;
}

.timeline-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-list {
  display: grid;
  gap: 16px;
}

.story-list article {
  display: grid;
  gap: 8px;
}

.story-meta {
  margin-bottom: 8px;
  color: var(--tomato);
  font-weight: 900;
}

.article-shell {
  max-width: 960px;
  margin: 0 auto 42px;
  background: var(--white);
}

.article-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  font-size: clamp(3.8rem, 8vw, 7.2rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-meta span {
  padding: 8px 10px;
  background: rgba(215, 167, 63, 0.25);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.article-body {
  max-width: 720px;
  padding-top: 28px;
}

.article-body h2 {
  margin-top: 28px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.15;
}

.article-callout {
  margin: 28px 0;
  padding: 22px;
  border-left: 6px solid var(--tomato);
  background: #f1e3cf;
}

.source-row--article {
  margin-top: 30px;
}

.source-row--article a {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    display: block;
  }

  .hero__media {
    min-height: 700px;
  }

  .hero__copy {
    margin-top: -700px;
    min-height: 700px;
    padding-top: 72px;
    padding-right: 28px;
  }

  .hero__brief {
    margin: 0;
  }

  .quick-strip,
  .two-column,
  .guide-details,
  .verified-head,
  .verified-grid,
  .signal-head,
  .signal-layout,
  .signal-story-grid,
  .legal-band,
  .newsletter,
  .module-grid,
  .timeline-grid,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .module-grid {
    display: grid;
  }
}

@media (max-width: 680px) {
  :root {
    --width: min(100% - 22px, 1160px);
  }

  .brand__mark {
    width: 50px;
    height: 44px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .brand__name {
    font-size: 0.95rem;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .site-nav a {
    padding: 9px 5px;
    text-align: center;
    font-size: 0.8rem;
  }

  .hero__media {
    min-height: 660px;
  }

  .hero__copy {
    margin-top: -660px;
    min-height: 660px;
    padding: 22px;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: 2.8rem;
  }

  .quick-strip,
  .two-column,
  .guide-details,
  .verified-head,
  .verified-grid,
  .signal-head,
  .signal-layout,
  .signal-story-grid,
  .legal-band,
  .newsletter,
  .module-grid,
  .timeline-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .legal-band,
  .newsletter {
    padding: 22px;
  }

  .panel-label,
  .ticker-list a {
    grid-template-columns: 1fr;
  }

  .verified-card__actions,
  .verified-card__meta {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
