.contact-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 180px 20px 100px;
}

.contact-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-sub {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 50px;
}

.contact-desc {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.email-link {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
    transition: opacity 0.3s;
}

    .email-link:hover {
        opacity: 0.8;
    }

.response-info {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #888;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid #222;
    border-radius: 50px;
}

@media (max-width: 900px) {
    .response-info {
        padding: 20px;
    }

        .response-info svg {
            display: none;
        }
}

.social-invite {
    margin-top: 80px;
    text-align: center;
    width: 100%;
}

.social-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 30px;
    display: block;
}

.si-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

    .si-links a {
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border: 1px solid #222;
        border-radius: 50%;
        transition: 0.4s var(--ease-luxury);
        background: rgba(255, 255, 255, 0.01);
    }

        .si-links a:hover {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.05);
            transform: translateY(-3px);
        }

.contact-bottom-grid {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #1a1a1a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    width: 100%;
}

.info-block {
    text-align: center;
}

    .info-block h4 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 20px;
        letter-spacing: 0.05em;
    }

.info-text {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.8;
}

    .info-text a {
        color: #aaa;
        font-weight: 600;
        text-decoration: none;
    }

.anim-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

    .anim-item.active {
        opacity: 1;
        transform: translateY(0);
    }

.d-1 {
    transition-delay: 0.1s;
}

.d-2 {
    transition-delay: 0.2s;
}

.d-3 {
    transition-delay: 0.3s;
}

.d-4 {
    transition-delay: 0.4s;
}

.d-5 {
    transition-delay: 0.5s;
}

.d-6 {
    transition-delay: 0.6s;
}

.d-7 {
    transition-delay: 0.7s;
}

@media (max-width: 768px) {
    .contact-hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .contact-bottom-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        margin-top: 30px;
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .social-invite {
        margin-top: 50px;
    }

    .si-links {
        gap: 5px;
    }
}
