/* ======================================
   TheFiduciaryMandate.org — Shared Styles
   ====================================== */

:root {
  --bg: #f8f7f4;
  --bg-alt: #f0eeea;
  --header-bg: #eae8e3;
  --navy: #0a1628;
  --deep-blue: #101d33;
  --slate: #1a2a44;
  --gold: #b8942e;
  --gold-light: #d4af37;
  --gold-dim: rgba(184,148,46,0.12);
  --text: #2d3039;
  --text-light: #5c606b;
  --heading: #1a1d24;
  --white: #ffffff;
  --border: rgba(0,0,0,0.08);
  --border-gold: rgba(184,148,46,0.25);
  --red-accent: #8b2020;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.topbar-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.topbar-logo span { color: var(--text-light); font-weight: 400; font-size: 0.85rem; margin-left: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.topbar-nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.topbar-nav a.nav-audience {
  text-align: center;
  line-height: 1.25;
  font-weight: 500;
  transition: color 0.3s;
}
.topbar-nav a:hover { color: var(--gold); }
.topbar-nav a.active { color: var(--gold); }
.topbar-nav .nav-sep {
  width: 1px;
  height: 16px;
  background: var(--border);
  display: inline-block;
}
.topbar-nav .nav-change {
  font-size: 0.68rem;
  letter-spacing: 0.8px;
  opacity: 0.6;
  text-transform: none;
}
.topbar-nav .nav-change:hover { opacity: 1; color: var(--gold); }
.topbar-nav .nav-phone {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: var(--text-light);
  opacity: 0.7;
}

/* ── HERO ── */
.hero {
  padding: 140px 60px 80px;
  text-align: center;
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  position: relative;
  overflow: hidden;
}
.hero::before {
  display: none;
}
.hero-label {
  display: inline-block;
  font-size: 1.22rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 20px;
  margin-bottom: 32px;
  font-weight: 600;
  position: relative;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  max-width: 100%;
  margin: 0 auto 20px;
  position: relative;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  color: #000000;
  max-width: 100%;
  margin: 0 auto 28px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.3px;
  position: relative;
}
.hero-hook {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: #000000;
  max-width: 100%;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
}
.hero-cta {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  padding: 14px 36px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.hero-cta:hover { background: #e0c04a; transform: translateY(-2px); }

/* ── HERO INNER (for constituent pages with left-aligned hero) ── */
.hero-inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.hero.hero-left { text-align: left; }
.hero.hero-left .hero-label { margin-bottom: 20px; }
.hero.hero-left h1 {
  margin: 0 0 16px;
  max-width: 100%;
  font-size: clamp(2rem, 4vw, 2.6rem);
}
.hero.hero-left .hero-subtitle {
  margin: 0 0 36px;
  max-width: 100%;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-family: 'Source Sans 3', sans-serif;
  color: #000000;
  line-height: 1.65;
  font-weight: 400;
}

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 2rem;
  position: relative;
}
.btn-primary {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--gold);
  padding: 0.8rem 2rem;
  text-decoration: none;
  transition: background 0.2s;
  font-weight: 600;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #600000;
  background: #ffffff;
  border: 2px solid #600000;
  padding: 0.8rem 2rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  font-weight: 600;
}
.btn-secondary:hover { background: #faf5f5; border-color: #400000; }

/* Hero stats */
.hero-stat-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  position: relative;
}
.hero-stat { text-align: left; }
.hero-stat .number {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.15rem;
  max-width: 190px;
  line-height: 1.4;
}

/* ── SECTION COMMON ── */
section { padding: 80px 60px; }
.section-inner { max-width: 100%; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--heading);
  margin-bottom: 28px;
  font-weight: 600;
  line-height: 1.3;
}

/* ── CONTENT WRAP (for article-style constituent pages) ── */
.content-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}
.content-wrap section {
  padding: 3rem 0;
}
.content-wrap section + section {
  border-top: 1px solid var(--border);
}
.content-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 1.1rem;
  line-height: 1.3;
}
.content-wrap h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-weight: 600;
}
.content-wrap p {
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.75;
}

/* ── BLOCKQUOTE ── */
blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--white);
  font-style: italic;
  color: var(--text-light);
}
blockquote .attribution {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  color: #888;
}

/* ── EVIDENCE TABLE ── */
.evidence-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.93rem;
}
.evidence-table th {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  color: #000000;
  font-weight: 600;
}
.evidence-table td {
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--border);
}
.evidence-table tr:nth-child(even) td { background: #faf9f6; }
.neg { color: #b33; font-weight: 600; }
.pos { color: #2a7a3a; font-weight: 600; }

/* ── CALLOUT ── */
.callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 1.4rem 1.6rem;
  margin: 1.75rem 0;
}
.callout.dark {
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  border-color: #d5cdb8;
  border-left-color: var(--gold);
  color: #000000;
}
.callout.dark p { color: var(--text); }
.callout.dark strong { color: #000000; }
.callout.warning {
  border-left-color: #b33;
}
.callout-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.callout.warning .callout-title { color: #b33; }

/* ── NUMBERED ITEMS ── */
.numbered-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.6rem;
  align-items: flex-start;
}
.numbered-item .num {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 1.8rem;
  text-align: center;
  line-height: 1.6;
}
.numbered-item .item-content strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
  color: var(--heading);
}
.numbered-item .item-content p {
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* ── INLINE CTA ── */
.inline-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.inline-cta p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}
.inline-cta a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}

/* ── BOTTOM CTA SECTION ── */
.cta-section {
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  color: #000000;
  padding: 3.5rem 2rem;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #000000;
  margin-bottom: 0.75rem;
  font-size: 1.65rem;
  font-weight: 600;
}
.cta-section p { color: var(--text); margin-bottom: 1.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── TEN THINGS (counter-based list) ── */
.ten-things {
  counter-reset: tencount;
  margin: 2rem 0;
}
.ten-item {
  counter-increment: tencount;
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.ten-item::before {
  content: counter(tencount);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.ten-item-content strong {
  display: block;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.2rem;
}
.ten-item-content p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ── QUESTION BLOCKS ── */
.question-block {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.25rem;
}
.question-block .q {
  font-weight: bold;
  color: var(--heading);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.question-block p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ── DEPOSITION BLOCKS (legal page) ── */
.depo-block {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.25rem;
}
.depo-block .q-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.depo-block .question {
  font-weight: bold;
  color: var(--heading);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-style: italic;
}
.depo-block p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ── SOURCE LIST (legal page) ── */
.source-list {
  margin: 1.5rem 0;
}
.source-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.source-tag {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  padding: 0.2rem 0.6rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-weight: 600;
}
.source-item-content strong {
  display: block;
  font-size: 0.98rem;
  color: var(--heading);
  margin-bottom: 0.15rem;
}
.source-item-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ── TIMELINE (congress page) ── */
.timeline {
  margin: 2rem 0;
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--gold);
}
.timeline-item {
  position: relative;
  margin-bottom: 1.75rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.15rem;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-item .year {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.timeline-item p {
  font-size: 0.96rem;
  margin-bottom: 0;
}
.timeline-item strong { color: var(--heading); }

/* ── TWO-COLUMN CARDS (congress page) ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.75rem 0;
}
.two-col-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.4rem;
}
.two-col-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.two-col-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ── ANALOGIES GRID (regulators page) ── */
.analogies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.analogy-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.3rem;
}
.analogy-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.analogy-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ── AUDIENCE GRID (institutional fiduciaries page) ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.3rem;
}
.audience-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  color: var(--heading);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.audience-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ── FRONT PAGE MISSION ── */
.mission-section {
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  padding: 120px 60px 60px;
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  display: none;
}
.mission-inner {
  position: relative;
  max-width: 100%;
}
.mission-inner p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #000000;
  margin-bottom: 1.2rem;
}
.mission-inner p:last-child { margin-bottom: 0; }

/* ── FRONT PAGE: FIVE THINGS ── */
.five-things-section {
  background: var(--bg);
  padding: 80px 60px;
}
.five-things-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.five-things-section h2 em {
  font-style: italic;
  color: var(--gold);
}
.five-things-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.five-things-group h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 4px;
}
.five-things-group .group-subtitle {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}
.five-things-group ol {
  list-style: none;
  counter-reset: thing;
  padding: 0;
}
.five-things-group ol li {
  counter-increment: thing;
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.five-things-group ol li:last-child { border-bottom: none; }
.five-things-group ol li::before {
  content: counter(thing) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.88rem;
}

/* ── FRONT PAGE: WHAT WE STAND FOR ── */
.values-section {
  background: var(--bg-alt);
  padding: 80px 60px;
  border-top: 1px solid var(--border);
}
.values-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 40px;
}
.value-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.value-item p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
  font-weight: 400;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

/* ── SPLASH SELECTOR (index page) ── */
.splash-section {
  background: var(--bg);
  padding: 0;
}
.splash-tagline {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  padding: 40px 40px 0;
  margin: 0;
}
.splash-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 24px;
  width: 100%;
  padding: 32px 40px 60px;
  box-sizing: border-box;
}
.splash-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 28px 40px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  border-top: 4px solid transparent;
  min-height: 200px;
}
.splash-panel:hover {
  border-top-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.splash-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #0000FF;
  text-decoration: underline;
  margin-bottom: 14px;
  line-height: 1.3;
}
.splash-panel-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}
.splash-column {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 7;
}
.splash-column .five-things-group {
  display: contents;
}
.splash-column .five-things-group ol {
  display: contents;
}
.splash-column .group-subtitle {
  margin-top: 16px;
}

/* ── INDEX HERO SPLIT ── */
.index-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 60px;
  position: relative;
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  overflow: hidden;
}
.index-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.index-hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.index-hero-text {
  padding-right: 1rem;
}
.index-eyebrow {
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.index-hero-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.index-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: #000000;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.index-title em {
  font-style: normal;
  color: var(--red-accent);
}
.index-subtitle {
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}
.index-subtitle p {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
  margin-bottom: 1rem;
}
.index-subtitle p:last-child { margin-bottom: 0; }

/* ── INDEX AUDIENCE STACK ── */
.index-hero-nav {
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.index-nav-label {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.9rem;
}
.index-audience-stack {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.12);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.index-audience-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: pointer;
}
.index-audience-strip:last-child { border-bottom: none; }
.index-audience-strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s;
}
.index-audience-strip:hover {
  background: var(--gold-dim);
  padding-left: 1.7rem;
}
.index-audience-strip:hover::before { transform: scaleY(1); }
.index-strip-icon {
  font-size: 1.2rem;
  color: var(--text-light);
  transition: all 0.3s;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 50%;
  flex-shrink: 0;
}
.index-audience-strip:hover .index-strip-icon {
  color: var(--gold);
  border-color: var(--border-gold);
}
.index-strip-content {
  flex: 1;
  min-width: 0;
}
.index-strip-label {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--heading);
  line-height: 1.3;
}
.index-strip-desc {
  font-size: 1.0rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.45;
  margin-top: 0.15rem;
}
.index-strip-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
  flex-shrink: 0;
}
.index-audience-strip:hover .index-strip-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── INDEX PRINCIPLES CARDS ── */
.index-principles {
  background: var(--bg-alt);
  padding: 80px 60px;
  border-top: 1px solid var(--border);
}
.index-principles-header {
  text-align: center;
  margin-bottom: 48px;
}
.index-principles-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.index-principles-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--heading);
}
.index-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.index-principle-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 2.2rem;
  transition: all 0.35s;
  position: relative;
}
.index-principle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.35s;
}
.index-principle-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.index-principle-card:hover::before { height: 100%; }
.index-principle-num {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.index-principle-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--heading);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}
.index-principle-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.72;
  font-weight: 400;
}

/* ── INDEX ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── INDEX RESPONSIVE ── */
@media (max-width: 1024px) {
  .index-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .index-hero-text { padding-right: 0; }
}
@media (max-width: 768px) {
  .index-hero { padding: 100px 20px 40px; min-height: auto; }
  .index-principles { padding: 60px 20px; }
  .index-principles-grid { grid-template-columns: 1fr; }
}

/* ── HERO SPLIT (audience pages) ── */
.hero.hero-left .hero-inner {
  display: grid;
  grid-template-columns: 1fr 33%;
  gap: 2rem;
  align-items: center;
}
.hero-stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.hero-stat-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  padding: 1rem 0.8rem;
  text-align: center;
}
.hero-stat-card .number {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stat-card .label {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ── HERO TOC (audience pages) ── */
.hero-toc {
  background: rgba(240,237,231,0.6);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.8rem 2rem;
}
.hero-toc-label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-toc-list li {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hero-toc-list li:last-child { border-bottom: none; }
.hero-toc-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.4rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  line-height: 1.35;
}
.hero-toc-list a:hover {
  color: var(--gold);
  padding-left: 0.8rem;
}
.hero-toc-list a::before {
  content: '\2192';
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.hero-toc-list a:hover::before { opacity: 1; }

/* ── CONTENT CARDS ── */
.cards-grid {
  display: grid;
  gap: 1.2rem;
  margin: 1.75rem 0;
}
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-ten {
  grid-template-columns: repeat(4, 1fr);
}
.cards-grid-ten .content-card:nth-child(9) { grid-column: 2; }
.cards-grid-ten .content-card:nth-child(10) { grid-column: 3; }
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem 1.6rem;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.35s;
}
.content-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.content-card:hover::before { height: 100%; }
.content-card-num {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.content-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.content-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}
.content-card .q-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.content-card .q {
  font-weight: bold;
  color: var(--heading);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.content-card-accent {
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  border-color: #d5cdb8;
}
.content-card-accent p { color: var(--text); }
.content-card-accent strong { color: #000; }
.content-card .btn-primary { margin-top: auto; align-self: flex-start; }

/* ── HERO & CARDS RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero.hero-left .hero-inner { grid-template-columns: 1fr; }
  .hero-toc { margin-top: 1rem; }
  .cards-grid-4, .cards-grid-ten { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-ten .content-card:nth-child(9),
  .cards-grid-ten .content-card:nth-child(10) { grid-column: auto; }
}
@media (max-width: 768px) {
  .hero-stats-panel { grid-template-columns: 1fr; gap: 0.5rem; }
  .hero-stat-card { text-align: left; }
  .cards-grid-2, .cards-grid-3, .cards-grid-4, .cards-grid-ten { grid-template-columns: 1fr; }
}

/* ── PAGE LAYOUT UTILITIES ── */
.section-header-centered {
  text-align: center;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.section-header-centered h2,
.section-header-centered h3,
.section-header-centered p {
  max-width: 100%;
}
.section-centered-wide {
  text-align: center;
  max-width: 66.67%;
  margin-left: auto;
  margin-right: auto;
}
.content-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  align-items: start;
}
.content-split-text { }
.content-split-aside { }

/* Larger card text modifier */
.cards-lg .content-card h4,
.cards-lg .analogy-card h4 {
  font-size: 1.3rem;
}
.cards-lg .content-card p,
.cards-lg .analogy-card p {
  font-size: 1.13rem;
}

/* Evidence table centered */
.evidence-table-centered {
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

/* Case study card row */
.case-study-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 1.75rem 0;
}
.case-study-card {
  background: linear-gradient(to bottom right, #e4ded0, #ece4df);
  border: 1px solid #d5cdb8;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.case-study-card .case-date {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.case-study-card .case-metric {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.case-study-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0;
}
.case-study-card strong { color: #000; }
.case-study-card .btn-primary { margin-top: auto; align-self: flex-start; }

@media (max-width: 1024px) {
  .section-header-centered { max-width: 75%; }
  .section-centered-wide { max-width: 85%; }
  .content-split { grid-template-columns: 1fr; }
  .evidence-table-centered { max-width: 100%; }
  .case-study-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section-header-centered { max-width: 100%; }
  .section-centered-wide { max-width: 100%; }
  .case-study-row { grid-template-columns: 1fr; }
}

/* ── ABOUT (contact page) ── */
.about { background: var(--bg-alt); border-top: 1px solid var(--border); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--heading);
  margin-bottom: 16px;
}
.about p {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.7;
}
.about-contact {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 2;
}
.about-contact a { color: var(--gold); text-decoration: none; }
.about-contact a:hover { text-decoration: underline; }
.about-sites { margin-top: 16px; }
.about-sites a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.about-sites a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 60px;
  text-align: center;
}
footer p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .splash-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 28px 28px 60px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .analogies-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { padding: 12px 20px; flex-direction: column; gap: 8px; }
  .topbar-logo span { display: none; }
  .topbar-nav { gap: 12px; justify-content: center; }
  .container { padding: 0 20px; }
  section { padding: 60px 20px; }
  .hero { padding: 120px 20px 60px; }
  .hero.hero-left { padding: 120px 20px 40px; }
  .hero.hero-left h1 { font-size: 1.7rem; }
  .hero-stat-row { gap: 1.5rem; }
  .mission-section { padding: 100px 20px 40px; }
  .five-things-section { padding: 60px 20px; }
  .values-section { padding: 60px 20px; }
  .splash-grid { grid-template-columns: 1fr; padding: 20px 20px 40px; }
  .splash-tagline { font-size: 1.1rem; padding: 28px 20px 0; }
  .splash-panel { min-height: auto; padding: 32px 20px 28px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; }
  .analogies-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .content-wrap { padding: 0 20px; }
  footer { padding: 32px 20px; }
}

/* ── AUTH VISIBILITY ── */
.auth-only { display: none; }
.no-auth-only { display: block; }
body.is-authenticated .auth-only { display: flex; }
body.is-authenticated a.auth-only { display: inline-flex; }
body.is-authenticated .no-auth-only { display: none; }

/* ── REPORTS HUB ── */
.reports-hub { padding: 80px 60px; }
.reports-hub-intro {
  margin-bottom: 48px;
}
.reports-hub-intro p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.7;
}
.report-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.report-card:hover { border-color: var(--border-gold); }
.report-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--heading);
  font-weight: 600;
  margin-bottom: 8px;
}
.report-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.report-meta span { margin-right: 20px; }
.report-desc {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}
.report-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-download:hover { background: var(--gold-light); }
.btn-download svg { width: 16px; height: 16px; fill: currentColor; }
.btn-download.disabled { opacity: 0.4; pointer-events: none; }
.btn-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 12px 24px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-details:hover { border-color: var(--gold); background: var(--gold-dim); }

/* Access prompt */
.access-prompt {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 32px 36px;
  margin-top: 40px;
}
.access-prompt h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--heading);
  font-weight: 600;
  margin-bottom: 8px;
}
.access-prompt p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.access-prompt-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── REPORT DETAIL PAGE ── */
.report-detail { padding: 80px 60px; }
.report-breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.report-breadcrumb a { color: var(--gold); text-decoration: none; }
.report-breadcrumb a:hover { text-decoration: underline; }
.report-detail h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--heading);
  font-weight: 600;
  margin-bottom: 12px;
}
.report-detail-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.report-detail-meta span { margin-right: 20px; }
.report-summary {
  margin-bottom: 48px;
}
.report-summary p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--text);
}
.report-toc { margin: 32px 0; }
.toc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  transition: border-color 0.3s;
}
.toc-item:hover { border-color: var(--border-gold); }
.toc-item-info h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 2px;
}
.toc-item-info .toc-label {
  font-size: 0.78rem;
  color: var(--text-light);
}
.btn-section-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-section-download:hover { background: var(--gold-light); }
.btn-section-download.disabled { opacity: 0.4; pointer-events: none; }

/* ── RESPONSIVE: REPORTS ── */
@media (max-width: 768px) {
  .reports-hub { padding: 60px 20px; }
  .report-card { padding: 28px 24px; }
  .report-detail { padding: 60px 20px; }
  .toc-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .access-prompt { padding: 24px 20px; }
}
