/* ── Page-specific: hero, article body, data displays ── */
.oofta-hero {
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.oofta-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    letter-spacing: .03em;
    line-height: .95;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.oofta-hero .subtitle {
    font-size: clamp(14px, 2vw, 17px);
    color: var(--text-2);
    max-width: 680px;
    margin: 0 auto 28px;
    font-style: italic;
    line-height: 1.6;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}
.hero-stat { text-align: center; }
.hero-stat .val {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat .val.red { color: #EF4444; }
.hero-stat .lbl {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-top: 4px;
}

/* Content layout */
.content-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 0 60px;
}
@media(min-width:1000px) {
    .content-wrap { grid-template-columns: 200px 1fr; gap: 40px; }
}

/* Sticky TOC */
.toc { display: none; }
@media(min-width:1000px) {
    .toc { display: block; position: sticky; top: 72px; align-self: start; max-height: calc(100vh - 90px); overflow-y: auto; padding-right: 12px; }
}
.toc-title {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.toc a {
    display: block;
    font-size: 12px;
    color: var(--text-3);
    padding: 6px 0 6px 12px;
    border-left: 2px solid transparent;
    transition: all .15s;
    line-height: 1.4;
}
.toc a:hover, .toc a.active { color: var(--gold); border-left-color: var(--gold); }

/* Article body */
.article-body { max-width: 780px; }
.article-body h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--text-1);
    margin: 48px 0 8px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-transform: uppercase;
    padding-left: 12px;
    border-left: 3px solid var(--gold);
}
.article-body h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.article-body h2 .num { color: var(--gold); margin-right: 8px; }
.article-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-1);
    margin: 28px 0 8px;
}
.article-body p { margin-bottom: 20px; color: var(--text-2); line-height: 1.75; }
.article-body p.lead {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-1);
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 28px;
}
.article-body .callout {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body .callout.red { border-left-color: #EF4444; }
.article-body .callout.purple { border-left-color: #4F2683; }
.article-body .callout.neon { border-left-color: #34D399; }
.article-body .callout .callout-label {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 8px;
}
.article-body .callout p { margin-bottom: 0; }
.article-body .callout p + p { margin-top: 12px; }

/* Stat cards */
.oofta-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 28px 0;
}
@media(min-width:600px) { .oofta-stats { grid-template-columns: repeat(4, 1fr); } }
.oofta-sc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}
.oofta-sc .sv { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
.oofta-sc .sv.red { color: #EF4444; }
.oofta-sc .sv.green { color: #34D399; }
.oofta-sc .sl { font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-top: 6px; }

/* Data table */
.misery-table { width: 100%; border-collapse: collapse; margin: 24px 0 28px; font-size: 14px; }
.misery-table th {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-3);
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.misery-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--text-2); }
.misery-table tr:hover td { background: rgba(255,255,255,.015); }
.misery-table .yr { font-weight: 600; color: var(--gold); }
.misery-table .pain { color: #EF4444; font-weight: 600; }

/* Quote blocks */
.bq {
    margin: 28px 0;
    padding: 24px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid #4F2683;
    border-radius: 0 var(--radius) var(--radius) 0;
    position: relative;
}
.bq p { font-style: italic; font-size: 16px; line-height: 1.7; color: var(--text-1); margin-bottom: 0; }
.bq .attr { font-size: 12px; color: var(--text-3); margin-top: 12px; display: block; font-style: normal; }

/* Kicker trauma timeline */
.kick-timeline { margin: 28px 0; }
.kick-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.kick-item:last-child { border-bottom: none; }
.kick-year { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; color: #EF4444; min-width: 48px; padding-top: 2px; }
.kick-detail .kick-name { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-1); margin-bottom: 2px; }
.kick-detail .kick-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }