/* ============================================================
   THE FABULOUS — Las Vegas Local News for the 89 ZIPs
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Style+Script&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens ── */
:root {
  --cream:   #FDFAF4;
  --paper:   #F9F5EC;
  --white:   #FFFFFF;
  --rule:    #DDD8CC;
  --rule-lt: #EDEAE2;
  --ink:     #141210;
  --ink-mid: #3D3830;
  --mid:     #6B6458;
  --dim:     #9E9890;
  --gold:    #B8872A;
  --gold-lt: #F5EDD7;
  --red:     #B22222;
  --red-lt:  #FDF2F2;
  --navy:    #1B2E4A;
  --green:   #1E5C34;

  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  --max:    1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --r:      6px;
  --r-lg:   12px;
  --shadow: 0 1px 4px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.05);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink-mid);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
button { cursor: pointer; font: inherit; }

/* ── Utility ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.hidden { display: none !important; }
.accent { color: var(--gold); }
.gold   { color: var(--gold); }
.muted  { color: var(--mid); font-size: .875rem; }
.sub    { color: var(--dim); font-size: .8rem; }
.text   { font-size: .95rem; line-height: 1.7; color: var(--ink-mid); }

/* ── Buttons ── */
.btn, .btn-primary, .btn-secondary, .btn-outline, .btn-gold, .btn-white {
  display: inline-block;
  padding: .65rem 1.5rem;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all .18s;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-mid); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #9e6d1c; color: #fff; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--gold-lt); }
.btn-secondary { background: var(--rule-lt); color: var(--ink-mid); border-color: var(--rule); }
.btn-secondary:hover { background: var(--rule); }
.link-gold { color: var(--gold); font-weight: 600; }
.link-gold:hover { text-decoration: underline; }

/* ── Navigation ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  height: 56px;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
}
.nav-brand-script {
  font-family: 'Style Script', cursive;
  font-size: 1.7rem;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  letter-spacing: .01em;
}
.nav-brand-script span { color: var(--gold); }
.nav-brand:hover .nav-brand-script { color: var(--ink); opacity: .85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .125rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--mid);
  padding: .4rem .75rem;
  border-radius: var(--r);
  transition: all .15s;
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--ink); background: var(--paper); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: all .2s;
}

/* ── Masthead ── */
.masthead {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0 1rem;
}
.masthead-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.masthead-rule-top, .masthead-rule-bot {
  height: 1px;
  background: var(--ink);
  position: relative;
  margin: .5rem 0;
}
.masthead-rule-top::before, .masthead-rule-top::after,
.masthead-rule-bot::before, .masthead-rule-bot::after {
  content: '';
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--ink);
}
.masthead-rule-top::before, .masthead-rule-bot::before { left: 0; }
.masthead-rule-top::after, .masthead-rule-bot::after { right: 0; }
.masthead-eyebrow {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--mid);
  margin-bottom: .5rem;
}
.masthead-title {
  font-family: 'Style Script', cursive;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: .01em;
}
.masthead-subtitle {
  font-family: var(--display);
  font-size: clamp(.9rem, 2vw, 1.1rem);
  font-weight: 400;
  font-style: italic;
  color: var(--mid);
  margin: .35rem 0;
}
.masthead-meta {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin: .35rem 0;
}
.masthead-meta-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--dim);
  border-radius: 50%;
  vertical-align: middle;
}

/* ── Breaking Banner ── */
.breaking-banner {
  background: var(--red);
  color: #fff;
  padding: .45rem 0;
}
.breaking-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.breaking-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  flex-shrink: 0;
  background: rgba(0,0,0,.2);
  padding: .2rem .6rem;
  border-radius: 3px;
}
.breaking-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
.breaking-text { font-size: .85rem; font-weight: 500; }
.breaking-text strong { font-weight: 700; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ── Ticker ── */
.ticker-wrap {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  height: 40px;
  overflow: hidden;
}
.ticker-label {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #fff;
  background: var(--gold);
  padding: .25rem .9rem;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  gap: 0;
  padding-left: 2rem;
}
.ticker-content span {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--ink-mid);
  padding-right: 3rem;
}
.ticker-content span::after { content: ' ·'; color: var(--dim); margin-left: 1.5rem; }
.ticker-content span:last-child::after { content: ''; }
.ticker-content span a { color: var(--ink-mid); text-decoration: none; }
.ticker-content span a:hover { color: var(--gold); }
.ticker-wrap:hover .ticker-content { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hero ── */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 5rem var(--gutter) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(184,135,42,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(178,34,34,.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 680px; margin: 0 auto; }
.hero-overline {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-headline em {
  font-family: 'Style Script', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  font-size: 1.15em;
}
.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-rule-line {
  display: block;
  height: 1px;
  width: 80px;
  background: rgba(255,255,255,.25);
}
.hero-rule-diamond {
  color: var(--gold);
  font-size: .75rem;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  margin: 0 auto 1rem;
}
.hero-kicker {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.75rem;
}
.hero-note {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-top: .75rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stats .stat {
  text-align: center;
}
.hero-stats .stat-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stats .stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--mono);
}

/* ── Signup Form ── */
.signup-form {
  display: flex;
  gap: .5rem;
  max-width: 460px;
  margin: 0 auto;
}
.signup-form input[type=email] {
  flex: 1;
  padding: .75rem 1rem;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .15s;
}
.signup-form input[type=email]::placeholder { color: rgba(255,255,255,.4); }
.signup-form input[type=email]:focus { border-color: var(--gold); }
.signup-form button {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: .75rem 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
}
.signup-form button:hover { background: #9e6d1c; }

/* ── Section ── */
.section { padding: 3rem 0; }
.section-alt { background: var(--paper); }
.section-dark { background: var(--ink); color: #fff; }
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-label {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-dark .section-title { color: #fff; }
.section-desc, .section-sub {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2rem;
}
.section-divider {
  height: 1px;
  background: var(--rule);
  margin: 2rem 0;
}

/* ── Featured Strip ── */
.featured-strip {
  background: var(--red-lt);
  border: 1px solid #e8c0be;
  border-left: 4px solid var(--red);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.featured-strip-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .15rem .5rem;
  border-radius: 3px;
  margin-bottom: .5rem;
}
.featured-strip h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: .35rem;
}
.featured-strip h3 a:hover { color: var(--red); }
.featured-strip-meta { font-size: .78rem; color: var(--mid); }

/* ── Category Grid ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.25rem;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cat-card-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.cat-icon { font-size: 1rem; }
.cat-card-body { padding: .75rem 1rem; }
.headline-item { padding: .5rem 0; border-bottom: 1px solid var(--rule-lt); }
.headline-item:last-of-type { border-bottom: none; }
.headline-item a {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: .2rem;
}
.headline-item a:hover { color: var(--gold); }
.headline-meta { font-family: var(--mono); font-size: .68rem; color: var(--dim); }
.cat-more {
  display: block;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
  margin-top: .75rem;
}
.cat-more:hover { text-decoration: underline; }

/* ── Value Grid ── */
.value-section { background: var(--navy); color: #fff; padding: 3.5rem 0; }
.value-section .section-title { color: #fff; }
.value-section-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.value-section-header { margin-bottom: 2rem; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.value-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 1.5rem;
}
.value-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.value-card h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.value-card p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ── Digest Section ── */
.digest-section { padding: 3.5rem 0; background: var(--paper); }
.digest-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.digest-desc { max-width: 560px; }
.digest-preview {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.digest-header {
  background: var(--ink);
  color: #fff;
  padding: 1rem 1.25rem;
}
.digest-header-top {
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  margin-bottom: .4rem;
}
.digest-header h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
.digest-stories { padding: .25rem 0; }
.digest-story {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--rule-lt);
}
.digest-story:last-child { border-bottom: none; }
.digest-story-num {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 18px;
  text-align: right;
}
.digest-story-text { font-size: .88rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: .25rem; }
.digest-story-cat { font-family: var(--mono); font-size: .65rem; color: var(--dim); text-transform: uppercase; letter-spacing: .06em; }
.digest-footer {
  background: var(--paper);
  padding: .65rem 1.25rem;
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--dim);
  text-align: center;
  border-top: 1px solid var(--rule-lt);
}
.digest-signup-form { margin-top: 0; }
.digest-sub-note { text-align: center; font-size: .78rem; color: var(--dim); margin-top: .6rem; }

/* ── Donate Band ── */
.donate-band {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 3rem var(--gutter);
}
.donate-band h2 { font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; color: #fff; margin-bottom: .6rem; }
.donate-band h2 span { color: var(--ink); font-style: italic; }
.donate-band > p { font-size: .95rem; color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto 1.5rem; line-height: 1.7; }
.donate-amounts { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.donate-pill {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: .45rem 1rem;
  border-radius: 24px;
  transition: all .15s;
}
.donate-pill:hover, .donate-pill.selected {
  background: rgba(255,255,255,.9);
  color: var(--gold);
  border-color: transparent;
}
.btn-donate {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 2rem;
  border-radius: var(--r);
  transition: all .15s;
}
.btn-donate:hover { background: var(--ink-mid); color: #fff; }
.donate-fine-print { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: .75rem; }

/* ── Advertise Band ── */
.advertise-band { padding: 3.5rem 0; background: var(--white); border-top: 1px solid var(--rule); }
.advertise-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .advertise-inner { grid-template-columns: 1fr 1fr; align-items: start; } }
.advertise-text p { font-size: .92rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.5rem; }
.advertise-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.adv-stat { text-align: center; }
.adv-stat strong { display: block; font-family: var(--display); font-size: 1.75rem; font-weight: 700; color: var(--ink); }
.adv-stat span { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--dim); }
.rate-table { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; }
.rate-table h4 { font-family: var(--display); font-size: .95rem; font-weight: 700; color: var(--ink); padding: 1rem 1.25rem .75rem; border-bottom: 1px solid var(--rule); }
.rate-row { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.25rem; border-bottom: 1px solid var(--rule-lt); gap: 1rem; }
.rate-row:last-of-type { border-bottom: none; }
.rate-name { font-size: .88rem; font-weight: 600; color: var(--ink); }
.rate-sub { font-size: .75rem; color: var(--dim); margin-top: .1rem; }
.rate-col-right { text-align: right; flex-shrink: 0; }
.rate-price { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.rate-price-unit { font-size: .7rem; font-weight: 400; color: var(--dim); }
.rate-table-note { font-size: .75rem; color: var(--mid); padding: .85rem 1.25rem; background: var(--gold-lt); border-top: 1px solid var(--rule-lt); }

/* ── Footer ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 2.5rem 0 1.5rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; text-align: left; flex-wrap: wrap; }
.footer-brand {
  font-family: 'Style Script', cursive;
  font-size: 1.9rem;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  margin-bottom: .35rem;
}
.footer-brand span { color: var(--gold); }
.footer-brand-col .footer-desc { font-size: .82rem; color: rgba(255,255,255,.45); max-width: 220px; line-height: 1.6; }
.footer-tagline { font-family: var(--display); font-style: italic; font-size: .9rem; color: rgba(255,255,255,.4); margin: .25rem 0 1rem; }
.footer-divider { height: 1px; background: rgba(255,255,255,.1); margin: 1rem 0; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: .25rem .5rem; margin-bottom: 1.25rem; }
.footer-nav a { font-size: .8rem; color: rgba(255,255,255,.5); padding: .2rem .4rem; border-radius: 3px; transition: color .15s; }
.footer-nav a:hover, .footer-nav a.active { color: #fff; }
.footer-sep { color: rgba(255,255,255,.2); }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: .25rem .5rem; margin-bottom: 1rem; }
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.45); }
.footer-links a:hover, .footer-links a.active { color: rgba(255,255,255,.85); }
.footer-links-col { flex: 1; min-width: 140px; }
.footer-links-col h5 { font-family: var(--mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); margin-bottom: .75rem; }
.footer-links-col a { display: block; font-size: .8rem; color: rgba(255,255,255,.45); padding: .2rem 0; transition: color .15s; }
.footer-links-col a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-left, .footer-bottom-right { font-size: .68rem; }
.footer-meta {
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.2);
  text-align: center;
  margin-top: 1rem;
}

/* ── Dashboard / App Layout ── */
.page-wrap { max-width: var(--max); margin: 0 auto; padding: 1.5rem var(--gutter); }
.dashboard-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .dashboard-grid { grid-template-columns: 240px 1fr 220px; align-items: start; }
}

/* ── Greeting Bar ── */
.greeting-bar {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.greeting-bar h1 { font-family: var(--display); font-size: 1.25rem; font-weight: 700; font-style: italic; color: var(--ink); margin-bottom: .2rem; }
.greeting-bar > .greeting-left > p { font-size: .85rem; color: var(--mid); }
.greeting-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; }
.date-chip, .zip-chip {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: .2rem .65rem;
  color: var(--mid);
  white-space: nowrap;
}

/* ── Card ── */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.card-title {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--mid);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title a { font-weight: 500; color: var(--gold); letter-spacing: 0; text-transform: none; font-family: var(--sans); font-size: .75rem; }
.card-field { margin-bottom: .75rem; }
.card-field label { display: block; font-size: .75rem; color: var(--mid); margin-bottom: .25rem; }
.card-field input, .card-field select {
  width: 100%;
  padding: .5rem .75rem;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  font: inherit;
  font-size: .875rem;
  background: var(--paper);
  outline: none;
  transition: border-color .15s;
}
.card-field input:focus { border-color: var(--gold); }
.card-field-lg input { padding: .65rem .75rem; font-size: 1rem; }
.card-row { display: flex; gap: .75rem; }
.card-row .card-field { flex: 1; }

/* ── Follow Tags ── */
.follow-section-label {
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dim);
  margin: .75rem 0 .4rem;
}
.follow-section-label--spaced { margin-top: 1rem; }
.follow-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: .2rem .65rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-mid);
  margin: .15rem .2rem .15rem 0;
}
.follow-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.follow-tag.zip { background: var(--gold-lt); border-color: #d4a44a; color: var(--ink-mid); font-family: var(--mono); font-size: .72rem; }
.add-follow-wrap { margin-top: .75rem; }
.add-follow-btn {
  background: none;
  border: 1px dashed var(--rule);
  border-radius: 20px;
  padding: .25rem .75rem;
  font-size: .78rem;
  color: var(--gold);
  cursor: pointer;
  transition: all .15s;
}
.add-follow-btn:hover { border-color: var(--gold); background: var(--gold-lt); }

/* ── Pref Rows ── */
.pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--rule-lt);
}
.pref-row:last-child { border-bottom: none; }
.pref-label { font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .1rem; }
.pref-sub { font-size: .75rem; color: var(--mid); }
.pref-last-sent { font-size: .75rem; color: var(--dim); margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--rule-lt); }
.pref-last-sent-time { color: var(--green); }
.toggle-group { display: flex; border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; flex-shrink: 0; }
.toggle-opt {
  padding: .3rem .65rem;
  font-size: .75rem;
  font-weight: 600;
  background: var(--paper);
  color: var(--mid);
  border: none;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: all .15s;
}
.toggle-opt:last-child { border-right: none; }
.toggle-opt.active { background: var(--ink); color: #fff; }
.time-chip {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: .3rem .75rem;
  color: var(--mid);
  flex-shrink: 0;
}

/* ── Story Rows ── */
.digest-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.digest-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  gap: 1rem;
}
.digest-card-header-left { display: flex; align-items: center; gap: .75rem; }
.digest-icon { font-size: 1.5rem; }
.digest-card-header h2 { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .1rem; }
.digest-card-header p { font-size: .75rem; color: var(--mid); }
.digest-badge {
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--ink);
  color: #fff;
  padding: .25rem .65rem;
  border-radius: 20px;
  flex-shrink: 0;
}
.digest-stories { padding: 0; }
.digest-footer { padding: .75rem 1.25rem; background: var(--paper); border-top: 1px solid var(--rule-lt); font-size: .8rem; }
.digest-footer a { color: var(--gold); font-weight: 600; }

.story-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--rule-lt);
  transition: background .12s;
}
.story-row:last-child { border-bottom: none; }
.story-row:hover { background: var(--paper); }
.story-row.featured { background: var(--gold-lt); border-left: 3px solid var(--gold); }
.story-row.featured:hover { background: #f0e0ba; }
.story-num {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--dim);
  flex-shrink: 0;
  width: 18px;
  text-align: right;
  padding-top: .15rem;
}
.story-num.top { color: var(--gold); }
.story-emoji { font-size: 1.1rem; flex-shrink: 0; padding-top: .1rem; }
.story-body { flex: 1; min-width: 0; }
.story-cat-row { display: flex; align-items: center; gap: .5rem; margin-bottom: .3rem; flex-wrap: wrap; }
.story-cat {
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
}
.story-zip-tag {
  font-family: var(--mono);
  font-size: .62rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: .05rem .35rem;
  color: var(--dim);
}
.story-headline { font-size: .92rem; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: .3rem; }
.story-dek { font-size: .82rem; color: var(--mid); line-height: 1.55; margin-bottom: .4rem; }
.story-meta { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.story-byline { font-size: .72rem; color: var(--dim); font-weight: 500; }
.story-time { font-family: var(--mono); font-size: .68rem; color: var(--dim); }
.story-read-badge {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── Saved Shelf ── */
.saved-shelf { display: flex; flex-direction: column; gap: .75rem; }
.saved-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--rule-lt);
}
.saved-item:last-child { border-bottom: none; }
.saved-thumb {
  width: 40px;
  height: 40px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.saved-body { flex: 1; min-width: 0; }
.saved-cat { font-family: var(--mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); margin-bottom: .15rem; }
.saved-headline { font-size: .85rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.saved-meta { font-size: .72rem; color: var(--dim); margin-top: .2rem; }
.saved-remove {
  background: none;
  border: none;
  color: var(--dim);
  font-size: .75rem;
  cursor: pointer;
  padding: .2rem;
  flex-shrink: 0;
  transition: color .12s;
}
.saved-remove:hover { color: var(--red); }

/* ── Account Pill ── */
.account-pill {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: .875rem 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.account-info { flex: 1; min-width: 0; }
.account-name { font-size: .88rem; font-weight: 700; color: var(--ink); }
.account-email { font-size: .72rem; color: var(--mid); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-status { font-family: var(--mono); font-size: .65rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* ── Stats ── */
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: .75rem; }
.stat-box {
  background: var(--paper);
  border: 1px solid var(--rule-lt);
  border-radius: var(--r);
  padding: .75rem;
  text-align: center;
}
.stat-val { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.stat-label { font-family: var(--mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; color: var(--dim); margin-top: .1rem; }
.stats-member { font-size: .72rem; color: var(--dim); text-align: center; }

/* ── Trending ── */
.trending-list { display: flex; flex-direction: column; gap: 0; }
.trending-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--rule-lt);
}
.trending-item:last-child { border-bottom: none; }
.trending-rank {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 14px;
}
.trending-headline { font-size: .82rem; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: .15rem; }
.trending-cat { font-family: var(--mono); font-size: .63rem; color: var(--dim); }

/* ── Donate Nudge ── */
.donate-nudge {
  background: var(--gold-lt);
  border: 1px solid #d4a44a;
  border-radius: var(--r);
  padding: 1.25rem;
}
.donate-nudge h3 { font-family: var(--display); font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.donate-nudge p { font-size: .8rem; color: var(--mid); line-height: 1.6; margin-bottom: .85rem; }
.donate-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .55rem;
  border-radius: var(--r);
  transition: background .15s;
}
.donate-btn:hover { background: #9e6d1c; color: #fff; }

/* ── Donor Count Bar ── */
.donor-count-bar {
  background: var(--gold-lt);
  border-bottom: 1px solid #d4a44a;
  text-align: center;
  padding: .5rem var(--gutter);
  font-size: .85rem;
  color: var(--ink-mid);
}

/* ── Donate Page ── */
.donate-hero {
  background: var(--ink);
  color: #fff;
  padding: 4rem var(--gutter);
  text-align: center;
}
.donate-hero-inner { max-width: 640px; margin: 0 auto; }
.donate-eyebrow {
  font-family: var(--mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.donate-hero h1 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: .75rem; }
.donate-hero h1 em { font-style: italic; color: var(--gold); }
.donate-hero p { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 520px; margin: 0 auto; }

.page-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--gutter);
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) { .page-body { grid-template-columns: 1fr 380px; align-items: start; } }
.left-col { display: flex; flex-direction: column; gap: 1.75rem; }

.mission-card, .funds-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.mission-card h2, .funds-card h2 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: .85rem; }
.mission-card p { font-size: .9rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: .85rem; }
.mission-card p:last-child { margin-bottom: 0; }
.mission-card strong, .funds-card strong { color: var(--ink); font-weight: 700; }

.fund-item { display: flex; align-items: flex-start; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid var(--rule-lt); }
.fund-item:last-child { border-bottom: none; }
.fund-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.fund-text strong { display: block; font-size: .88rem; color: var(--ink); margin-bottom: .25rem; }
.fund-text span { font-size: .82rem; color: var(--mid); line-height: 1.6; }

.testimonials-heading { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .85rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .75rem; }
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1rem;
}
.testimonial-quote { font-size: .85rem; color: var(--ink-mid); line-height: 1.6; margin-bottom: .65rem; font-style: italic; }
.testimonial-attr { font-size: .75rem; font-weight: 700; color: var(--ink); }
.testimonial-attr span { font-weight: 400; color: var(--mid); }

.faq-section h2 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.faq-item { border-bottom: 1px solid var(--rule-lt); padding: .85rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .35rem; }
.faq-a { font-size: .85rem; color: var(--mid); line-height: 1.65; }
.faq-list { list-style: none; display: flex; flex-direction: column; gap: .35rem; }

/* Donation Panel */
.donation-panel { position: sticky; top: 76px; }
.donation-box {
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.donation-box h2 { font-family: var(--display); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.donation-box .subtitle { font-size: .78rem; color: var(--mid); margin-bottom: 1.25rem; }
.freq-toggle { display: flex; border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; margin-bottom: 1.25rem; }
.freq-btn {
  flex: 1;
  padding: .5rem;
  font-size: .82rem;
  font-weight: 600;
  background: var(--paper);
  color: var(--mid);
  border: none;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: all .15s;
}
.freq-btn:last-child { border-right: none; }
.freq-btn.active { background: var(--ink); color: #fff; }
.amount-label { font-family: var(--mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); margin-bottom: .5rem; }
.amount-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; margin-bottom: .75rem; }
.amount-btn {
  border: 2px solid var(--rule);
  background: var(--paper);
  border-radius: var(--r);
  padding: .65rem .5rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all .15s;
  position: relative;
  text-align: center;
}
.amount-btn:hover { border-color: var(--gold); color: var(--gold); }
.amount-btn.selected { border-color: var(--gold); background: var(--gold); color: #fff; }
.amount-btn .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--red);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .1rem .3rem;
  border-radius: 3px;
}
.amount-btn.selected .badge { background: #fff; color: var(--gold); }
.per-mo { font-size: .7rem; font-weight: 400; color: inherit; opacity: .75; }
.custom-row { display: flex; align-items: center; gap: 0; margin-bottom: 1rem; border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; }
.custom-prefix { padding: .55rem .75rem; background: var(--paper); font-weight: 700; color: var(--mid); font-size: .9rem; border-right: 1px solid var(--rule); flex-shrink: 0; }
.custom-input { flex: 1; padding: .55rem .75rem; border: none; font: inherit; font-size: .9rem; outline: none; background: var(--white); }
.donate-cta {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: .85rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  margin-bottom: .65rem;
}
.donate-cta:hover { background: #9e6d1c; }
.secure-note {
  text-align: center;
  font-size: .72rem;
  color: var(--dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin-bottom: 1.25rem;
}
.progress-section { border-top: 1px solid var(--rule-lt); padding-top: 1rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--mid);
  margin-bottom: .4rem;
}
.progress-label strong { color: var(--ink); }
.progress-bar-track { height: 8px; background: var(--paper); border-radius: 4px; overflow: hidden; margin-bottom: .4rem; }
.progress-bar-fill { height: 100%; width: 51%; background: var(--gold); border-radius: 4px; transition: width .5s; }
.progress-goal { font-size: .75rem; color: var(--mid); }

/* ── Features / How It Works ── */
.features-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); margin-top: 2rem; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.feature-icon { font-size: 2rem; margin-bottom: .75rem; }
.feature-card h3 { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.feature-card p { font-size: .85rem; color: var(--mid); line-height: 1.65; }
.what-card, .why-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow); }
.what-list, .why-grid { display: flex; flex-direction: column; gap: .5rem; }
.steps-row { display: flex; flex-direction: column; gap: 1.25rem; counter-reset: step; }
.step { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: var(--paper); border-radius: var(--r); }
.step-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 36px;
}
.step h3 { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.step p { font-size: .85rem; color: var(--mid); line-height: 1.6; }
.big-icon { font-size: 2.5rem; margin-bottom: .75rem; }

/* ── ZIP Grid ── */
.zip-grid { display: flex; flex-wrap: wrap; gap: .35rem; margin: 1rem 0; }
.zip-pill {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: .2rem .55rem;
  color: var(--mid);
}
.zip-badge { display: inline-block; font-family: var(--mono); font-size: .68rem; background: var(--gold-lt); border: 1px solid #d4a44a; border-radius: 3px; padding: .15rem .45rem; color: var(--ink-mid); }
.zip-badge-row { display: flex; flex-wrap: wrap; gap: .3rem; margin: .5rem 0; }
.zip-label { font-size: .75rem; color: var(--mid); }
.zip-legend { font-size: .72rem; color: var(--dim); margin-top: .35rem; }

/* ── Stat Strip ── */
.stat-strip { background: var(--navy); color: #fff; padding: 2rem 0; }
.stat-strip-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.stat-strip .stat { text-align: center; }
.stat-strip .stat-num { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-strip .stat-label { font-family: var(--mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }

/* ── CTA Section ── */
.cta-section { background: var(--ink); padding: 3rem 0; text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; padding: 0 var(--gutter); }
.cta-section h2 { font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: .75rem; }
.cta-section p { font-size: .95rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; line-height: 1.7; }
.cta-block { max-width: 480px; margin: 0 auto; }
.cta-btns, .cta-buttons { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── Login / Signup ── */
.login-wrap {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--gutter);
  background: var(--paper);
}
.login-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
}
.login-eyebrow {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  text-align: center;
  margin-bottom: 1.5rem;
}
.login-eyebrow span { color: var(--gold); }
.form-group { margin-bottom: .85rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--ink-mid); margin-bottom: .3rem; }
.form-group input {
  width: 100%;
  padding: .65rem .875rem;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  font: inherit;
  font-size: .9rem;
  background: var(--paper);
  outline: none;
  transition: border-color .15s;
}
.form-group input:focus { border-color: var(--gold); background: var(--white); }
.form-card { background: var(--paper); border: 1px solid var(--rule-lt); border-radius: var(--r); padding: .75rem; margin-bottom: .85rem; }
.form-note { font-size: .75rem; color: var(--mid); text-align: center; margin-top: .65rem; }
.form-sub { font-size: .75rem; color: var(--mid); margin-top: .35rem; }
.form-divider { display: flex; align-items: center; gap: .75rem; margin: 1rem 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.form-divider span { font-size: .72rem; color: var(--dim); }
.already-member { text-align: center; font-size: .8rem; color: var(--mid); margin-top: 1rem; }
.already-member a { color: var(--gold); font-weight: 600; }
.sent-state { text-align: center; padding: 1rem 0; }
.sent-state .big-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.sent-spam-note { font-size: .78rem; color: var(--dim); margin-top: .5rem; }
.resend-note { font-size: .78rem; color: var(--mid); text-align: center; margin-top: .75rem; }
.resend-note a { color: var(--gold); }
.magic-explainer { font-size: .78rem; color: var(--mid); line-height: 1.6; }
.input-hint { font-size: .72rem; color: var(--dim); margin-top: .25rem; }

/* ── Advertise Page ── */
.founding-banner {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: .65rem var(--gutter);
  font-size: .85rem;
  font-weight: 500;
}
.founding-banner strong { font-weight: 700; }
.founding-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
  padding: .1rem .45rem;
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-left: .35rem;
}
.rate-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); margin-top: 2rem; }
.rate-card {
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rate-card.selected { border-color: var(--gold); }
.rate-card-header { background: var(--paper); padding: 1.25rem 1.25rem .75rem; border-bottom: 1px solid var(--rule); }
.rate-name { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.rate-desc { font-size: .8rem; color: var(--mid); margin-top: .2rem; }
.rate-card-body { padding: 1.25rem; }
.rate-price { font-family: var(--display); font-size: 1.75rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.rate-monthly { font-size: .78rem; color: var(--dim); text-decoration: line-through; margin-bottom: .75rem; }
.rate-card-footer { padding: 0 1.25rem 1.25rem; }
.cluster-list, .perks-list { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.cluster-list li, .perks-list li { font-size: .82rem; color: var(--mid); display: flex; align-items: baseline; gap: .4rem; }
.check { color: var(--green); font-size: .9rem; }
.perks-label { font-family: var(--mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); margin-bottom: .4rem; }
.perk-icon { font-size: .9rem; }
.targeting-section { background: var(--navy); color: #fff; padding: 3rem 0; }
.targeting-section .section-title { color: #fff; }
.targeting-text { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 560px; margin-bottom: 1.5rem; }
.social-proof-card, .trust-item { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 1rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.trust-item { flex: 1; min-width: 200px; }
.promise-card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.5rem; margin-top: 1.5rem; }
.promise-tagline { font-family: var(--display); font-style: italic; color: var(--gold); font-size: 1rem; margin-bottom: .75rem; }
.subscriber-count { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.subscriber-label { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--dim); }

/* Pull quotes */
.pull-quotes, .quotes-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.quote-card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.25rem; }
.quote-text { font-family: var(--display); font-style: italic; font-size: .92rem; color: var(--ink-mid); line-height: 1.6; margin-bottom: .75rem; }
.quote-meta { display: flex; align-items: center; gap: .6rem; }
.quote-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.quote-author { font-size: .78rem; font-weight: 600; color: var(--ink); }

/* Mock UI */
.mock-ui { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 1rem; }
.mock-field, .mock-select { height: 36px; background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); margin-bottom: .5rem; }
.mock-option { padding: .4rem .6rem; font-size: .78rem; color: var(--mid); border-bottom: 1px solid var(--rule-lt); }
.mock-option.selected { background: var(--gold-lt); color: var(--ink); font-weight: 600; }
.mock-btn { height: 36px; background: var(--gold); border-radius: var(--r); }
.mock-upload { background: var(--paper); border: 2px dashed var(--rule); border-radius: var(--r); padding: 1.5rem; text-align: center; font-size: .8rem; color: var(--dim); }
.mock-upload-hint { font-size: .72rem; color: var(--dim); margin-top: .3rem; }
.mock-stripe { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: .75rem; }
.stripe-logo { font-family: var(--mono); font-size: .65rem; color: var(--dim); }
.mock-total { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.mock-total-badge { background: var(--gold-lt); color: var(--gold); font-size: .72rem; font-weight: 700; padding: .2rem .5rem; border-radius: 3px; }
.mock-total-price { font-family: var(--display); font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.mock-total-strike { font-size: .8rem; color: var(--dim); text-decoration: line-through; }
.arrow { display: inline-block; }
.up-icon { color: var(--green); }
.divider { height: 1px; background: var(--rule); margin: 1.5rem 0; }
.gold-divider { height: 2px; background: var(--gold); width: 60px; margin: .75rem 0; }
.below-card { font-size: .78rem; color: var(--mid); text-align: center; margin-top: .5rem; }
.brand-white { color: #fff !important; }
.placement-name { font-size: .82rem; font-weight: 600; color: var(--ink); }
.icon { font-size: 1.25rem; }
.pull-quote {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0;
  line-height: 1.5;
}
.perk-icon { margin-right: .35rem; }
.freq-options { display: flex; gap: .5rem; flex-wrap: wrap; }
.freq-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .65rem 1rem;
  border: 2px solid var(--rule);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .15s;
  min-width: 80px;
}
.freq-option.active { border-color: var(--gold); background: var(--gold-lt); }
.freq-option-text { font-size: .8rem; font-weight: 600; color: var(--ink); }

/* ── Mobile ── */
@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: .5rem var(--gutter) 1rem;
    gap: .125rem;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .6rem .75rem; }
  .signup-form { flex-direction: column; }
  .digest-section { text-align: center; }
  .digest-section .section-desc { margin: 0 auto 1.5rem; }
  .advertise-inner { grid-template-columns: 1fr; }
  .hero { padding: 3rem var(--gutter) 2.5rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .sidebar, .right-col { order: initial; }
  .greeting-meta { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .masthead-title { font-size: 2.5rem; }
  .hero-headline { font-size: 2.5rem; }
  .ticker-wrap { height: 36px; }
  .breaking-banner-inner { flex-direction: column; gap: .3rem; align-items: flex-start; }
}

/* ── ARTICLE PAGE ─────────────────────────────────────────── */
.article-loading, .article-error { display: flex; align-items: center; justify-content: center; min-height: 40vh; }
.loading-inner, .error-inner { text-align: center; color: var(--mid); font-size: .95rem; }
.error-inner h2 { font-family: var(--display); font-size: 1.5rem; color: var(--ink); margin-bottom: .5rem; }
.error-inner p { color: var(--mid); margin-bottom: 1.25rem; }

.article-header { background: var(--paper); border-bottom: 1px solid var(--rule); padding: 2.5rem 0 2rem; }
.article-header-inner { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
.article-kicker { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.article-cat-badge { display: inline-flex; align-items: center; gap: .3rem; background: var(--gold-lt); color: var(--gold); font-family: var(--mono); font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: .2rem .5rem; border-radius: 3px; text-decoration: none; }
.article-cat-badge:hover { background: var(--gold); color: #fff; }
.article-kicker-sep { color: var(--rule); }
#article-read-time { font-family: var(--mono); font-size: .72rem; color: var(--dim); text-transform: uppercase; letter-spacing: .06em; }
#article-headline { font-family: var(--display); font-size: 2.25rem; line-height: 1.2; color: var(--ink); margin-bottom: .75rem; }
.article-subheadline { font-size: 1.1rem; color: var(--ink-mid); line-height: 1.5; margin-bottom: 1rem; }
.article-byline-row { display: flex; align-items: center; gap: .75rem; padding-top: .75rem; border-top: 1px solid var(--rule-lt); }
.article-byline-meta { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--mid); }
.article-pub-label { font-family: var(--display); font-weight: 700; color: var(--ink); }
.article-byline-sep { color: var(--rule); }

.article-image-wrap { max-width: 860px; margin: 0 auto; padding: 1.5rem 1.5rem 0; }
.article-image-wrap img { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--r); display: block; }
.article-image-caption { font-size: .75rem; color: var(--dim); margin-top: .5rem; font-style: italic; }

.article-body-wrap { max-width: 860px; margin: 0 auto; padding: 2rem 1.5rem; display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start; }
.article-body-inner { min-width: 0; }
.article-body p { font-size: 1.05rem; line-height: 1.8; color: var(--ink-mid); margin-bottom: 1.25rem; }

.article-tags-section { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--rule-lt); }
.article-tags-label { font-family: var(--mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); margin-bottom: .5rem; }
.article-tags-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.article-tag { display: inline-block; background: var(--paper); border: 1px solid var(--rule); color: var(--mid); font-size: .75rem; padding: .2rem .5rem; border-radius: 3px; text-decoration: none; }
.article-tag:hover { border-color: var(--gold); color: var(--gold); }

.article-footer-band { margin-top: 2.5rem; padding: 1.5rem; background: var(--navy); color: #fff; border-radius: var(--r); text-align: center; }
.article-footer-brand { font-family: var(--display); font-size: 1.1rem; font-style: italic; margin-bottom: .35rem; }
.article-footer-text { font-size: .85rem; color: rgba(255,255,255,.7); }
.article-footer-text a { color: var(--gold-lt); }

.article-sidebar { position: sticky; top: 72px; display: flex; flex-direction: column; gap: 1.25rem; }
.article-signup-card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.25rem; }
.article-signup-card h3 { font-family: var(--display); font-size: 1rem; color: var(--ink); margin-bottom: .3rem; }
.article-signup-card p { font-size: .8rem; color: var(--mid); margin-bottom: .75rem; }
.article-signup-card .signup-form { flex-direction: column; }
.article-signup-card .signup-form input { border-radius: var(--r) var(--r) 0 0; }
.article-signup-card .signup-form button { border-radius: 0 0 var(--r) var(--r); }

.article-related-card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.25rem; }
.article-related-list { display: flex; flex-direction: column; gap: .75rem; margin-top: .75rem; }
.related-item { padding-bottom: .75rem; border-bottom: 1px solid var(--rule-lt); }
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-link { font-size: .85rem; font-weight: 600; color: var(--ink); text-decoration: none; line-height: 1.4; display: block; margin-bottom: .2rem; }
.related-link:hover { color: var(--gold); }
.related-meta { font-size: .72rem; color: var(--dim); }

@media (max-width: 720px) {
  .article-body-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  #article-headline { font-size: 1.65rem; }
}

/* ── TOPICS PAGE ──────────────────────────────────────────── */
.topics-tab-row { display: flex; flex-wrap: wrap; gap: .4rem; padding: 1.25rem 0 .75rem; border-bottom: 1px solid var(--rule); margin-bottom: 1.5rem; }
.topic-tab { display: inline-block; padding: .35rem .75rem; border-radius: 20px; font-size: .8rem; font-weight: 500; color: var(--mid); text-decoration: none; border: 1px solid var(--rule); background: var(--paper); }
.topic-tab:hover { border-color: var(--gold); color: var(--gold); }
.topic-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.topics-article-list { display: flex; flex-direction: column; gap: 1.25rem; }
.topic-article-row { display: grid; grid-template-columns: 160px 1fr; gap: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--rule-lt); }
.topic-article-row:last-child { border-bottom: none; }
.topic-article-thumb { width: 160px; height: 100px; overflow: hidden; border-radius: var(--r); flex-shrink: 0; }
.topic-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.topic-article-kicker { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--dim); margin-bottom: .3rem; }
.topic-article-headline { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--ink); text-decoration: none; display: block; margin-bottom: .3rem; line-height: 1.35; }
.topic-article-headline:hover { color: var(--gold); }
.topic-article-summary { font-size: .82rem; color: var(--mid); line-height: 1.55; }
.no-results { color: var(--mid); font-size: .9rem; padding: 2rem 0; }
@media (max-width: 560px) {
  .topic-article-row { grid-template-columns: 1fr; }
  .topic-article-thumb { width: 100%; height: 180px; }
}

/* ── SEARCH PAGE ──────────────────────────────────────────── */
.search-form-wrap { margin-bottom: 2rem; }
.search-form-hero { display: flex; gap: 0; max-width: 600px; }
.search-input-hero { flex: 1; padding: .75rem 1rem; border: 2px solid var(--rule); border-right: none; border-radius: var(--r) 0 0 var(--r); font-size: .95rem; color: var(--ink); background: var(--white); outline: none; }
.search-input-hero:focus { border-color: var(--gold); }
.search-btn-hero { padding: .75rem 1.25rem; background: var(--ink); color: #fff; border: 2px solid var(--ink); border-radius: 0 var(--r) var(--r) 0; font-size: .85rem; font-weight: 600; cursor: pointer; white-space: nowrap; }
.search-btn-hero:hover { background: var(--gold); border-color: var(--gold); }
.search-status { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--dim); margin-bottom: 1rem; }
.search-results-list { display: flex; flex-direction: column; gap: 1.25rem; }

/* ── HOMEPAGE IMAGE-FIRST LAYOUT ──────────────────────────── */
.news-hero { margin-bottom: 1.75rem; }
.news-hero-card { display: grid; grid-template-columns: 55% 45%; border-radius: var(--r); overflow: hidden; border: 1px solid var(--rule-lt); background: var(--white); }
.news-hero-img { overflow: hidden; aspect-ratio: 16/10; }
.news-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-hero-body { padding: 2rem 2rem 1.75rem; display: flex; flex-direction: column; justify-content: center; gap: .5rem; }
.news-hero-cat { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 700; }
.news-hero-headline { font-family: var(--display); font-size: clamp(1.35rem, 2.2vw, 1.85rem); font-weight: 900; line-height: 1.22; color: var(--ink); text-decoration: none; display: block; }
.news-hero-headline:hover { color: var(--gold); }
.news-hero-summary { font-size: .875rem; color: var(--mid); line-height: 1.65; }
.news-hero-meta { font-family: var(--mono); font-size: .68rem; color: var(--dim); margin-top: .25rem; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.news-card { border-radius: var(--r); overflow: hidden; border: 1px solid var(--rule-lt); background: var(--white); display: flex; flex-direction: column; }
.news-card-img { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-body { padding: .875rem 1rem 1rem; display: flex; flex-direction: column; flex: 1; }
.news-card-cat { font-family: var(--mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 700; margin-bottom: .35rem; }
.news-card-headline { font-family: var(--display); font-size: .92rem; font-weight: 700; line-height: 1.35; color: var(--ink); text-decoration: none; display: block; margin-bottom: .35rem; }
.news-card-headline:hover { color: var(--gold); }
.news-card-meta { font-family: var(--mono); font-size: .65rem; color: var(--dim); margin-top: auto; padding-top: .4rem; }

.cat-rows { display: flex; flex-direction: column; gap: 2.5rem; }
.cat-row-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--ink); padding-bottom: .5rem; margin-bottom: 1rem; }
.cat-row-title { font-family: var(--display); font-size: .95rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); }
.cat-row-more { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); text-decoration: none; font-weight: 700; }
.cat-row-more:hover { text-decoration: underline; }
.cat-row-articles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cat-article { display: flex; flex-direction: column; }
.cat-article-img { aspect-ratio: 4/3; overflow: hidden; border-radius: calc(var(--r) - 2px); margin-bottom: .5rem; }
.cat-article-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-article-headline { font-family: var(--display); font-size: .85rem; font-weight: 700; line-height: 1.3; color: var(--ink); text-decoration: none; }
.cat-article-headline:hover { color: var(--gold); }
.cat-article-meta { font-family: var(--mono); font-size: .63rem; color: var(--dim); margin-top: .3rem; }
@media (max-width: 900px) {
  .news-hero-card { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .cat-row-articles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .news-grid { grid-template-columns: 1fr; }
  .cat-row-articles { grid-template-columns: 1fr 1fr; }
}

/* ── SHARED PAGE STRUCTURE ─────────────────────────────────── */
.hero-band { background: var(--ink); color: #fff; padding: 3rem var(--gutter) 2.5rem; text-align: center; }
.hero-band .eyebrow { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: .75rem; }
.hero-band h1 { font-family: var(--display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; line-height: 1.1; margin-bottom: .6rem; }
.hero-band p { font-size: .9rem; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto; }
.main-wrap { max-width: var(--max); margin: 0 auto; padding: 2.5rem var(--gutter) 4rem; }

/* ── PROSE PAGES (privacy, terms, contact) ─────────────────── */
.prose { max-width: 680px; }
.prose h2 { font-family: var(--display); font-size: 1.25rem; font-weight: 800; color: var(--ink); margin: 2rem 0 .5rem; }
.prose p { font-size: .95rem; line-height: 1.75; color: var(--ink-mid); margin-bottom: 1rem; }
.prose a { color: var(--gold); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
