.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── Contact Hero (exact mockup layout) ── */
.contact-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.contact-hero__pie {
    position: absolute;
    top: -2.5rem;
    right: -2rem;
    width: clamp(10rem, 18vw, 14rem);
    height: clamp(10rem, 18vw, 14rem);
    border-radius: 50%;
    background: conic-gradient(from 200deg, #f39200 0deg 280deg, rgba(243, 146, 0, 0.35) 280deg 360deg);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.contact-hero__shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 78rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-hero__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(2rem, 4vw, 4rem);
    }
}

/* Right column — copy */
.contact-hero__copy {
    max-width: 36rem;
}

@media (min-width: 1024px) {
    .contact-hero__copy {
        justify-self: end;
    }
}

.contact-hero__crumb {
    margin: 0 0 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.contact-hero__crumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-hero__crumb a:hover {
    color: #f39200;
}

.contact-hero__title {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #111827;
}

.contact-hero__title span {
    color: #f39200;
}

.contact-hero__lead {
    margin: 1.5rem 0 0;
    max-width: 30rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #6b7280;
}

.contact-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.25rem;
    padding: 0.95rem 1.65rem 0.95rem 1.75rem;
    border-radius: 999px;
    background: #f39200;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 4px 5px 0 #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-hero__cta:hover {
    background: #ffab2e;
    transform: translate(-1px, -1px);
    box-shadow: 5px 6px 0 #111827;
}

.contact-hero__cta-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    background: transparent;
}

.contact-hero__cta-check .material-symbols-outlined {
    font-size: 0.95rem;
}

/* Left column — hero visual */
.contact-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: clamp(20rem, 38vw, 30rem);
}

@media (min-width: 1024px) {
    .contact-hero__visual {
        justify-content: flex-start;
        align-items: center;
        min-height: clamp(24rem, 42vw, 34rem);
    }
}

.contact-hero__figure--composite {
    margin: 0;
    width: min(100%, 480px);
    line-height: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.contact-hero__figure--composite img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: contrast(1.03) saturate(1.05);
}

@media (max-width: 1023px) {
    .contact-hero__copy {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero__cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero__pie {
        width: 8rem;
        height: 8rem;
        top: -1rem;
        right: -1rem;
    }

    .contact-hero__figure--composite {
        max-width: 100%;
    }
}
