:root {
  --navy: #1b2f5e;
  --navy-dark: #0d1b35;
  --saffron: #ff6b00;
  --saffron-soft: #fff3e8;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray: #8a99b5;
  --body: #333333;
  --green: #157347;
  --red: #c83b1c;
  --muted-border: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 8px 32px rgba(27, 47, 94, 0.12);
  --font-display: "Bebas Neue", cursive;
  --font-condensed: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
.button,
.share-button,
.filter-pill,
.nav-link,
.mobile-menu a,
.pillars__item,
.back-to-top {
  min-height: 44px;
}

button {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
}

::selection {
  background: rgba(255, 107, 0, 0.18);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--saffron);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--saffron);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1400px, calc(100% - 160px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.33em;
  text-transform: uppercase;
}

.eyebrow--saffron {
  color: var(--saffron);
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  animation: blink 2s infinite;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.section-heading__tag {
  color: var(--saffron);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-heading__title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 3rem);
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading__line {
  flex: 1;
  min-width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), transparent);
}

.section-heading--light .section-heading__title {
  color: var(--white);
}

.section-heading--light .section-heading__line {
  background: linear-gradient(90deg, var(--saffron), rgba(255, 255, 255, 0));
}

.button,
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 12px 22px;
  border-radius: 3px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible,
.share-button:hover,
.share-button:focus-visible {
  transform: translateY(-1px);
}

.button--primary,
.share-button--primary {
  background: var(--saffron);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible,
.share-button--primary:hover,
.share-button--primary:focus-visible {
  background: #ff8c33;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--saffron);
  color: var(--saffron);
}

.button--outline {
  background: transparent;
  border-color: var(--saffron);
  color: var(--navy);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.button:focus-visible,
.nav-link:focus-visible,
.filter-pill:focus-visible,
.pillars__item:focus-visible,
.social-row:focus-visible,
.footer-link:focus-visible,
.tag-pill:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.mobile-menu__close:focus-visible,
.nav-toggle:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--saffron);
  color: var(--white);
  animation: slideDown 0.4s ease both;
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 42px;
  min-width: 0;
}

.ticker__label {
  flex: 0 0 auto;
  padding: 7px 12px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.ticker__wrap {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 36px;
  padding-block: 10px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  animation: ticker 35s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 3px solid var(--saffron);
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease both;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  min-width: 0;
}

.brand__line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.12em;
  line-height: 0.9;
}

.brand__line .saffron {
  color: var(--saffron);
}

.brand__subline {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-condensed);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--white);
}

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

.nav-toggle,
.mobile-menu__close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--saffron);
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  content: "";
}

.nav-toggle__bars::before {
  transform: translateY(-7px);
}

.nav-toggle__bars::after {
  transform: translateY(5px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(13, 27, 53, 0.98);
  padding: 96px 24px 32px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__close {
  display: inline-flex;
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.mobile-menu a {
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu__cta {
  margin-top: 14px;
}

.hero {
  position: relative;
}

.hero--home {
  background: var(--navy-dark);
  color: var(--white);
  isolation: isolate;
}

.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 82% 14%, rgba(255, 107, 0, 0.08), transparent 65%);
}

.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.hero--home .container,
.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: end;
  min-height: 520px;
  padding-block: 70px 60px;
}

.hero__content {
  max-width: 640px;
  min-width: 0;
}

.hero-title {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8vw, 5.75rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: calc(var(--line, 0) * 0.1s + 0.15s);
}

.hero-title .accent {
  color: var(--saffron);
}

.hero-subtitle {
  max-width: 520px;
  color: var(--gray);
  font-family: var(--font-condensed);
  font-size: 20px;
  line-height: 1.45;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation: fadeUp 0.6s ease 0.6s forwards;
}

.hero-stat__value {
  display: block;
  color: var(--saffron);
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.05em;
  line-height: 0.9;
}

.hero-stat__label {
  display: block;
  margin-top: 8px;
  color: var(--gray);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--saffron);
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  opacity: 0;
  animation: fadeInRight 0.6s ease 0.5s forwards;
  min-width: 0;
}

.feature-card__label,
.card__label,
.meta-tag,
.box-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--saffron);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.15);
  color: var(--saffron);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-badge--navy {
  border-color: rgba(27, 47, 94, 0.16);
  background: rgba(27, 47, 94, 0.08);
  color: var(--navy);
}

.category-badge--green {
  border-color: rgba(21, 115, 71, 0.25);
  background: rgba(21, 115, 71, 0.1);
  color: var(--green);
}

.category-badge--red {
  border-color: rgba(200, 59, 28, 0.25);
  background: rgba(200, 59, 28, 0.1);
  color: var(--red);
}

.feature-card__title {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 24px;
  line-height: 1.2;
}

.feature-card__excerpt {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.feature-card__footer,
.card__footer,
.meta-row,
.share-row,
.counter-card__footer,
.contact-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-card__footer {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card__cta,
.card__cta,
.story-link {
  color: var(--saffron);
  font-weight: 700;
}

.pillars {
  border-top: 3px solid var(--saffron);
  background: var(--navy);
}

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

.pillars__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  padding: 28px 32px;
  color: var(--white);
  text-align: left;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

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

.pillars__item:hover,
.pillars__item:focus-visible {
  background: rgba(255, 107, 0, 0.08);
}

.pillars__item.is-active {
  border-bottom: 3px solid var(--saffron);
  background: rgba(255, 107, 0, 0.12);
}

.pillars__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.pillars__name {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillars__desc {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 1.4;
}

.content-section,
.common-ground,
.mission-section,
.what-we-do,
.contact-section,
.counter-grid-section,
.article-main-section,
.related-section {
  padding: 56px 0;
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(27, 47, 94, 0.08);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  border-bottom: 3px solid var(--saffron);
  box-shadow: var(--shadow-soft);
}

.card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card__media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: var(--navy);
}

.card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--navy);
}

.card__media--saffron::before {
  border-top-color: var(--saffron);
}

.card__media--red::before {
  border-top-color: var(--red);
}

.card__media--green::before {
  border-top-color: var(--green);
}

.placeholder-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
}

.card__title {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 24px;
  line-height: 1.2;
}

.card--featured .card__title {
  font-size: 30px;
}

.card__excerpt {
  margin: 0;
  color: rgba(51, 51, 51, 0.78);
  line-height: 1.6;
}

.card__footer {
  margin-top: auto;
  color: rgba(27, 47, 94, 0.6);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.widget {
  padding: 24px;
  border: 1px solid rgba(27, 47, 94, 0.08);
  background: var(--white);
}

.widget--dark {
  border: 0;
  background: var(--navy);
  color: var(--white);
}

.widget--cream {
  border: 0;
  border-left: 4px solid var(--saffron);
  background: #f0ebe0;
}

.widget__title {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 107, 0, 0.28);
  color: inherit;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.widget__copy {
  margin: 16px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

.widget--dark .widget__copy {
  color: rgba(255, 255, 255, 0.76);
}

.newsletter-form,
.contact-form {
  display: grid;
  gap: 12px;
}

.newsletter-form input,
.newsletter-band__form input,
.contact-form input,
.contact-form textarea,
.contact-form select,
.sidebar-newsletter input {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  color: var(--white);
}

.widget:not(.widget--dark) .newsletter-form input,
.contact-form input,
.contact-form textarea,
.contact-form select,
.sidebar-newsletter input {
  border-color: rgba(27, 47, 94, 0.16);
  background: var(--white);
  color: var(--body);
}

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

.newsletter-band__form input::placeholder,
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.widget:not(.widget--dark) input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(51, 51, 51, 0.45);
}

.widget__count,
.form-feedback,
.sidebar-note,
.tiny-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 1.5;
}

.widget:not(.widget--dark) .form-feedback,
.widget:not(.widget--dark) .tiny-copy,
.contact-section .form-feedback {
  color: rgba(27, 47, 94, 0.7);
}

.trending-list,
.footer-links,
.tag-list,
.counter-sources,
.toc-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trending-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: opacity 0.2s ease;
}

.trending-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.trending-item:hover,
.trending-item:focus-within {
  opacity: 0.75;
}

.trending-number {
  color: rgba(27, 47, 94, 0.12);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.trending-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 18px;
  line-height: 1.15;
}

.trending-meta {
  margin-top: 4px;
  color: rgba(27, 47, 94, 0.5);
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-list {
  display: grid;
  gap: 12px;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(27, 47, 94, 0.06);
  background: #f0ebe0;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.social-row:hover,
.social-row:focus-visible {
  background: var(--cream);
  opacity: 0.8;
}

.social-row__count {
  color: var(--saffron);
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.05em;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
}

.counter-graphic {
  position: absolute;
  right: 60px;
  top: 40px;
  font-size: 200px;
  opacity: 0.04;
  line-height: 1;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.counter-tease {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--saffron);
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease;
}

.counter-tease:hover,
.counter-tease:focus-within {
  background: rgba(255, 255, 255, 0.07);
}

.counter-tease__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  line-height: 1.55;
}

.counter-tease__divider {
  margin: 18px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.counter-tease__reply {
  margin: 0;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.counter-tease__source {
  display: block;
  margin-top: 14px;
  color: var(--gray);
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-strip {
  padding: 64px 0;
  border-top: 1px solid rgba(27, 47, 94, 0.1);
  background: var(--cream);
}

.about-strip__grid,
.mission-section__grid,
.contact-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: start;
}

.about-headline,
.about-hero__title {
  margin: 16px 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-headline .accent,
.about-hero__title .accent {
  color: var(--saffron);
}

.page-hero__title .accent {
  color: var(--saffron);
}

.about-copy,
.mission-copy,
.pillar-card__body,
.contact-copy,
.promise-item__body {
  color: rgba(74, 85, 104, 0.94);
  line-height: 1.75;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.promise-mini {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
}

.promise-mini__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--saffron);
  font-family: var(--font-condensed);
  font-weight: 700;
}

.promise-box {
  padding: 40px;
  border-top: 4px solid var(--saffron);
  background: var(--navy);
  color: var(--white);
}

.promise-box__title {
  color: var(--saffron);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.promise-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.check-box {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 107, 0, 0.16);
  color: var(--saffron);
  font-size: 14px;
}

.promise-list strong {
  color: var(--white);
}

.common-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(27, 47, 94, 0.1);
}

.story-card {
  position: relative;
  padding: 28px;
  border-right: 1px solid rgba(27, 47, 94, 0.1);
  background: var(--white);
  transition: background-color 0.25s ease;
}

.story-card:last-child {
  border-right: 0;
}

.story-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 4px;
  height: 0;
  background: var(--saffron);
  transition: height 0.3s ease;
}

.story-card:hover,
.story-card:focus-within {
  background: #f0ebe0;
}

.story-card:hover::before,
.story-card:focus-within::before {
  height: calc(100% - 56px);
}

.story-state {
  color: var(--saffron);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.story-title {
  margin: 12px 0 14px;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 26px;
  line-height: 1.1;
}

.newsletter-band {
  background: var(--saffron);
  color: var(--white);
  padding: 48px 0;
}

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

.newsletter-band__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.newsletter-band__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-condensed);
  font-size: 16px;
}

.newsletter-band__form {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  min-width: min(100%, 520px);
}

.newsletter-band__form input {
  border-right: 0;
  padding-inline: 20px;
}

.newsletter-band__form .button {
  border-radius: 0;
}

.newsletter-band__form .form-feedback {
  flex-basis: 100%;
  margin-top: 12px;
}

.newsletter-form .form-feedback,
.contact-form .form-feedback {
  margin: 0;
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 56px 0 0;
  border-top: 3px solid var(--saffron);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 32px;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--saffron);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.33em;
  text-transform: uppercase;
}

.footer-brand .brand__line {
  font-size: 28px;
}

.footer-copy,
.footer-tagline,
.footer-link {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  gap: 10px;
}

.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--saffron);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  background: var(--navy-dark);
  color: var(--white);
}

.page-hero .container {
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: auto;
  padding-block: 60px;
  align-items: center;
}

.page-hero--single .container {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero__eyebrow,
.article-breadcrumb {
  color: var(--saffron);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.page-hero__title,
.article-hero__title {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-hero__subtitle,
.article-hero__subtitle {
  color: var(--gray);
  font-family: var(--font-condensed);
  font-size: 20px;
  line-height: 1.45;
}

.counter-total {
  text-align: right;
}

.counter-total__value {
  display: block;
  color: var(--saffron);
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
}

.counter-total__label {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.filter-bar {
  border-bottom: 2px solid rgba(27, 47, 94, 0.1);
  background: var(--white);
}

.filter-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 20px;
}

.filter-pill {
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.filter-pill:hover,
.filter-pill:focus-visible {
  background: rgba(27, 47, 94, 0.1);
}

.filter-pill.is-active {
  background: var(--navy);
  color: var(--white);
}

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

.counter-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 32px;
  border-top: 3px solid var(--saffron);
  background: var(--white);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.counter-card:hover,
.counter-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.counter-card[hidden] {
  display: none;
}

.counter-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(27, 47, 94, 0.64);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.counter-card__claimbox {
  padding: 18px;
  background: rgba(138, 153, 181, 0.08);
}

.counter-card__source-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: rgba(27, 47, 94, 0.08);
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.counter-card__claim {
  margin: 0;
  color: rgba(51, 51, 51, 0.76);
  font-style: italic;
  line-height: 1.7;
}

.counter-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.counter-divider::before,
.counter-divider::after {
  content: "";
  flex: 1;
  border-top: 1px dashed rgba(27, 47, 94, 0.24);
}

.counter-card__reply {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.counter-sources a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.load-more {
  margin-top: 32px;
  width: 100%;
}

.article-page {
  background: var(--white);
}

.article-hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 56px 0 48px;
}

.article-hero .container {
  max-width: 860px;
}

.article-breadcrumb {
  color: rgba(255, 255, 255, 0.5);
}

.article-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.article-hero__title {
  font-size: clamp(3.8rem, 7vw, 4.25rem);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reading-progress {
  position: fixed;
  top: 72px;
  left: 0;
  z-index: 98;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.reading-progress__bar {
  width: 0;
  height: 100%;
  background: var(--saffron);
  transition: width 0.1s linear;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
}

.article-prose {
  min-width: 0;
}

.article-prose > * + * {
  margin-top: 1.2rem;
}

.lead {
  color: #1a1a2e;
  font-size: 18px;
  line-height: 1.8;
}

.article-prose p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.article-prose h2 {
  margin-top: 2.4rem;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pull-quote {
  margin: 2rem 0;
  padding: 18px 22px;
  border-left: 4px solid var(--saffron);
  background: var(--saffron-soft);
  color: var(--navy);
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
}

.highlight-box,
.said-box,
.counter-box {
  padding: 20px;
  border-left: 4px solid var(--navy);
  background: #e8eef7;
}

.said-box {
  border-left-color: var(--gray);
  background: var(--white);
}

.counter-box {
  border-left-color: var(--saffron);
  background: var(--saffron-soft);
}

.said-box p,
.highlight-box p,
.counter-box p {
  margin: 0;
}

.source-inline {
  display: inline-block;
  margin-top: 6px;
  color: rgba(51, 51, 51, 0.6);
  font-size: 13px;
  font-style: italic;
}

.article-tags,
.sidebar-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(27, 47, 94, 0.08);
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-box,
.sidebar-card {
  padding: 20px;
  border: 1px solid rgba(27, 47, 94, 0.08);
  background: var(--white);
}

.sidebar-card {
  position: sticky;
  top: 108px;
}

.toc-title,
.sidebar-card__title {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.toc-list a {
  color: rgba(27, 47, 94, 0.76);
  line-height: 1.55;
  transition: color 0.2s ease;
}

.toc-list a:hover,
.toc-list a:focus-visible,
.toc-list a.is-active {
  color: var(--saffron);
}

.related-grid,
.pillar-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.pillar-card {
  padding: 28px;
  border-top: 3px solid var(--saffron);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card--navy {
  border-top-color: var(--navy);
}

.pillar-card--green {
  border-top-color: var(--green);
}

.pillar-card:hover,
.pillar-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
}

.pillar-card__icon {
  font-size: 2rem;
}

.promise-section {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
}

.promise-section .section-heading__title {
  color: var(--white);
}

.promise-section .section-heading__line {
  background: linear-gradient(90deg, var(--saffron), transparent);
}

.promise-stack {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.promise-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promise-item:last-child {
  border-bottom: 0;
}

.promise-item__number {
  color: rgba(255, 107, 0, 0.2);
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.9;
}

.promise-item__title {
  margin: 0 0 6px;
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 24px;
  line-height: 1.1;
}

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

.contact-row {
  display: grid;
  gap: 4px;
}

.contact-row__label {
  color: var(--saffron);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-row__value {
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 22px;
  line-height: 1.2;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 3px;
  background: var(--navy);
  color: var(--saffron);
  box-shadow: 0 10px 30px rgba(13, 27, 53, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

[data-reveal].visible {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.mobile-menu__footer-link {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.inline-email-link,
.newsletter-direct-contact a,
.footer-email {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter-direct-contact {
  margin: 0;
  color: rgba(27, 47, 94, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.widget--dark .newsletter-direct-contact {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-band .newsletter-direct-contact {
  color: rgba(255, 255, 255, 0.86);
}

.newsletter-band__form .newsletter-direct-contact {
  flex-basis: 100%;
  margin-top: 12px;
}

.editorial-feature-section {
  padding-top: 0;
}

.editorial-feature-shell,
.editorial-explainer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: start;
}

.editorial-feature-title {
  margin-top: 24px;
  font-size: clamp(2.5rem, 4vw, 3.2rem);
}

.editorial-feature-copy {
  max-width: 680px;
}

.editorial-feature-actions {
  margin-top: 24px;
}

.editorial-spotlight {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border-top: 4px solid var(--saffron);
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.editorial-spotlight__title {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: 30px;
  line-height: 1.14;
}

.editorial-spotlight__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.editorial-spotlight__links {
  display: grid;
  gap: 12px;
}

.briefing-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.briefing-card {
  padding: 24px;
  border-top: 3px solid var(--saffron);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(27, 47, 94, 0.06);
}

.briefing-card__title {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 24px;
  line-height: 1.12;
  text-transform: uppercase;
}

.briefing-card__copy {
  margin: 0;
  color: rgba(51, 51, 51, 0.78);
  line-height: 1.65;
}

.editorial-counter-tease {
  max-width: 760px;
  margin-top: 32px;
}

.editorial-counter-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.explainer-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.editorial-hot-take {
  padding: 32px;
  border-top: 4px solid var(--saffron);
  background: var(--navy-dark);
  color: var(--white);
}

.editorial-hot-take .section-heading__title {
  color: var(--white);
}

.editorial-hot-take__copy {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-condensed);
  font-size: 24px;
  line-height: 1.4;
}

.box-list,
.article-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.box-list li,
.article-list li {
  line-height: 1.7;
}

.sources-placeholder {
  padding: 20px;
  border: 1px solid rgba(27, 47, 94, 0.1);
  background: #f8f5ef;
}

.article-kicker {
  margin: 0 0 18px;
  color: rgba(27, 47, 94, 0.64);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.explainer-summary {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.explainer-summary__lead {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-condensed);
  font-size: 26px;
  line-height: 1.2;
}

.explainer-summary__copy {
  margin: 0;
  color: rgba(74, 85, 104, 0.94);
  line-height: 1.75;
}

.explainer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .site-nav {
    gap: 14px;
  }

  .nav-list {
    gap: 12px;
  }

  .counter-grid,
  .related-grid,
  .pillar-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .briefing-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(1400px, calc(100% - 64px));
  }

  .hero--home .container,
  .page-hero .container {
    grid-template-columns: 1fr;
  }

  .content-shell,
  .article-layout,
  .about-strip__grid,
  .mission-section__grid,
  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sidebar-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .common-grid,
  .counter-grid,
  .related-grid,
  .pillar-cards,
  .counter-cards {
    grid-template-columns: 1fr 1fr;
  }

  .counter-total {
    text-align: left;
  }

  .editorial-feature-shell,
  .editorial-explainer-shell {
    grid-template-columns: 1fr;
  }

  .briefing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 48px);
  }

  html,
  body {
    overflow-x: hidden;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand__line {
    gap: 4px;
    font-size: 22px;
    letter-spacing: 0.07em;
    flex-wrap: wrap;
  }

  .brand__subline {
    letter-spacing: 0.16em;
    white-space: normal;
  }

  .site-nav .nav-list,
  .site-nav .button {
    display: none;
  }

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

  .hero--home .container,
  .page-hero .container,
  .article-layout,
  .footer-grid,
  .counter-cards,
  .common-grid,
  .related-grid,
  .pillar-cards,
  .counter-grid,
  .content-shell,
  .about-strip__grid,
  .mission-section__grid,
  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .hero--home .container,
  .page-hero .container {
    gap: 24px;
    padding-block: 40px;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 3.75rem);
    letter-spacing: 0.02em;
  }

  .page-hero__title,
  .article-hero__title {
    font-size: clamp(2.9rem, 15vw, 3.625rem);
  }

  .ticker__inner {
    gap: 12px;
  }

  .ticker__label {
    padding: 6px 10px;
    letter-spacing: 0.2em;
  }

  .ticker__track {
    gap: 24px;
    font-size: 12px;
  }

  .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 6px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero-subtitle,
  .feature-card__title,
  .card__title,
  .story-title,
  .page-hero__title,
  .article-hero__title,
  .contact-row__value {
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .feature-card {
    padding: 22px;
  }

  .feature-card__footer,
  .card__footer {
    align-items: flex-start;
  }

  .hero-stats {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-stats > div {
    min-width: 150px;
  }

  .pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillars__item {
    padding: 16px;
    min-width: 0;
  }

  .pillars__name,
  .pillars__desc {
    overflow-wrap: anywhere;
  }

  .article-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .card--featured {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .newsletter-band__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-band__form {
    flex-direction: column;
    gap: 12px;
    min-width: 0;
  }

  .newsletter-band__form input {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .share-row {
    width: 100%;
  }

  .share-row .share-button {
    flex: 1 1 100%;
  }

  .section-heading__line {
    min-width: 0;
    width: 100%;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-section,
  .common-ground,
  .mission-section,
  .what-we-do,
  .contact-section,
  .counter-grid-section,
  .article-main-section,
  .related-section,
  .about-strip,
  .newsletter-band,
  .promise-section {
    padding-block: 40px;
  }

  .story-card {
    border-right: 0;
    border-bottom: 1px solid rgba(27, 47, 94, 0.1);
  }

  .story-card:last-child {
    border-bottom: 0;
  }

  .filter-bar .container {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .counter-divider {
    flex-wrap: wrap;
  }

  .counter-divider::before,
  .counter-divider::after {
    min-width: 48px;
  }

  .reading-progress {
    top: 72px;
  }

  .briefing-card-grid,
  .explainer-card-grid {
    grid-template-columns: 1fr;
  }

  .editorial-hot-take__copy {
    font-size: 20px;
  }

  .mobile-menu__footer-link {
    text-align: center;
    word-break: break-word;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 32px);
  }

  .brand__line {
    font-size: 20px;
    letter-spacing: 0.05em;
  }

  .hero-title {
    font-size: clamp(2.6rem, 15vw, 3.3rem);
  }

  .page-hero__title,
  .article-hero__title {
    font-size: clamp(2.5rem, 14vw, 3.1rem);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
