.mc-hero {
    --hero-paper: #f7f8fa;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: min(760px, calc(100svh - 110px));
    min-height: 620px;
    background: var(--hero-paper);
    letter-spacing: 0;
}

.mc-hero-art {
    position: absolute;
    inset: 40px 0 0;
    width: min(100%, 1680px);
    margin-inline: auto;
    z-index: -3;
    animation: mc-architecture-reveal 1.2s ease-out both;
}

.mc-hero-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

.mc-hero-wash {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(0deg, var(--hero-paper), transparent 18%, transparent 78%, var(--hero-paper)),
        linear-gradient(90deg, var(--hero-paper) 8%, #f7f8faf5 27%, #f7f8fa80 44%, transparent 61%, transparent 92%, var(--hero-paper));
}

.mc-hero-content {
    width: 100%;
    padding-top: 48px;
    padding-bottom: 24px;
}

.mc-hero-copy {
    max-width: 480px;
    animation: mc-copy-reveal 0.8s ease-out both;
}

.mc-hero-eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-teal-700, #0b5e70);
}

.mc-hero h1 {
    margin: 0 0 24px;
    font-size: 64px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--color-gray-900, #0b2545);
}

.mc-hero-promise {
    margin-bottom: 22px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-gray-900, #0b2545);
}

.mc-hero-promise span {
    color: var(--color-brand-700, #1a41b0);
}

.mc-hero-description {
    max-width: 370px;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-gray-600, #49525e);
}

.mc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mc-hero-actions a {
    min-height: 48px;
    justify-content: center;
    font-size: 14px;
}

.mc-hero-actions a:focus-visible {
    outline: 3px solid var(--color-teal-600, #0e7388);
    outline-offset: 4px;
}

.mc-hero-caption {
    position: absolute;
    bottom: 28px;
    right: max(24px, calc((100% - 1104px) / 2));
    font-size: 10px;
    font-weight: 700;
    color: var(--color-gray-500, #6a7480);
}

.mc-hero-caption span {
    padding-inline: 10px;
    color: var(--color-teal-600, #0e7388);
}

@keyframes mc-architecture-reveal {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes mc-copy-reveal {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
    .mc-hero-art {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .mc-hero-art img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        -webkit-mask-image:
            linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent),
            linear-gradient(0deg, transparent, #000 12%, #000 88%, transparent);
        -webkit-mask-composite: source-in;
        mask-image:
            linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent),
            linear-gradient(0deg, transparent, #000 12%, #000 88%, transparent);
        mask-composite: intersect;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .mc-hero-copy { max-width: 365px; }
    .mc-hero h1 { font-size: 52px; }
    .mc-hero-promise { font-size: 25px; }
    .mc-hero-description { max-width: 310px; font-size: 16px; }
    .mc-hero-art { inset-inline: -6%; width: 112%; max-width: none; }
}

@media (max-width: 767px) {
    .mc-hero {
        height: auto;
        min-height: 0;
        display: block;
        padding-top: 94px;
        padding-bottom: 265px;
    }
    .mc-hero-content { padding-top: 0; padding-bottom: 0; }
    .mc-hero-copy { max-width: 480px; margin-inline: auto; }
    .mc-hero-eyebrow { margin-bottom: 10px; font-size: 11px; }
    .mc-hero h1 { margin-bottom: 14px; font-size: 44px; }
    .mc-hero-promise { margin-bottom: 14px; font-size: 23px; line-height: 1.3; }
    .mc-hero-description { margin-bottom: 18px; max-width: 360px; font-size: 14px; line-height: 1.6; }
    .mc-hero-actions { gap: 8px; }
    .mc-hero-actions a { padding: 12px 16px; font-size: 13px; }
    .mc-hero-art { inset: auto 0 0; width: 100%; height: 275px; }
    .mc-hero-art img { object-position: center; }
    .mc-hero-wash {
        background:
            linear-gradient(0deg, var(--hero-paper), transparent 10%, transparent 30%, var(--hero-paper) 43%),
            linear-gradient(90deg, var(--hero-paper), transparent 18%, transparent 82%, var(--hero-paper));
    }
    .mc-hero-caption { bottom: 12px; right: 0; width: 100%; text-align: center; font-size: 8px; }
    .mc-hero + section { padding-top: 32px; }
}

@media (max-width: 767px) and (max-height: 740px) {
    .mc-hero { padding-top: 82px; padding-bottom: 205px; }
    .mc-hero-art { height: 215px; }
    .mc-hero h1 { font-size: 40px; margin-bottom: 10px; }
    .mc-hero-promise { font-size: 21px; margin-bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .mc-hero-art, .mc-hero-copy { animation: none; }
}