/* ==========================================================================
   Hero — Contact Us
   ========================================================================== */
.hero {
    background: url('../assets/img/contact-hero-bg.png') center / cover no-repeat;
}

/* top shading (bottom shading comes from the global .hero::after) */
.hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100px;
    rotate: 180deg;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

/* right shading */
.hero__overlay {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 500px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

/* stack title over the cards */
.hero__bottom {
    flex-direction: column;
    align-items: flex-start;
}

.contact__title {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 80px;
    line-height: 84%;
    letter-spacing: -0.03em;
    color: #fff;
}

/* --- cards --- */
.contact__cards {
    display: flex;
    gap: 12px;
    width: 100%;
}

.contact-card {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    max-width: 411px;
    width: 100%;
    height: 223px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px);
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(40px);
}

.contact-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.contact-card__label {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.5);
}

.contact-card__arrow {
    flex-shrink: 0;
    line-height: 0;
    transition: transform 0.3s ease;
}

.contact-card__value {
    font-weight: 400;
    font-size: 30px;
    line-height: 93%;
    letter-spacing: -0.03em;
    color: #fff;
}

/* arrow flies up-right when a linked card is hovered */
a.contact-card:hover .contact-card__arrow {
    transform: translate(4px, -4px);
}