/* ===== TOKENS ===== */
:root {
    /* Colors */
    --ink: #1a1a2e;
    --ink-soft: #2a2a42;
    --paper: #faf8f5;
    --paper-alt: #f3f0eb;
    --vermillion: #c73e1d;
    --vermillion-hover: #a83218;
    --indigo: #2d3a8c;
    --indigo-hover: #3d4cad;
    --gold: #b8860b;
    --warm-gray: #6b6b7b;
    --warm-gray-light: #9a9aaa;
    --light-gray: #e8e6e1;
    --dark-surface: #242440;
    --success: #2d6a4f;
    --focus-ring: #2d3a8c;

    /* SDG Colors */
    --sdg-1: #e5243b;
    --sdg-8: #a21942;
    --sdg-10: #dd1367;
    --sdg-11: #fd9d24;
    --sdg-17: #19486a;

    /* Type Scale */
    --type-hero: clamp(2.8rem, 5.5vw, 4.5rem);
    --type-section: clamp(2rem, 4vw, 3rem);
    --type-subsection: clamp(1.3rem, 2.5vw, 1.8rem);
    --type-body: 1.05rem;
    --type-small: 0.88rem;
    --type-caption: 0.75rem;
    --type-eyebrow: 0.7rem;
    --type-stat: clamp(2rem, 4vw, 3rem);

    /* Spacing */
    --section-pad-y: clamp(5rem, 10vw, 8rem);
    --section-pad-x: clamp(1.5rem, 4vw, 3rem);
    --content-max: 1200px;
    --content-narrow: 680px;

    /* Body defaults */
    --body-line-height: 1.7;
    --body-letter-spacing: 0;
}

/* ===== RESET + BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: var(--body-line-height);
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.15;
    font-weight: 300;
}

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

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--ink);
    color: var(--paper);
    font-size: var(--type-small);
    z-index: 9999;
    border-radius: 2px;
}
.skip-link:focus { top: 1rem; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate { animation: none !important; opacity: 1 !important; transform: none !important; }
    html { scroll-behavior: auto; }
    .hero__scroll-chevron { animation: none !important; }
    .flywheel-svg__path { transition: none !important; }
    .flywheel-svg__node { transition: none !important; opacity: 1 !important; }
    .comparison__bar-fill, .comparison__bar-fill--trust { transition: none !important; }
}

/* ===== LAYOUT ===== */

/* Container */
.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
}

.container--narrow {
    max-width: var(--content-narrow);
}

/* Sections */
.section {
    padding: var(--section-pad-y) 0;
    position: relative;
}

.section--paper { background: var(--paper); }
.section--paper-alt { background: var(--paper-alt); }
.section--dark {
    background: var(--ink);
    color: rgba(255,255,255,0.85);
}

/* Section divider — placed between sections as standalone element */
.section-divider {
    width: 200px;
    height: 1px;
    background: rgba(199, 62, 29, 0.12);
    margin: 0 auto 0 var(--section-pad-x);
}

/* Grid utilities */
.grid-7-5 { display: grid; grid-template-columns: 7fr 5fr; gap: 4rem; align-items: start; }
.grid-5-7 { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
.grid-8-4 { display: grid; grid-template-columns: 8fr 4fr; gap: 4rem; align-items: start; }
.grid-triptych {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0;
}
.grid-triptych-divider {
    background: var(--light-gray);
    align-self: stretch;
}
.grid-2x3 { display: grid; grid-template-columns: 7fr 5fr; gap: 2rem 4rem; }
.grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* Prevent grid children from overflowing their track */
.grid-7-5 > *, .grid-5-7 > *, .grid-8-4 > *,
.grid-2x3 > *, .grid-4col > *, .grid-triptych > * {
    min-width: 0;
    overflow-wrap: break-word;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-7-5, .grid-5-7, .grid-8-4 { grid-template-columns: 1fr; gap: 2.5rem; }
    .grid-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-triptych { grid-template-columns: 1fr; }
    .grid-triptych-divider {
        height: 1px;
        width: 100%;
    }
    .grid-2x3 { grid-template-columns: 1fr; }
    .grid-4col { grid-template-columns: repeat(2, 1fr); }
}

/* ===== UI COMPONENTS ===== */

/* ===== EYEBROW ===== */
.eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--type-eyebrow);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--vermillion);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.eyebrow::before {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: var(--vermillion);
    flex-shrink: 0;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--type-section);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.section--dark .section-title { color: #fff; }

.section-title em {
    font-style: italic;
    color: var(--indigo);
}
.section--dark .section-title em { color: var(--vermillion); }

/* ===== BODY TEXT ===== */
.body-text {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--type-body);
    line-height: 1.85;
    color: var(--warm-gray);
    max-width: 540px;
}
.section--dark .body-text { color: rgba(255,255,255,0.6); }

.body-text--small {
    font-size: var(--type-small);
    line-height: 1.75;
}

/* ===== CTA BUTTONS ===== */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.cta:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 3px;
}

/* Primary on light */
.cta--primary {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.cta--primary:hover {
    background: var(--indigo);
    border-color: var(--indigo);
}

/* Secondary on light */
.cta--secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--light-gray);
}
.cta--secondary:hover {
    border-color: var(--vermillion);
    color: var(--vermillion);
}

/* Primary on dark */
.section--dark .cta--primary {
    background: var(--vermillion);
    border-color: var(--vermillion);
    color: var(--paper);
}
.section--dark .cta--primary:hover {
    background: var(--vermillion-hover);
    border-color: var(--vermillion-hover);
}

/* Secondary on dark */
.section--dark .cta--secondary {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border-color: rgba(255,255,255,0.2);
}
.section--dark .cta--secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* Nav CTA (smaller) */
.cta--nav {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
}

/* CTA group */
.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .cta { width: 100%; justify-content: center; }
}

/* ===== STATS ROW ===== */
.stats-row {
    display: flex;
    gap: 3.5rem;
    padding-top: 2rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--light-gray);
}
.section--dark .stats-row { border-top-color: rgba(255,255,255,0.06); }

.stat {}
.stat__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--type-stat);
    font-weight: 600;
    color: var(--indigo);
    line-height: 1;
}
.section--dark .stat__number { color: #fff; }

.stat__number .unit {
    font-size: calc(var(--type-stat) * 0.45);
    color: var(--warm-gray);
    font-weight: 400;
}
.section--dark .stat__number .unit { color: rgba(255,255,255,0.5); }

.stat__label {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--type-caption);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-top: 0.4rem;
}
.section--dark .stat__label { color: rgba(255,255,255,0.55); }

@media (max-width: 768px) {
    .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ===== SDG BADGES ===== */
.sdg-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.sdg-row__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-right: 0.5rem;
}
.section--dark .sdg-row__label { color: rgba(255,255,255,0.3); }

.sdg-badge {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
}
.sdg-badge--sm { width: 24px; height: 24px; font-size: 0.55rem; }

/* ===== QUOTE BLOCK ===== */
.quote-block {
    border-left: 3px solid var(--vermillion);
    padding-left: 2rem;
}
.quote-block__text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.55;
    color: var(--ink);
}
.section--dark .quote-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--vermillion);
    padding: 2.5rem;
    padding-left: 2.5rem;
}
.section--dark .quote-block__text { color: rgba(255,255,255,0.85); }

.quote-block__attribution {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-top: 1rem;
}

/* ===== PULL QUOTE (between sections) ===== */
.pull-quote {
    text-align: center;
    padding: 3rem var(--section-pad-x);
    max-width: 700px;
    margin: 0 auto;
}
.pull-quote__text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--indigo);
    line-height: 1.5;
}

/* ===== METRIC CARD (dark bg) ===== */
.metric-card {}
.metric-card__label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}
.metric-card__value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}
.metric-card__value .unit {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}
.metric-card__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.35rem;
}
.metric-card__bar {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    margin-top: 0.75rem;
    overflow: hidden;
}
.metric-card__bar-fill {
    height: 100%;
    border-radius: 2px;
}

/* ===== VERTICAL JAPANESE WATERMARK ===== */
.jp-watermark {
    position: absolute;
    right: var(--section-pad-x);
    top: var(--section-pad-y);
    writing-mode: vertical-rl;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: rgba(26, 26, 46, 0.1);
    pointer-events: none;
    user-select: none;
}
.section--dark .jp-watermark { color: rgba(255,255,255,0.05); }

@media (max-width: 768px) {
    .jp-watermark { display: none; }
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 3rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(199, 62, 29, 0.2);
}
.timeline__item {
    padding-bottom: 3rem;
    position: relative;
}
.timeline__item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 7px;
    height: 7px;
    border-radius: 3px;
    background: var(--vermillion);
}
.timeline__phase {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}
.timeline__timeframe {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: var(--vermillion);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.timeline__description {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--type-small);
    color: var(--warm-gray);
    line-height: 1.75;
}

/* ===== PROCESS FLOW (horizontal) ===== */
.process-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 3rem;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}
.process-step + .process-step::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 1rem;
    width: 2rem;
    height: 1px;
    background: rgba(255,255,255,0.08);
}
.process-step__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255,255,255,0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.process-step__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.35rem;
}
.process-step__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process-flow { flex-direction: column; gap: 2rem; }
    .process-step { text-align: left; padding: 0; }
    .process-step + .process-step::before {
        top: -1rem;
        left: 0;
        width: 1px;
        height: 2rem;
    }
}

/* ===== THEORY OF CHANGE CHAIN ===== */
.toc-chain {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    justify-content: center;
}
.toc-node {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.6rem 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}
.toc-arrow {
    color: rgba(255,255,255,0.15);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ===== NAV ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--paper);
    border-bottom: 1px solid var(--light-gray);
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 var(--section-pad-x);
}
.nav__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__wordmark {
    font-size: 0.9rem;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.nav__wordmark-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
.nav__wordmark-en {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav__link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
}
.nav__link:hover { color: var(--ink); }
.nav__link--active {
    color: var(--ink);
}
.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--vermillion);
}

/* Mobile nav */
.nav__menu-toggle {
    display: none;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    padding: 0.5rem;
}

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.nav__overlay.is-open { display: flex; }

.nav__overlay-close {
    position: absolute;
    top: 1.5rem;
    right: var(--section-pad-x);
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
}
.nav__overlay-close:hover { color: #fff; }

.nav__overlay-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.25s;
}
.nav__overlay-link:hover { opacity: 1; }

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__menu-toggle { display: block; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ink);
    padding: 0 0 3rem;
}
.footer__cta-section {
    padding: 6rem 0 4rem;
    text-align: center;
}
.footer__cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--type-section);
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.5rem;
}
.footer__cta-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--type-body);
    color: rgba(255,255,255,0.6);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}
.footer__cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 2rem;
}
.footer__brand {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}
.footer__nav {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}
.footer__nav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.25s;
}
.footer__nav a:hover { color: #fff; }

.footer__copyright {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    margin-top: 2rem;
}
.footer__jp {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.08);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .footer__bottom { grid-template-columns: 1fr; text-align: center; }
    .footer__nav { justify-content: center; }
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate { opacity: 0; }
.animate.is-visible {
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 480px) {
    :root {
        --section-pad-y: clamp(3rem, 8vw, 5rem);
        --section-pad-x: 1.25rem;
    }
    .nav { padding: 0 1.25rem; }
    .nav__wordmark { font-size: 0.85rem; }
    .eyebrow { font-size: 0.6rem; gap: 0.5rem; }
    .eyebrow::before { width: 1.5rem; }
    .stats-row { gap: 1.5rem; }
    .cta-group { flex-direction: column; }
    .cta-group .cta { width: 100%; justify-content: center; }
    .sdg-row { flex-wrap: wrap; }
    .footer__cta-buttons { flex-direction: column; align-items: center; }
    .footer__cta-buttons .cta { width: 100%; justify-content: center; }
    .quote-block { padding-left: 1.25rem; }
    .quote-block__text { font-size: 1.15rem; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }
    .toc-chain { gap: 0.35rem; }
    .toc-node { padding: 0.5rem 0.8rem; font-size: 0.7rem; }
    .process-step__number { font-size: 1.5rem; }
}

/* Prevent horizontal scroll on all viewports */
html, body { max-width: 100vw; }

/* Ensure touch targets meet 44px minimum */
@media (max-width: 768px) {
    .cta { min-height: 44px; }
    .nav__menu-toggle { min-height: 44px; min-width: 44px; }
    .faq-item summary { min-height: 44px; }
    .nav__overlay-link { padding: 0.5rem 1rem; min-height: 44px; display: flex; align-items: center; }
}

/* ===== PRINT STYLESHEET ===== */
@media print {
    /* Hide interactive/nav elements */
    .nav, .nav__overlay, .skip-link,
    .cta, .cta-group, .footer__cta-section,
    .footer__cta-buttons, .jp-watermark,
    .sdg-row, .metric-card__bar,
    .beat-nav, .easter-egg, .hero__scroll-indicator,
    .flywheel-svg, .flywheel-details { display: none !important; }

    /* Reset colors to black on white */
    body { background: #fff !important; color: #000 !important; font-size: 11pt; }
    .section, .section--paper, .section--paper-alt,
    .section--dark, .footer { background: #fff !important; color: #000 !important; padding: 1.5rem 0 !important; }
    .section--dark .section-title,
    .section--dark .body-text,
    .section--dark .stat__number,
    .section--dark .stat__label,
    .footer__brand, .footer__nav a,
    .footer__copyright { color: #000 !important; }

    /* Expand content */
    .container { max-width: 100% !important; padding: 0 !important; }
    .grid-7-5, .grid-5-7, .grid-8-4, .grid-2x3, .grid-4col { display: block !important; }
    .grid-triptych { display: block !important; }
    .grid-triptych-divider { display: none !important; }

    /* Typography for print */
    .section-title { font-size: 18pt !important; color: #000 !important; page-break-after: avoid; }
    .section-title em { color: #333 !important; }
    .eyebrow { color: #666 !important; }
    .eyebrow::before { background: #666 !important; }
    .body-text { color: #333 !important; max-width: 100% !important; }
    .stat__number { color: #000 !important; font-size: 1.5rem !important; }
    .stat__label { color: #666 !important; }

    /* Section divider for print */
    .section-divider { background: #ccc !important; margin: 0.5rem 0 !important; }

    /* Quote blocks */
    .quote-block { border-left-color: #999 !important; }
    .quote-block__text { color: #333 !important; font-size: 12pt !important; }

    /* Footer simplified */
    .footer__bottom { display: block !important; text-align: left !important; }
    .footer__nav { justify-content: flex-start !important; }

    /* Prevent orphans */
    h1, h2, h3 { page-break-after: avoid; }
    p, .body-text { orphans: 3; widows: 3; }

    /* Links show URL */
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
    .nav__link::after, .footer__nav a::after { content: none !important; }
}
