.contact-note {
    position: relative;
    padding: 0 0 clamp(84px, 10vw, 128px);
}

.contact-note::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 250, 247, 0) 0%, rgba(236, 240, 233, 0.42) 50%, rgba(250, 250, 247, 0) 100%);
    pointer-events: none;
}

.contact-note__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: clamp(24px, 3vw, 38px);
    align-items: center;
}

.contact-note__media {
    position: relative;
    overflow: hidden;
    min-height: clamp(360px, 48vw, 560px);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(241, 242, 238, 0.98) 0%, rgba(228, 231, 223, 0.98) 100%);
    box-shadow: 0 28px 82px rgba(31, 35, 32, 0.08);
}

.contact-note__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 18, 16, 0.02) 0%, rgba(15, 18, 16, 0.08) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.contact-note__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-note__content {
    display: flex;
}

.contact-note__panel {
    width: 100%;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(76, 86, 79, 0.12);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 245, 240, 0.94) 100%);
    box-shadow: 0 28px 72px rgba(31, 35, 32, 0.06);
}

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

.contact-note__eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
}

.contact-note__eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(76, 86, 79, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(31, 35, 32, 0.05);
}

.contact-note__title {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2rem, 3.7vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.contact-note__body {
    max-width: 34rem;
    margin: 22px 0 0;
    color: var(--nv-color-text-muted);
    line-height: 1.8;
}

.contact-note__footer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(76, 86, 79, 0.1);
    color: var(--nv-color-primary-strong);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-note__footer-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(76, 86, 79, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
}

.contact-note__footer-mark i {
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .contact-note__shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-note__media,
    .contact-note__panel {
        border-radius: 24px;
    }

    .contact-note__media {
        min-height: 300px;
    }

    .contact-note__panel {
        padding: 24px;
    }

    .contact-note__title {
        max-width: 12ch;
        font-size: clamp(1.9rem, 8vw, 3rem);
    }

    .contact-note__footer {
        align-items: flex-start;
        font-size: 0.72rem;
    }
}
