.journal-hero {
    position: relative;
    padding: clamp(28px, 4vw, 44px) 0 clamp(52px, 8vw, 88px);
}

.journal-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: 0;
    height: clamp(200px, 24vw, 280px);
    background:
        radial-gradient(circle at top left, rgba(95, 107, 99, 0.08) 0%, rgba(95, 107, 99, 0) 42%),
        linear-gradient(180deg, rgba(232, 236, 229, 0.54) 0%, rgba(232, 236, 229, 0) 100%);
    pointer-events: none;
}

.journal-hero__intro-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    margin-bottom: clamp(22px, 3vw, 30px);
}

.journal-hero__intro-copy {
    max-width: 34rem;
}

.journal-hero__stage {
    position: relative;
    z-index: 1;
    min-height: clamp(560px, 72svh, 700px);
    overflow: hidden;
    border-radius: 36px;
    box-shadow: var(--nv-shadow-card);
}

.journal-hero__media {
    position: absolute;
    inset: 0;
    margin: 0;
    background: var(--nv-color-surface);
}

.journal-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 19, 17, 0.06) 0%, rgba(16, 19, 17, 0.16) 56%, rgba(16, 19, 17, 0.58) 100%),
        linear-gradient(90deg, rgba(16, 19, 17, 0.36) 0%, rgba(16, 19, 17, 0.08) 42%, rgba(16, 19, 17, 0.16) 100%);
    z-index: 1;
}

.journal-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--nv-color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.journal-hero__eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
}

.journal-hero__title {
    max-width: 7ch;
    margin: 0;
    color: #f7f8f4;
    font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
    font-size: clamp(3.8rem, 7vw, 6.2rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-wrap: balance;
    text-shadow: 0 16px 36px rgba(16, 19, 17, 0.22);
}

.journal-hero__title-wrap {
    position: relative;
    z-index: 2;
    max-width: 44rem;
    padding: clamp(26px, 4vw, 44px);
    display: flex;
    align-items: flex-end;
    min-height: inherit;
}

.journal-hero__intro {
    margin: 0;
    color: var(--nv-color-text-muted);
    font-size: 0.96rem;
    line-height: 1.76;
}

.journal-hero__actions {
    margin-top: 0;
}

.journal-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid rgba(76, 86, 79, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--nv-color-primary-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(31, 35, 32, 0.06);
}

.journal-hero__media::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    z-index: 1;
    pointer-events: none;
}

.journal-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.94) contrast(0.98);
}

@media (max-width: 991px) {
    .journal-hero__intro-row {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .journal-hero__stage {
        min-height: 520px;
    }
}

@media (max-width: 767px) {
    .journal-hero {
        padding-top: 20px;
    }

    .journal-hero__title {
        max-width: 8ch;
        font-size: clamp(3rem, 14vw, 4.8rem);
        line-height: 0.94;
    }

    .journal-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .journal-hero__media {
        min-height: 320px;
        border-radius: 24px;
    }

    .journal-hero__media::before {
        inset: 10px;
        border-radius: 18px;
    }

    .journal-hero__title-wrap {
        padding: 20px;
    }
}
