.field-notes-hero {
    padding: 28px 0 22px;
}

.field-notes-hero__frame {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 242, 0.96) 100%);
    box-shadow: 0 24px 68px rgba(15, 23, 32, 0.06);
}

.field-notes-hero__copy {
    max-width: 480px;
}

.field-notes-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0 0 16px;
    padding: 0 14px;
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 999px;
    color: rgba(22, 32, 42, 0.56);
    background: rgba(255, 255, 255, 0.74);
    font-family: var(--nv-font-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.field-notes-hero__title {
    max-width: 10ch;
    margin: 0;
    color: #16202a;
    font-family: var(--nv-font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.field-notes-hero__intro {
    max-width: 34ch;
    margin: 18px 0 0;
    color: rgba(22, 32, 42, 0.68);
    font-family: var(--nv-font-body);
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
    line-height: 1.74;
}

.field-notes-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 44px;
    margin-top: 22px;
    padding: 0 18px;
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 999px;
    color: #16202a;
    background: rgba(255, 255, 255, 0.86);
    font-family: var(--nv-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.field-notes-hero__cta:hover,
.field-notes-hero__cta:focus-visible {
    border-color: rgba(33, 69, 59, 0.22);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-1px);
}

.field-notes-hero__media {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(240, 238, 232, 0.8);
}

.field-notes-hero__media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

@media (max-width: 991px) {
    .field-notes-hero__frame {
        grid-template-columns: 1fr;
    }

    .field-notes-hero__copy {
        max-width: 560px;
    }

    .field-notes-hero__title {
        max-width: none;
        font-size: clamp(2.45rem, 8vw, 4rem);
    }
}

@media (max-width: 575px) {
    .field-notes-hero {
        padding-top: 22px;
    }

    .field-notes-hero__frame {
        gap: 22px;
        padding: 20px;
        border-radius: 26px;
    }

    .field-notes-hero__eyebrow {
        min-height: 32px;
        padding: 0 12px;
        font-size: 0.7rem;
    }

    .field-notes-hero__title {
        font-size: 2.3rem;
    }

    .field-notes-hero__intro {
        margin-top: 14px;
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .field-notes-hero__cta {
        min-height: 42px;
        margin-top: 18px;
        padding: 0 16px;
        font-size: 0.84rem;
    }

    .field-notes-hero__media {
        border-radius: 22px;
    }

    .field-notes-hero__media img {
        aspect-ratio: 5 / 6;
    }
}
