/* ==========================================================================
   PEARLS & PITFALLS MEDICAL ADVISING
   Editorial Magazine × Trust & Authority
   ========================================================================== */

:root {
  /* Brand */
  --navy-950: #0a1226;
  --navy-900: #0f1f3d;
  --navy-800: #16264a;
  --navy-700: #1d3160;
  --navy-500: #3b5998;

  --gold-700: #936b1f;
  --gold-600: #b08527;
  --gold-500: #ca8a04;
  --gold-400: #d9a83a;
  --gold-200: #ecd49a;
  --gold-100: #f5e7c2;

  /* Paper */
  --paper-50: #fdfcf9;
  --paper-100: #faf6ee;
  --paper-200: #f3ecdb;
  --paper-300: #e9dfc6;

  --ink-950: #050709;
  --ink-900: #111418;
  --ink-800: #1d2228;
  --ink-700: #2c3138;
  --ink-600: #444b56;
  --ink-500: #5b6470;
  --ink-400: #7e8896;
  --ink-300: #a3acb8;
  --ink-200: #d6dce4;
  --ink-100: #ebeff4;

  --rule: #d8cfb8;
  --rule-light: #e6dec8;

  --white: #ffffff;
  --bg: var(--paper-50);
  --bg-alt: var(--paper-100);
  --bg-dark: var(--navy-950);

  /* Typography */
  --serif: 'Libre Bodoni', 'Bodoni 72', 'Didot', Georgia, serif;
  --sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing (editorial rhythm) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 10rem;

  /* Layout */
  --container: 1280px;
  --reading: 720px;
  --rail: 1080px;

  /* Radii — editorial = minimal/sharp */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-pill: 999px;

  --t-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 320ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-paper: 0 1px 0 rgba(15, 31, 61, 0.04), 0 8px 24px rgba(15, 31, 61, 0.06);
  --shadow-print: 0 24px 60px rgba(15, 31, 61, 0.12);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ink-900);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--gold-700); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  color: inherit;
}

input, textarea, select { font-family: inherit; font-size: inherit; }

::selection {
  background: var(--gold-500);
  color: var(--navy-950);
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ==========================================================================
   TYPOGRAPHY (editorial)
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  color: var(--navy-950);
  margin: 0 0 var(--s-4) 0;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
h1 em, h1 .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-700);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); line-height: 1.2; }
h4 { font-size: 1.125rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; }

p { margin: 0 0 var(--s-4) 0; }
p:last-child { margin-bottom: 0; }

/* Editorial helpers */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--s-4);
  position: relative;
  padding-left: 28px;
}
.kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold-600);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.4;
  color: var(--ink-700);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--s-6);
  max-width: 640px;
}

.byline {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-500);
  text-transform: uppercase;
}

/* Drop cap — appears on first paragraph of section with .has-dropcap */
.has-dropcap > p:first-of-type::first-letter,
.dropcap::first-letter {
  font-family: var(--serif);
  font-size: 5.5em;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  margin: 0.06em 0.08em -0.04em 0;
  color: var(--gold-700);
  font-style: italic;
}

/* Pull quote */
.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.25;
  font-style: italic;
  color: var(--navy-900);
  margin: var(--s-7) 0;
  padding: var(--s-5) 0;
  border-top: 3px solid var(--navy-900);
  border-bottom: 1px solid var(--rule);
  text-indent: -0.4em;
}
.pullquote::before { content: '\201C'; }
.pullquote::after { content: '\201D'; }
.pullquote-attr {
  display: block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold-700);
  margin-top: var(--s-4);
  text-indent: 0;
}

/* Marginalia — small note in the gutter */
.marginalia {
  font-family: var(--sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-500);
  font-style: italic;
  border-left: 2px solid var(--gold-500);
  padding-left: var(--s-4);
}

/* Rule (section divider) */
.rule {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: var(--s-7) 0;
}
.rule-thick {
  border: 0;
  height: 3px;
  background: var(--navy-900);
  margin: var(--s-6) 0 var(--s-5) 0;
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  margin: var(--s-7) 0;
  color: var(--gold-600);
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 80px;
}
.ornament svg { width: 24px; height: 24px; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--s-5);
  padding-right: var(--s-5);
}
.container-rail {
  width: 100%;
  max-width: var(--rail);
  margin: 0 auto;
  padding-left: var(--s-5);
  padding-right: var(--s-5);
}
.container-reading {
  width: 100%;
  max-width: var(--reading);
  margin: 0 auto;
  padding-left: var(--s-5);
  padding-right: var(--s-5);
}

section { padding: var(--s-9) 0; }
@media (max-width: 767px) { section { padding: var(--s-8) 0; } }

.bg-alt { background: var(--bg-alt); }
.bg-paper { background: var(--paper-200); }
.bg-dark {
  background: var(--navy-950);
  color: var(--paper-200);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--paper-50); }
.bg-dark h1 em, .bg-dark h1 .italic { color: var(--gold-400); }
.bg-dark .kicker { color: var(--gold-400); }
.bg-dark .kicker::before { background: var(--gold-400); }
.bg-dark .lede { color: var(--ink-200); }
.bg-dark .pullquote { border-color: var(--gold-400); color: var(--paper-50); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: 0.95rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-base), color var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  text-align: center;
  min-height: 48px;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy-950);
  color: var(--paper-50);
  border-color: var(--navy-950);
}
.btn-primary:hover {
  background: var(--gold-600);
  color: var(--navy-950);
  border-color: var(--gold-600);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}
.btn-gold:hover {
  background: var(--gold-700);
  color: var(--paper-50);
  border-color: var(--gold-700);
}

.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--navy-900);
}
.btn-outline:hover {
  background: var(--navy-950);
  color: var(--paper-50);
}
.bg-dark .btn-outline {
  color: var(--paper-50);
  border-color: var(--paper-50);
}
.bg-dark .btn-outline:hover {
  background: var(--paper-50);
  color: var(--navy-950);
}

.btn-large { padding: 1.1rem 2rem; font-size: 1rem; }
.btn-small { padding: 0.7rem 1.25rem; font-size: 0.8125rem; min-height: 40px; }

/* Text link with arrow */
.link-arrow {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  border-bottom: 1px solid var(--navy-900);
  padding-bottom: 4px;
  transition: gap var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.link-arrow::after { content: '→'; transition: transform var(--t-fast); }
.link-arrow:hover {
  color: var(--gold-700);
  border-color: var(--gold-700);
  gap: var(--s-4);
}

/* ==========================================================================
   MASTHEAD / HEADER
   ========================================================================== */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 249, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base);
}
.masthead.is-scrolled { border-bottom-color: var(--rule); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: var(--s-5);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-700);
  position: relative;
  padding: 0.5rem 0;
}
.nav-menu a:hover, .nav-menu a.is-active { color: var(--navy-950); }
.nav-menu a.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-500);
}

.nav-cta { display: flex; align-items: center; gap: var(--s-3); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--navy-950);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

@media (max-width: 1023px) {
  .nav-menu, .nav-cta .btn:not(.nav-cta-primary) { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 540px) {
  .nav { height: 72px; }
  .nav-logo img { height: 44px; }
  .nav-cta-primary { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(88vw, 380px);
  background: var(--paper-50);
  z-index: 200;
  padding: var(--s-7) var(--s-6);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  box-shadow: var(--shadow-print);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 18, 38, 0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-6);
}
.mobile-menu-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-950);
}
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { border-bottom: 1px solid var(--rule); }
.mobile-menu li a {
  display: block;
  padding: var(--s-4) 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy-950);
  letter-spacing: -0.015em;
}
.mobile-menu .btn-primary { color: var(--paper-50); }
.mobile-menu .btn-gold { color: var(--navy-950); }
.mobile-menu .btn {
  margin-top: var(--s-6);
  width: 100%;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  padding: 1rem 0.75rem;
  white-space: normal;
}

body.menu-open { overflow: hidden; }

/* ==========================================================================
   COVER (Hero) — editorial magazine cover
   ========================================================================== */
.cover {
  position: relative;
  padding: var(--s-9) 0 var(--s-10) 0;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(ellipse at top right, rgba(202, 138, 4, 0.06) 0%, transparent 55%),
    var(--bg);
}

.cover-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 1023px) {
  .cover-grid { grid-template-columns: 1fr; gap: var(--s-7); }
}

.cover-issue {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--rule);
}
.cover-issue strong { color: var(--navy-950); font-weight: 700; }
.cover-issue .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  display: inline-block;
}

.cover-headline {
  margin: 0 0 var(--s-5) 0;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.cover-headline em {
  font-style: italic;
  color: var(--gold-700);
  font-weight: 400;
}

.cover-deck {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink-700);
  font-style: italic;
  font-weight: 400;
  margin-bottom: var(--s-6);
  max-width: 560px;
}

.cover-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}

.cover-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  align-items: baseline;
  padding-top: var(--s-5);
  border-top: 1px solid var(--rule);
}
.cover-cred {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  text-transform: uppercase;
}
.cover-cred strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--navy-950);
  letter-spacing: -0.02em;
  text-transform: none;
  font-feature-settings: 'lnum';
}

.cover-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-md);
}
.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
}
.cover-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(15, 31, 61, 0.06);
  pointer-events: none;
}

.cover-stamp {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--paper-50);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--navy-900);
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-950);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cover-stamp small {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}

/* ==========================================================================
   FEATURE SHEET (asymmetric stats)
   ========================================================================== */
.feature-sheet {
  background: var(--navy-950);
  color: var(--paper-100);
  padding: var(--s-10) 0;
  position: relative;
  overflow: hidden;
}
.feature-sheet::before {
  content: 'BY THE NUMBERS';
  position: absolute;
  top: var(--s-6);
  right: -40px;
  transform: rotate(90deg);
  transform-origin: right top;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold-400);
  opacity: 0.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
@media (max-width: 1023px) { .feature-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.feature-hero-stat {
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 400;
  line-height: 0.85;
  color: var(--gold-400);
  letter-spacing: -0.05em;
  font-feature-settings: 'lnum';
  position: relative;
}
.feature-hero-stat sup {
  font-size: 0.4em;
  vertical-align: top;
  font-style: italic;
  color: var(--paper-200);
  margin-left: 0.05em;
}
.feature-hero-stat-caption {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--paper-200);
  margin-top: var(--s-3);
  max-width: 460px;
}
.feature-hero-stat-fine {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: var(--s-3);
  display: block;
}

.feature-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.feature-side-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  align-items: baseline;
  padding: var(--s-4) 0;
  border-top: 1px solid rgba(236, 212, 154, 0.25);
}
.feature-side-stat:first-child { border-top: none; }
.feature-side-stat strong {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--paper-50);
  line-height: 1;
  font-feature-settings: 'lnum';
  letter-spacing: -0.02em;
  min-width: 4ch;
}
.feature-side-stat span {
  font-family: var(--sans);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--ink-200);
  line-height: 1.4;
}

/* ==========================================================================
   ARTICLE (multi-column body with marginalia)
   ========================================================================== */
.article {
  display: grid;
  grid-template-columns: 1fr 2.4fr 1fr;
  gap: var(--s-7);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}
@media (max-width: 1023px) {
  .article { grid-template-columns: 1fr; gap: var(--s-5); }
}

.article-meta { font-family: var(--sans); font-size: 0.8125rem; }
.article-meta-label {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--s-2);
  display: block;
}
.article-meta-value { color: var(--ink-700); line-height: 1.4; }
.article-meta + .article-meta { margin-top: var(--s-5); padding-top: var(--s-5); border-top: 1px solid var(--rule); }

.article-body { max-width: 720px; }
.article-body h2 {
  margin-top: 0;
  margin-bottom: var(--s-5);
}
.article-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-800);
}
.article-body p + p { margin-top: var(--s-4); }
.article-body p strong { color: var(--navy-900); font-weight: 600; }

.article-aside {
  font-family: var(--sans);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-600);
}
.article-aside h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--s-3);
}

/* ==========================================================================
   INDEX / TABLE OF CONTENTS
   ========================================================================== */
.toc-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s-9);
  align-items: start;
}
@media (max-width: 1023px) { .toc-section { grid-template-columns: 1fr; gap: var(--s-6); } }

.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-5);
  align-items: baseline;
  padding: var(--s-5) 0;
  border-top: 1px solid var(--rule);
  transition: background var(--t-base);
}
.toc-item:last-child { border-bottom: 1px solid var(--rule); }
.toc-item:hover { background: var(--paper-100); }
.toc-num {
  font-family: var(--serif);
  font-size: 0.875rem;
  color: var(--gold-700);
  font-style: italic;
  font-feature-settings: 'lnum';
  letter-spacing: 0.04em;
}
.toc-content h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 var(--s-2) 0;
  letter-spacing: -0.015em;
}
.toc-content p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
}
.toc-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-950);
  align-self: center;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.toc-link::after { content: '→'; transition: transform var(--t-fast); }
.toc-item:hover .toc-link::after { transform: translateX(4px); }
.toc-item:hover .toc-link { color: var(--gold-700); }

@media (max-width: 540px) {
  .toc-item { grid-template-columns: auto 1fr; }
  .toc-link { grid-column: 1 / -1; padding-left: 32px; padding-top: var(--s-3); }
}

/* ==========================================================================
   STORY (single-feature pull quote testimonial)
   ========================================================================== */
.story {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: var(--s-8) var(--s-5);
  position: relative;
}
.story::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 0.7;
  color: var(--gold-300, var(--gold-200));
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
  z-index: 0;
  font-style: italic;
}
.story > * { position: relative; z-index: 1; }
.story-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.25;
  font-style: italic;
  color: var(--navy-950);
  font-weight: 400;
  margin: 0 0 var(--s-5) 0;
  letter-spacing: -0.01em;
}
.story-outcome {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--s-2);
}
.story-detail {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--ink-500);
}

.stories-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-9);
  padding-top: var(--s-7);
  border-top: 1px solid var(--rule);
}
@media (max-width: 767px) { .stories-mini { grid-template-columns: 1fr; gap: var(--s-4); } }
.story-mini {
  padding: var(--s-4);
  text-align: left;
}
.story-mini-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--ink-800);
  margin-bottom: var(--s-3);
}
.story-mini-outcome {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
}

/* ==========================================================================
   PROCESS — vertical reading flow
   ========================================================================== */
.process {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.process-step:last-child { border-bottom: 1px solid var(--rule); }
.process-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  color: var(--gold-700);
  line-height: 0.9;
  font-weight: 400;
  font-feature-settings: 'lnum';
  min-width: 60px;
}
.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--s-3);
}
.process-content p {
  color: var(--ink-600);
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   PRICE SHEET (print insert)
   ========================================================================== */
.price-sheet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 3px solid var(--navy-900);
  border-bottom: 3px solid var(--navy-900);
}
@media (max-width: 1023px) {
  .price-sheet { grid-template-columns: 1fr; }
  .price-sheet.two-col { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .price-sheet.two-col { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
}

.price-col {
  padding: var(--s-7) var(--s-5);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rule);
  position: relative;
}
.price-col:last-child { border-right: none; }
@media (max-width: 1023px) {
  .price-col { border-right: none; border-bottom: 1px solid var(--rule); }
  .price-col:last-child { border-bottom: none; }
}

.price-col.featured {
  background: var(--paper-100);
}
.price-col.featured::before {
  content: 'Recommended';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--navy-950);
  color: var(--paper-50);
  padding: var(--s-2) var(--s-4);
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-tier {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--gold-700);
  margin-bottom: var(--s-2);
}
.price-name {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
  color: var(--navy-950);
}
.price-amount {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--navy-950);
  letter-spacing: -0.025em;
  font-feature-settings: 'lnum';
  margin-bottom: var(--s-2);
}
.price-amount sup {
  font-size: 0.45em;
  vertical-align: top;
  font-weight: 400;
  margin-right: 0.05em;
}
.price-note {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-bottom: var(--s-5);
  font-style: italic;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6) 0;
  flex: 1;
}
.price-list li {
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-700);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--rule-light);
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
}
.price-list li:first-child { border-top: none; }
.price-list li::before {
  content: '·';
  color: var(--gold-600);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0.05em;
}
.price-list strong { color: var(--navy-900); font-weight: 600; }

.price-col .btn { width: 100%; }

/* A la carte print menu */
.menu {
  border-top: 3px solid var(--navy-900);
  border-bottom: 3px solid var(--navy-900);
  background: var(--paper-50);
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-5);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--rule-light);
  align-items: baseline;
}
.menu-row:first-child { border-top: none; }
.menu-row .menu-name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy-950);
  letter-spacing: -0.01em;
}
.menu-row .menu-desc {
  font-size: 0.875rem;
  color: var(--ink-500);
  margin-top: 4px;
}
.menu-row .menu-price {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy-950);
  white-space: nowrap;
  font-feature-settings: 'lnum';
}
.menu-row .menu-price.tbd {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--gold-700);
  font-style: italic;
}
@media (max-width: 540px) {
  .menu-row { grid-template-columns: 1fr; }
  .menu-row .menu-price { margin-top: var(--s-2); }
}

/* ==========================================================================
   SPLIT — image + text
   ========================================================================== */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.split-feature.reverse .split-img { order: 2; }
@media (max-width: 1023px) {
  .split-feature { grid-template-columns: 1fr !important; gap: var(--s-6); }
  .split-feature.reverse .split-img { order: 0; }
}

.split-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-md);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(15, 31, 61, 0.06);
}

.split-content h2 { margin-bottom: var(--s-5); }
.split-content p { color: var(--ink-700); margin-bottom: var(--s-4); }
.split-content p strong { color: var(--navy-900); font-weight: 600; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-align: left;
  padding: var(--s-5) 0;
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy-950);
  gap: var(--s-4);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-q:hover { color: var(--gold-700); }
.faq-q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  position: relative;
  align-self: center;
  border: 1px solid var(--navy-900);
  border-radius: 50%;
  transition: background var(--t-base), border-color var(--t-base);
}
.faq-q-icon::before, .faq-q-icon::after {
  content: '';
  position: absolute;
  background: var(--navy-900);
  transition: transform var(--t-base), background var(--t-base);
}
.faq-q-icon::before { left: 7px; right: 7px; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-q-icon::after { top: 7px; bottom: 7px; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-q-icon { background: var(--navy-900); border-color: var(--navy-900); }
.faq-item.is-open .faq-q-icon::before, .faq-item.is-open .faq-q-icon::after { background: var(--paper-50); }
.faq-item.is-open .faq-q-icon::after { transform: translateX(-50%) rotate(90deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); }
.faq-a-inner {
  padding: 0 0 var(--s-5) 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 600px;
}
.faq-item.is-open .faq-a { max-height: 800px; }

/* ==========================================================================
   FORM
   ========================================================================== */
.form-card {
  background: var(--paper-50);
  border: 1px solid var(--rule);
  padding: var(--s-7);
  border-top: 3px solid var(--navy-900);
}
@media (max-width: 540px) { .form-card { padding: var(--s-5); } }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 540px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
}

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: var(--s-2);
}
.form-field label .required { color: var(--gold-700); margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--rule);
  border-bottom: 2px solid var(--ink-800);
  border-radius: 0;
  background: transparent;
  color: var(--ink-900);
  font-family: var(--serif);
  font-size: 1.0625rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  min-height: 48px;
  width: 100%;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--sans);
  font-size: 1rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-500);
  background: var(--paper-100);
}
.form-field .error-msg {
  color: #b73e3e;
  font-size: 0.8125rem;
  margin-top: var(--s-1);
  display: none;
  font-family: var(--sans);
  font-style: italic;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-bottom-color: #b73e3e;
}
.form-field.has-error .error-msg { display: block; }

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-radios { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.form-radios label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.6rem 1rem;
  border: 1px solid var(--rule);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-700);
}
.form-radios input[type="radio"] { accent-color: var(--gold-500); }
.form-radios label:has(input:checked) {
  border-color: var(--navy-900);
  background: var(--navy-950);
  color: var(--paper-50);
}

.form-success, .form-error {
  display: none;
  padding: var(--s-5);
  margin-bottom: var(--s-5);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
}
.form-success {
  background: var(--paper-100);
  color: var(--navy-900);
  border-left: 3px solid var(--gold-500);
}
.form-error {
  background: #fdecec;
  color: #842121;
  border-left: 3px solid #b73e3e;
}
.form-success.is-visible, .form-error.is-visible { display: block; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-spread {
  background: var(--navy-950);
  color: var(--paper-100);
  text-align: center;
  padding: var(--s-10) var(--s-5);
  position: relative;
}
.cta-spread h2 {
  color: var(--paper-50);
  margin-bottom: var(--s-4);
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.cta-spread h2 em { color: var(--gold-400); font-style: italic; font-weight: 400; }
.cta-spread p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-200);
  max-width: 580px;
  margin: 0 auto var(--s-6) auto;
}
.cta-spread .cover-cta { justify-content: center; margin-bottom: 0; }

/* ==========================================================================
   COLOPHON / FOOTER
   ========================================================================== */
.colophon {
  background: var(--navy-950);
  color: var(--ink-200);
  padding: var(--s-9) 0 var(--s-5) 0;
  border-top: 1px solid rgba(236, 212, 154, 0.15);
}
.colophon-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}
@media (max-width: 1023px) { .colophon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .colophon-grid { grid-template-columns: 1fr; gap: var(--s-5); } }

.colophon-brand img {
  height: 60px;
  width: auto;
  background: var(--paper-50);
  padding: 12px 16px;
  margin-bottom: var(--s-4);
  border-radius: var(--r-sm);
}
.colophon-brand p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-200);
  font-size: 1.0625rem;
  line-height: 1.5;
  max-width: 320px;
}

.colophon-col h4 {
  color: var(--gold-400);
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.colophon-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.colophon-col a {
  color: var(--ink-200);
  font-family: var(--serif);
  font-size: 1rem;
}
.colophon-col a:hover { color: var(--gold-400); }

.colophon-bottom {
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--ink-300);
  text-transform: uppercase;
}
@media (max-width: 540px) { .colophon-bottom { flex-direction: column; align-items: flex-start; } }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--paper-50);
  border-top: 1px solid var(--rule);
  padding: var(--s-3) var(--s-4);
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(15, 31, 61, 0.06);
}
.mobile-cta .btn { width: 100%; }
@media (max-width: 767px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-header {
  border-bottom: 1px solid var(--rule);
  padding: var(--s-9) 0 var(--s-7) 0;
  background: var(--bg);
}
.page-header h1 {
  margin-bottom: var(--s-4);
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.page-header .lede { margin: 0 auto; max-width: 640px; }
.page-header .container-reading { text-align: center; }
.breadcrumb {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: var(--s-5);
  font-weight: 600;
}
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--gold-700); }

.section-eyebrow {
  text-align: center;
  margin: 0 auto var(--s-7) auto;
  max-width: 720px;
}
.section-eyebrow h2 { margin-bottom: var(--s-4); }
.section-eyebrow p { color: var(--ink-600); font-family: var(--serif); font-style: italic; font-size: 1.125rem; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--navy-950);
  color: var(--paper-50);
  font-family: var(--sans);
  font-weight: 600;
}
.skip-to-content:focus { left: 0; top: 0; }

/* ==========================================================================
   MOBILE POLISH
   ========================================================================== */
@media (max-width: 767px) {
  /* Hide vertical edge label that overflows on mobile */
  .feature-sheet::before { display: none; }

  /* Smaller cover image stamp on mobile */
  .cover-stamp {
    top: 12px; left: 12px;
    padding: 6px 10px;
    font-size: 0.625rem;
  }
  .cover-stamp small { font-size: 0.5625rem; }

  /* Cover image height capped on mobile so hero doesn't dominate */
  .cover-image { aspect-ratio: 4/4.5; max-height: 480px; }

  /* Cover credentials wrap nicer */
  .cover-credentials { gap: var(--s-4); }
  .cover-cred { font-size: 0.6875rem; }
  .cover-cred strong { font-size: 1.5rem; }

  /* Issue line stays readable */
  .cover-issue { font-size: 0.625rem; gap: var(--s-3); flex-wrap: wrap; }

  /* Feature sheet — compact stat */
  .feature-hero-stat-caption { font-size: 1.125rem; }

  /* Article meta — visual separator on mobile */
  .article > .article-meta {
    padding: var(--s-4);
    background: var(--paper-100);
    border-left: 2px solid var(--gold-500);
  }

  /* Drop cap smaller on mobile */
  .has-dropcap > p:first-of-type::first-letter,
  .dropcap::first-letter { font-size: 4em; }

  /* Pull quote sizing */
  .pullquote { font-size: 1.375rem; padding: var(--s-4) 0; margin: var(--s-5) 0; }

  /* Story quote mark scale */
  .story::before { font-size: 8rem; }
  .story-quote { font-size: 1.5rem; line-height: 1.3; }

  /* Process num smaller on narrow */
  .process-num { font-size: 2.25rem; }
  .process-step { gap: var(--s-4); padding: var(--s-5) 0; }

  /* TOC — better narrow layout */
  .toc-num { font-size: 0.75rem; }
  .toc-content h3 { font-size: 1.25rem; }

  /* Pricing — restore featured tab placement */
  .price-col.featured::before {
    transform: translateX(-50%) translateY(-50%);
    font-size: 0.5625rem;
    padding: var(--s-2) var(--s-3);
  }

  /* CTA spread padding */
  .cta-spread { padding: var(--s-8) var(--s-4); }
  .cta-spread h2 { font-size: 1.875rem; line-height: 1.15; }
  .cta-spread p { font-size: 1.0625rem; }

  /* Buttons fit thumb on mobile */
  .btn { padding: 0.95rem 1.5rem; }
  .btn-large { padding: 1.05rem 1.5rem; font-size: 0.9375rem; }

  /* CTA buttons stack on narrow */
  .cover-cta { flex-direction: column; align-items: stretch; }
  .cover-cta .btn { width: 100%; }
}

@media (max-width: 540px) {
  /* Tighter container padding */
  .container, .container-rail, .container-reading {
    padding-left: var(--s-4);
    padding-right: var(--s-4);
  }

  /* Smaller eyebrow padding to fit narrow screens */
  .kicker { padding-left: 24px; font-size: 0.6875rem; letter-spacing: 0.14em; }
  .kicker::before { width: 14px; }

  /* Headline tightening */
  .cover-headline { font-size: clamp(2.5rem, 11vw, 3.25rem); line-height: 1.02; }

  /* Article body text comfortable */
  .article-body p { font-size: 1rem; line-height: 1.65; }

  /* FAQ Q size on narrow */
  .faq-q { font-size: 1.125rem; }
  .faq-q-icon { width: 24px; height: 24px; }
  .faq-q-icon::before { left: 5px; right: 5px; }
  .faq-q-icon::after { top: 5px; bottom: 5px; }

  /* Form spacing */
  .form-card { padding: var(--s-4); }
  .form-radios { gap: var(--s-2); }
  .form-radios label { padding: 0.5rem 0.875rem; font-size: 0.875rem; }

  /* TOC item: stack the link below content */
  .toc-item { padding: var(--s-4) 0; gap: var(--s-3); }
  .toc-link { font-size: 0.6875rem; }

  /* Page header h1 */
  .page-header h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .page-header { padding: var(--s-7) 0 var(--s-5) 0; }

  /* Hide the 404 huge digits scaling cleaner */
}

/* iPhone SE / very small */
@media (max-width: 375px) {
  body { font-size: 16px; }
  .cover-headline { font-size: 2.25rem; }
  h2 { font-size: 1.625rem; }
  .feature-hero-stat { font-size: 7rem; }
  .price-amount { font-size: 2.75rem; }
}

/* Landscape phones */
@media (max-width: 932px) and (orientation: landscape) {
  .cover { padding: var(--s-7) 0; }
  .cover-image { max-height: 70vh; }
}

/* ==========================================================================
   POST-AUDIT FIXES
   ========================================================================== */

/* Fix: outline button invisible on dark CTA spread (was navy on navy) */
.cta-spread .btn-outline {
  color: var(--paper-50);
  border-color: var(--paper-50);
}
.cta-spread .btn-outline:hover {
  background: var(--paper-50);
  color: var(--navy-950);
}

/* Fix: kicker dash floats awkwardly when text-aligned center.
   Hide it when the kicker is set to display:block (the centered variant). */
.kicker[style*="text-align: center"]::before,
.kicker[style*="text-align:center"]::before,
.text-center .kicker::before,
.cta-spread .kicker::before,
.section-eyebrow .kicker::before,
.page-header .kicker::before {
  display: none;
}
.kicker[style*="text-align: center"],
.kicker[style*="text-align:center"],
.text-center .kicker,
.cta-spread .kicker,
.section-eyebrow .kicker,
.page-header .kicker {
  padding-left: 0;
}

/* Fix: pull quote closing curly quote was rendered after the attribution span.
   Remove the ::after entirely. The opening ::before is enough as a visual marker,
   and the natural punctuation in the text closes the quote semantically. */
.pullquote::after { content: none; }

/* Fix: cover stamp clipped by sticky masthead. Move it down + ensure on top. */
.cover-image { position: relative; }
.cover-stamp {
  top: 88px; /* clear the 86px masthead height + a bit */
}
@media (max-width: 767px) {
  .cover-stamp { top: 76px; }
}

/* Fix: Contact page split should always stack on mobile.
   The previous inline style was overriding the responsive breakpoint. */
.contact-grid { align-items: start; }
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.05fr; }
}

/* Fix: page-header kicker centered should not have leading dash either */
.page-header .container-reading .kicker { padding-left: 0; }
.page-header .container-reading .kicker::before { display: none; }

/* Polish: ensure mobile-cta bar doesn't cover content too aggressively */
@media (max-width: 767px) {
  .mobile-cta { padding: 12px 16px; }
  .mobile-cta .btn { font-size: 0.8125rem; padding: 0.85rem 1rem; }
  body { padding-bottom: 72px; }
}

/* Polish: better spacing for the homepage cover on mobile (less empty space at top) */
@media (max-width: 767px) {
  .cover { padding-top: var(--s-6); padding-bottom: var(--s-7); }
}
