:root {
  --bg: #f6f3ec;
  --bg-strong: #fbf9f4;
  --surface: #fffdf9;
  --surface-soft: #eef3f6;
  --border: #d9dfdf;
  --border-strong: #c6d0d6;
  --ink: #14212c;
  --muted: #5b6773;
  --accent: #1f5275;
  --accent-dark: #163e59;
  --accent-soft: #e7eef3;
  --shadow: 0 18px 40px rgba(20, 33, 44, 0.05);
  --radius: 18px;
  --measure: 68ch;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

::selection {
  background: rgba(31, 82, 117, 0.16);
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(31, 82, 117, 0.18);
}

a:hover {
  color: var(--accent-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(31, 82, 117, 0.22);
  outline-offset: 3px;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 9vw, 5.2rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.28rem, 4.8vw, 1.55rem);
  line-height: 1.1;
}

strong {
  color: var(--ink);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-220%);
  transition: transform 0.18s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
  .social-link {
    transition: none;
  }
}

.site-shell,
.reading-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.reading-shell {
  width: min(760px, calc(100% - 48px));
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(251, 249, 244, 0.96);
}

.site-header::before {
  content: "";
  display: block;
  height: 6px;
  background: var(--accent);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2rem;
  padding: 1rem 0 1.05rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: flex-start;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: auto;
  height: 2.95rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(31, 82, 117, 0.35);
}

.site-nav .button {
  margin-left: 0.5rem;
}

.site-nav a.button-primary,
.site-nav a.button-primary:hover {
  color: #ffffff;
}

.site-main {
  flex: 1;
}

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding-top: 3.75rem;
  padding-bottom: 3rem;
}

.section--tint {
  background: var(--surface-soft);
  border-block: 1px solid var(--border);
}

.section--editor {
  padding-top: 1rem;
  padding-bottom: 3.25rem;
}

.page-intro {
  max-width: 760px;
  padding: 3.75rem 0 2rem;
}

.page-intro--wide {
  max-width: 860px;
}

.page-intro p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.lede {
  max-width: 60ch;
  font-size: 1.18rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.75rem;
}

.support-note {
  margin: 0;
  max-width: 34rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.copy-block {
  max-width: var(--measure);
}

.editor-intro {
  max-width: 860px;
  margin-bottom: 2rem;
}

.editor-lede {
  max-width: 72ch;
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.editor-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: flex-start;
  gap: 1.15rem;
}

.editor-portrait {
  width: 112px;
  height: 134px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  flex-shrink: 0;
}

.editor-card-copy {
  min-width: 0;
}

.editor-card-copy h3 {
  margin-bottom: 0.35rem;
}

.editor-affiliation {
  margin: 0;
  font-size: 0.95rem;
}

.archive-item h2,
.contact-panel h2,
.policy-section h2 {
  font-size: clamp(1.28rem, 4.8vw, 1.55rem);
  line-height: 1.1;
}

.contact-address {
  margin: 0 0 1rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.28rem, 4.8vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.contact-address a {
  color: inherit;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1.25rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card p:last-child {
  margin-bottom: 0;
}

.note-panel {
  background: var(--bg-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.button-small {
  min-height: 2.45rem;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.text-link {
  font-weight: 600;
}

.issue-format {
  list-style: none;
}

.issue-format li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.issue-format li:first-child {
  padding-top: 0;
  border-top: none;
}

.issue-format strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.02rem;
}

.issue-format p {
  margin: 0;
  font-size: 0.95rem;
}

.issue-format-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.policy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.policy-section {
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
}

.policy-section:first-child {
  border-top: none;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.archive-list {
  display: grid;
  gap: 1rem;
}

.archive-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.archive-item p:last-child {
  margin-bottom: 0;
}

.archive-item h2 a {
  color: inherit;
  text-decoration: none;
}

.archive-item h2 a:hover {
  color: var(--accent);
}

.issue-article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.issue-header {
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.article-byline {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--ink);
}

.article-summary {
  margin: 0;
  max-width: var(--measure);
  font-size: 1.12rem;
  color: var(--ink);
}

.issue-body {
  display: grid;
  gap: 1.6rem;
}

.issue-body section {
  display: grid;
  gap: 0.75rem;
}

.issue-body h2 {
  margin-bottom: 0.15rem;
}

.issue-body ul {
  padding-left: 1.2rem;
}

.issue-body li {
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.source-list {
  list-style: none;
  padding-left: 0;
}

.source-list li {
  margin-bottom: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

.source-list li:first-child {
  padding-top: 0;
  border-top: none;
}

.source-link {
  font-weight: 700;
}

.issue-footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 2rem;
}

.issue-meta {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
}

.cta-panel {
  padding: 1.75rem;
  background: var(--bg-strong);
}

.callout {
  margin-top: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(251, 249, 244, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.5rem 0 2rem;
}

.footer-mark {
  display: block;
  width: auto;
  height: 1.9rem;
  margin: 0 0 0.35rem;
}

.footer-copy {
  margin: 0;
  max-width: 42rem;
  font-size: 0.95rem;
}

.footer-brand {
  min-width: 0;
}

.footer-social {
  margin-top: 1rem;
}

.footer-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease,
    background-color 0.18s ease, color 0.18s ease;
}

.social-link:hover {
  color: var(--accent-dark);
  border-color: var(--border-strong);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.social-link .social-icon--stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-links .footer-subscribe {
  color: var(--ink);
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem 1.25rem;
  }

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

  .site-nav .button {
    margin-left: 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .editor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell,
  .reading-shell {
    width: min(1120px, calc(100% - 28px));
  }

  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.78rem 0;
  }

  .brand-lockup {
    max-width: calc(100% - 3.5rem);
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.38rem;
  }

  .site-nav a {
    min-height: 2.55rem;
    padding: 0.48rem 0.56rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.92);
    font-size: 0.9rem;
  }

  .site-nav a[aria-current="page"] {
    border-color: var(--border-strong);
    background: var(--accent-soft);
    text-decoration: none;
  }

  .site-nav a.button-primary,
  .site-nav a.button-primary:hover,
  .site-nav a.button-primary:focus-visible {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(31, 82, 117, 0.18);
  }

  .site-nav .button {
    margin-left: 0;
    width: auto;
  }

  h1 {
    font-size: clamp(2.2rem, 11.4vw, 3.3rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.7rem, 7.6vw, 2.2rem);
    line-height: 1;
  }

  h3 {
    font-size: clamp(1.2rem, 5.8vw, 1.45rem);
  }

  .section {
    padding: 3rem 0;
  }

  .section--tight {
    padding-top: 2.25rem;
    padding-bottom: 1.9rem;
  }

  .section--editor {
    padding-top: 0.35rem;
    padding-bottom: 2.4rem;
  }

  .page-intro {
    padding: 2.15rem 0 1.1rem;
  }

  .lede {
    font-size: 1.05rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 1.35rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .page-home .hero-actions .button-primary {
    display: inline-flex;
    width: auto;
    align-self: flex-start;
  }

  .page-home .hero-actions {
    margin-top: 1rem;
  }

  .support-note {
    max-width: none;
    font-size: 0.92rem;
  }

  .archive-item {
    flex-direction: column;
    gap: 0.85rem;
  }

  .status-pill {
    align-self: flex-start;
  }

  .card,
  .cta-panel {
    padding: 1.15rem;
  }

  .issue-article {
    padding: 1.15rem;
  }

  .editor-intro {
    margin-bottom: 1.4rem;
  }

  .editor-grid {
    gap: 0.9rem;
  }

  .editor-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
  }

  .editor-portrait {
    width: 96px;
    height: 116px;
  }

  .issue-format li {
    gap: 0.75rem;
  }

  .issue-format-index {
    min-width: 2rem;
    height: 2rem;
  }

  .policy {
    padding-inline: 1rem;
  }

  .article-meta {
    gap: 0.55rem 0.75rem;
  }

  .issue-footer-actions {
    align-items: stretch;
  }

  .archive-item,
  .issue-body,
  .policy-section {
    scroll-margin-top: 1rem;
  }

  .footer-inner {
    padding: 1.2rem 0 1.6rem;
  }

  .footer-social {
    margin-top: 0.8rem;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .footer-links a {
    min-height: 3rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.9);
  }

  .footer-links .footer-subscribe {
    color: #ffffff;
    border-color: var(--accent);
    background: var(--accent);
  }

  .button {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.92rem 1.2rem;
    font-size: 1rem;
  }

  .button-small {
    white-space: normal;
  }
}

/* ═══════════════════════════════════════════════════
   DESIGN-SYSTEM OVERRIDES (second :root layer)
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #f4f0e7;
  --bg-strong: #faf6ef;
  --surface: #fffdf8;
  --surface-soft: #f2eee5;
  --surface-note: #f6f0e4;
  --border: #d3d8d5;
  --border-strong: #b9c3c6;
  --ink: #172630;
  --muted: #59646d;
  --accent: #204f72;
  --accent-dark: #173b56;
  --accent-soft: #e6edf2;
  /* Rec 4: Darkened from #8a6a3d → #6B5330 for WCAG AA contrast on cream */
  --accent-bronze: #6B5330;
  --accent-bronze-soft: #efe7da;
  --shadow: 0 10px 26px rgba(23, 38, 48, 0.04);
  --radius: 14px;
}

body {
  background: linear-gradient(
    180deg,
    rgba(255, 253, 248, 0.76) 0%,
    rgba(244, 240, 231, 0.92) 22%,
    var(--bg) 100%
  );
}

a {
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.16em;
}

p {
  line-height: 1.72;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

/* Rec 1: Reduced from clamp(2.75rem,8vw,5rem)/0.94 → max 3.75rem (60px) with 1.05 line-height */
h1 {
  font-size: clamp(2.5rem, 7vw, 3.75rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  line-height: 1.06;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-header::before {
  height: 4px;
}

.header-inner {
  padding: 1.15rem 0 1.25rem;
}

.brand-mark {
  height: 2.95rem;
}

.site-nav a {
  min-height: 2.75rem;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  text-decoration: none;
}

.section {
  padding: 4.75rem 0;
}

/* Rec 1: Reduced hero section padding from 4.4/3.4 → 3rem/2.4rem */
.section--tight {
  padding-top: 3rem;
  padding-bottom: 2.4rem;
}

.section--editor {
  padding-top: 1.8rem;
  padding-bottom: 3.8rem;
}

.section--tint {
  background: rgba(242, 238, 229, 0.88);
}

.section--bordered {
  background: rgba(255, 253, 248, 0.62);
  border-block: 1px solid var(--border);
}

.page-intro {
  padding: 4.25rem 0 2.1rem;
}

.page-intro--wide {
  max-width: 54rem;
}

.breadcrumb {
  padding: 2rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.breadcrumb-sep {
  margin: 0 0.35rem;
  color: var(--border-strong);
  font-weight: 400;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--accent-bronze);
}

.lede {
  max-width: 62ch;
  font-size: 1.17rem;
  line-height: 1.7;
}

.button {
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border-radius: 4px;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-primary:active {
  background: var(--accent-dark);
  transform: translateY(1px);
}

.button-small {
  min-height: 2.5rem;
  padding: 0.7rem 1rem;
}

.card,
.policy,
.issue-article {
  box-shadow: none;
}

.text-link {
  color: var(--ink);
  text-decoration-color: rgba(32, 79, 114, 0.26);
}

.text-link:hover {
  color: var(--accent);
}

.hero-note {
  position: relative;
  padding: 0.6rem 0 0.2rem;
}

.hero-note > * {
  position: relative;
  z-index: 1;
}

.hero-note::before,
.hero-note::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero-note::before {
  top: -0.35rem;
  right: -6.5rem;
  width: clamp(14rem, 26vw, 18rem);
  height: clamp(14rem, 26vw, 18rem);
  border: 1px solid rgba(32, 79, 114, 0.12);
}

.hero-note::after {
  top: 1.4rem;
  right: -3.5rem;
  width: clamp(8rem, 17vw, 11rem);
  height: clamp(8rem, 17vw, 11rem);
  border: 1px solid rgb(107 83 48 / 22%);
}

.hero-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.8rem;
  align-items: center;
  gap: 1rem 1.2rem;
}

.hero-secondary {
  font-size: 0.95rem;
}

.hero-proof {
  margin: 1.1rem 0 0.55rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
}

.support-note {
  max-width: 42rem;
  font-size: 0.93rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.85rem;
}

.section-heading--compact {
  margin-bottom: 1.3rem;
}

.section-heading .lede,
.section-heading--compact .lede {
  font-size: 1.05rem;
}

.page-actions,
.subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.25rem;
}

.page-actions {
  margin-top: 1.1rem;
}

.editorial-flow {
  list-style: none;
  border-top: 1px solid var(--border);
}

.editorial-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.editorial-step strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 1rem;
}

.editorial-step p {
  margin: 0;
}

.editorial-standard {
  padding: 1.45rem 1.55rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-bronze);
  border-radius: 4px;
  background: var(--surface-note);
}

.editorial-standard h2 {
  font-size: clamp(1.48rem, 3vw, 1.9rem);
  line-height: 1.04;
}

.editorial-standard p:last-child {
  margin-bottom: 0;
}

.editorial-standard--wide {
  max-width: 100%;
}

.evidence-grid,
.principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.35rem;
  margin-top: 1.5rem;
}

.evidence-callout,
.principle-item {
  padding-top: 1rem;
  border-top: 1px solid var(--border-strong);
}

.judgment-label {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-bronze);
}

.evidence-callout p:last-child,
.principle-item p:last-child {
  margin-bottom: 0;
}

/* Morning-Brew style tight row layout. The whole row is a single anchor so
   the entire stripe is clickable. Title + brief summary sit inline (truncated
   with ellipsis on overflow) on the left; date right-aligned. Subtle stripe
   on even rows for scan rhythm. */
.issue-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: baseline;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease;
}

.archive-list .issue-row:first-child {
  border-top: 1px solid var(--border);
}

.archive-list .issue-row:nth-child(even) {
  background: rgba(246, 240, 228, 0.45);
}

.archive-list .issue-row:hover,
.archive-list .issue-row:focus-visible {
  background: var(--accent-soft);
  outline: none;
}

.issue-row-content {
  min-width: 0;
  font-family: "Public Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.issue-row-title {
  font-weight: 700;
  color: var(--ink);
}

.issue-row-summary {
  color: var(--muted);
  font-weight: 400;
}

.issue-row-date {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 600px) {
  .issue-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
    padding: 0.85rem 1rem;
  }
  .issue-row-content {
    white-space: normal;
  }
  .issue-row-date {
    font-size: 0.78rem;
  }
}

.archive-intro {
  max-width: 44rem;
}

.archive-feature {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    rgba(255, 253, 248, 0.98) 0%,
    rgba(246, 240, 228, 0.88) 100%
  );
}

.archive-feature > * {
  position: relative;
  z-index: 1;
}

.archive-feature-number {
  position: absolute;
  top: 0.75rem;
  right: 1.15rem;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(4.5rem, 12vw, 7rem);
  line-height: 0.8;
  color: rgba(23, 38, 48, 0.07);
}

.archive-feature h2 {
  max-width: 28rem;
}

.archive-feature h2 a {
  color: inherit;
  text-decoration: none;
}

.archive-feature h2 a:hover {
  color: var(--accent);
}

.archive-feature-summary {
  max-width: 34rem;
  margin-bottom: 0;
}

.archive-feature-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.archive-utility {
  margin: 0;
  font-size: 0.92rem;
}

.archive-list {
  gap: 0;
}

.archive-note {
  margin-top: 1.1rem;
}

.status-pill {
  min-height: 2.2rem;
  padding: 0.5rem 0.82rem;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.status-pill:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.editor-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.editor-credential {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

.editor-credential-portrait {
  border-radius: 4px;
}

.editor-credential-copy h3 {
  margin-bottom: 0.3rem;
}

.editor-credential-note {
  margin: 0.6rem 0 0;
  max-width: 34ch;
  font-size: 0.95rem;
}

.subscribe-slab {
  padding-top: 1.95rem;
  border-top: 1px solid var(--ink);
}

.subscribe-slab p:last-child {
  margin-bottom: 0;
}

.subscribe-actions {
  margin-top: 1.4rem;
}

.beehiiv-embed-wrapper {
  margin-top: 1.75rem;
  width: 400px;
  max-width: 100%;
}

.beehiiv-embed-wrapper iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: 49px;
  border: none;
  background-color: transparent;
}

.subscribe-proof {
  margin-top: 1rem;
  max-width: 44rem;
  font-size: 0.92rem;
}

/* Subscribe form */
.subscribe-form {
  margin-top: 1.4rem;
}

.subscribe-form-row {
  display: flex;
  gap: 0.55rem;
  max-width: 28rem;
}

.subscribe-form-input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s ease;
}

.subscribe-form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 82, 117, 0.12);
}

.subscribe-form-input::placeholder {
  color: var(--muted);
}

.subscribe-form-button {
  flex-shrink: 0;
}

.subscribe-form-note {
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.subscribe-privacy {
  margin: 0.9rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.subscribe-slab .subscribe-privacy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 32rem;
}

.beehiiv-embed-wrapper .subscribe-privacy {
  text-align: center;
}

.subscribe-privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.subscribe-privacy a:hover {
  color: var(--accent-dark);
}

/* Specialty cards */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.specialty-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

a.specialty-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(20, 33, 44, 0.08);
}

.specialty-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.specialty-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}

.specialty-card .status-pill {
  align-self: flex-start;
}

.specialty-card--upcoming {
  opacity: 0.65;
  border-style: dashed;
}

/* Subscribe picker (multi-newsletter page) */
.subscribe-picker-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.subscribe-picker-legend {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.subscribe-picker-option {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.subscribe-picker-option:hover {
  border-color: var(--accent);
}

.subscribe-picker-option input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  width: 1.1rem;
  height: 1.1rem;
}

.subscribe-picker-option-inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.subscribe-picker-option-name {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.subscribe-picker-option-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.subscribe-picker-option--disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.subscribe-picker-option--disabled:hover {
  border-color: var(--border);
}

.subscribe-picker-submit {
  margin-top: 1.4rem;
}

.status-pill--muted {
  background: var(--bg);
  color: var(--muted);
  border-color: var(--border);
}

.status-pill--small {
  font-size: 0.7rem;
  padding: 0.18rem 0.55rem;
}

.cta-panel {
  background: var(--surface-note);
}

.callout {
  border-left: 3px solid var(--accent-bronze);
  background: var(--surface-note);
}

.footer-inner {
  padding: 1.7rem 0 2rem;
}

.footer-kicker {
  color: var(--accent-bronze);
}

.social-link,
.footer-links a {
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════
   Subscribe notification banner
   ═══════════════════════════════════════════════════ */

.subscribe-notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--measure);
  margin: 0 auto 0;
  padding: 0.85rem 1.2rem;
  font-size: 0.92rem;
  border-radius: var(--radius);
  border: 1px solid;
}

.subscribe-notification--success {
  background: #f0f7f0;
  border-color: #b5d4b5;
  color: #2d5a2d;
}

.subscribe-notification--error {
  background: #fdf2f2;
  border-color: #e0b4b4;
  color: #8b3232;
}

.subscribe-notification-message {
  margin: 0;
  color: inherit;
}

.subscribe-notification-dismiss {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  padding: 0.2rem 0.4rem;
}

.subscribe-notification-dismiss:hover {
  opacity: 1;
}

/* Waitlist note on subscribe page */
.subscribe-picker-waitlist-note {
  margin: 0.6rem 0 0;
  padding-left: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════
   Rec 3: Homepage section visual separation
   ═══════════════════════════════════════════════════ */

.page-home .site-main > .section:nth-child(2) {
  background: rgba(242, 238, 229, 0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-home .site-main > .section:nth-child(3) {
  background: rgba(255, 253, 248, 0.5);
}

/* ═══════════════════════════════════════════════════
   Rec 6: Differentiate homepage hero from interior
   ═══════════════════════════════════════════════════ */

/* Homepage gets a slightly larger h1 than interior pages */
.page-home h1 {
  font-size: clamp(2.6rem, 7.5vw, 3.75rem);
}

/* Interior page-intro sections are more compact */
body:not(.page-home):not(.page-specialty) .page-intro {
  padding: 3rem 0 1.6rem;
}

body:not(.page-home):not(.page-specialty) .page-intro h1 {
  font-size: clamp(2.2rem, 6vw, 3rem);
}

/* ═══════════════════════════════════════════════════
   Rec 2: Hamburger navigation for mobile
   ═══════════════════════════════════════════════════ */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.9);
  cursor: pointer;
  flex-direction: column;
  gap: 3px;
  color: var(--ink);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Onboarding form */
.onboarding-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  max-width: 36rem;
  margin-top: 1.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-family: "Public Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.form-required-indicator {
  color: var(--accent);
  margin-left: 0.2rem;
  font-weight: 600;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 82, 117, 0.12);
}

.form-input::placeholder {
  color: var(--muted);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23172630' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 L6 6.5 L11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  cursor: pointer;
}

.form-help {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-note {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 36rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.onboarding-form-submit {
  align-self: flex-start;
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .evidence-grid,
  .principle-list,
  .editor-credentials {
    grid-template-columns: 1fr;
  }

  .editor-credential {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
    order: 2;
    flex-shrink: 0;
  }

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding-top: 0.35rem;
  }

  .site-nav.is-open {
    display: grid;
  }

  .brand-mark {
    height: 2.1rem;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.72rem, 7vw, 2.25rem);
  }

  /* Rec 1: Tighter hero on mobile */
  .section--tight {
    padding-top: 1.55rem;
    padding-bottom: 1.35rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  .hero-note {
    padding-top: 0.15rem;
  }

  .beehiiv-embed-wrapper {
    margin-top: 1.4rem;
    width: 100% !important;
    max-width: 400px;
  }

  .page-intro {
    padding: 2.5rem 0 1.25rem;
  }

  .site-nav a,
  .footer-links a {
    border-radius: 6px;
    background: rgba(255, 253, 248, 0.9);
  }

  .site-nav a {
    min-height: 2.9rem;
    justify-content: flex-start;
    padding: 0.72rem 0.95rem;
  }

  .site-nav a.button-primary,
  .site-nav a.button-primary:hover,
  .site-nav a.button-primary:focus-visible {
    box-shadow: none;
  }

  .button {
    width: 100%;
    min-height: 3.1rem;
  }

  .page-home .hero-actions .button-primary {
    display: inline-flex;
  }

  .hero-note::before,
  .hero-note::after,
  .archive-feature-number {
    display: none;
  }

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

  .hero-secondary,
  .subscribe-actions .text-link {
    width: 100%;
  }

  .editorial-step {
    grid-template-columns: 1fr;
  }

  .archive-feature {
    padding: 1.4rem 1.15rem;
  }

  .archive-feature-footer {
    align-items: stretch;
  }

  .editor-credential {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .editor-credential-portrait {
    width: 96px;
    height: 116px;
  }

  .editorial-standard,
  .card,
  .policy,
  .issue-article {
    padding: 1.15rem;
  }

  .subscribe-slab {
    padding-top: 1.4rem;
  }

  .subscribe-form-row {
    flex-direction: column;
    max-width: none;
  }

  .subscribe-picker-option {
    padding: 0.85rem 1rem;
  }

  /* Rec 6: Homepage h1 on mobile */
  .page-home h1 {
    font-size: clamp(2.2rem, 10.5vw, 3rem);
  }

  body:not(.page-home):not(.page-specialty) .page-intro h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .onboarding-form {
    gap: 1.15rem;
  }

  .onboarding-form-submit {
    align-self: stretch;
    width: 100%;
  }
}
