.hero--dave {
    position: relative;
    max-width: none;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    background-image: url("/assets/images/hero.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 10, 8, 0.94) 0%, rgba(11, 10, 8, 0.75) 42%, rgba(11, 10, 8, 0.15) 70%, rgba(11, 10, 8, 0.05) 100%),
        linear-gradient(0deg, rgba(11, 10, 8, 0.55) 0%, transparent 40%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 90px 24px;
    text-align: left;
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 18px;
}

.hero__title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 700;
    max-width: 12ch;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.85);
}

.hero__lede {
    color: #ece4d4;
    font-size: 1.2rem;
    max-width: 46ch;
    margin: 22px 0 30px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.9);
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__note {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 24px;
}

.evidence__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}

.evidence-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.evidence-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.evidence-card__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.evidence-card__play {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: block;
}

.evidence-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: saturate(0.9) brightness(0.92);
}

.evidence-card__play:hover .evidence-card__thumb { transform: scale(1.05); filter: saturate(1) brightness(1); }

.evidence-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.evidence-card__title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}

.evidence-card__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.evidence__disclaimer {
    max-width: var(--max-width);
    margin: 34px auto 0;
    padding: 0 24px;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

@media (max-width: 760px) {
    .hero--dave { min-height: 64vh; }
    .hero__overlay {
        background:
            linear-gradient(0deg, rgba(11, 10, 8, 0.96) 0%, rgba(11, 10, 8, 0.55) 55%, rgba(11, 10, 8, 0.25) 100%);
    }
    .hero__inner { padding: 70px 24px; }
}
