:root {
    --report-green: #153529;
    --report-green-soft: #295340;
    --report-gold: #c49b5a;
    --report-bg: #f6f4ef;
    --report-panel: #ffffff;
    --report-border: rgba(21, 53, 41, 0.08);
    --report-text: #24352d;
    --report-muted: #617169;
}

body.report-page {
    background: linear-gradient(180deg, #f8f7f3 0%, #f2efe7 100%);
    color: var(--report-text);
}

.report-hero {
    position: relative;
    padding: 168px 0 96px;
    background:
        linear-gradient(135deg, rgba(12, 35, 26, 0.88), rgba(32, 76, 58, 0.78)),
        var(--hero-image, linear-gradient(135deg, #1b3a2a, #2c5742)) center/cover no-repeat;
    color: #fff;
}

.report-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 96px;
    background: linear-gradient(180deg, rgba(242, 239, 231, 0), rgba(242, 239, 231, 1));
}

.report-hero .container,
.report-main .container {
    max-width: 1180px;
}

.report-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
}

.report-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 1;
}

.report-hero h1 {
    margin: 18px 0 18px;
    font-size: 3rem;
    line-height: 1.18;
    font-weight: 800;
}

.report-hero p.lead {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.95;
}

.hero-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-tag-list span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.8rem;
}

.hero-meta-card,
.section-panel,
.source-card,
.related-card {
    background: var(--report-panel);
    border: 1px solid var(--report-border);
    box-shadow: 0 20px 42px rgba(22, 40, 30, 0.06);
    border-radius: 28px;
}

.hero-meta-card {
    padding: 28px;
    color: var(--report-text);
}

.hero-meta-card h3,
.section-panel h2,
.source-card h2,
.related-card h3 {
    margin: 0 0 14px;
    color: var(--report-green);
}

.meta-list {
    display: grid;
    gap: 14px;
}

.meta-item {
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(21, 53, 41, 0.035), rgba(21, 53, 41, 0.015));
    border-radius: 18px;
}

.meta-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.84rem;
    color: var(--report-muted);
}

.meta-item span,
.meta-item a {
    color: var(--report-text);
    line-height: 1.75;
    text-decoration: none;
}

.report-main {
    padding: 24px 0 84px;
}

.report-stack {
    display: grid;
    gap: 24px;
}

.section-panel {
    padding: 34px 34px 36px;
}

.section-panel p,
.section-panel li,
.source-card p {
    color: var(--report-muted);
    line-height: 1.9;
}

.section-intro {
    margin-bottom: 22px;
}

.fact-grid,
.value-grid,
.related-grid {
    display: grid;
    gap: 16px;
}

.fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid,
.related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 16px;
}

.gallery-figure {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(21, 53, 41, 0.06);
    background: #fff;
    box-shadow: 0 16px 28px rgba(22, 40, 30, 0.05);
}

.gallery-figure img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-figure:first-child img {
    height: 100%;
    min-height: 516px;
}

.gallery-figure figcaption {
    padding: 14px 16px 16px;
    color: var(--report-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.fact-card,
.value-card {
    padding: 22px 22px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(21, 53, 41, 0.05), rgba(21, 53, 41, 0.015));
    border: 1px solid rgba(21, 53, 41, 0.06);
}

.fact-card strong,
.value-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
    color: var(--report-green);
}

.signal-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.signal-list li {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(21, 53, 41, 0.07);
}

.signal-list li strong {
    display: block;
    margin-bottom: 8px;
    color: var(--report-green);
}

.source-card {
    padding: 32px 34px;
    background: linear-gradient(180deg, #fffefb, #f7f3ea);
}

.source-card .source-label {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(196, 155, 90, 0.14);
    color: #7c5a24;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.source-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 24px;
}

.source-grid .meta-item {
    background: rgba(255, 255, 255, 0.82);
}

.source-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--report-green);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.source-link:hover {
    background: var(--report-green-soft);
}

.source-note {
    margin-top: 14px;
    font-size: 0.86rem;
}

.related-card {
    padding: 24px 24px 22px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(22, 40, 30, 0.08);
}

.related-card p {
    margin: 0;
    color: var(--report-muted);
}

.inline-link {
    color: var(--report-green);
    font-weight: 700;
    text-decoration: none;
}

.inline-link:hover {
    color: var(--report-green-soft);
}

@media (max-width: 1100px) {
    .report-hero-grid,
    .fact-grid,
    .value-grid,
    .gallery-grid,
    .source-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .gallery-figure:first-child img {
        min-height: 260px;
    }
}
