.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-grid {
    align-items: start;
}

.about-top-badge {
    display: inline-block;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-highlight {
    color: var(--gold);
}

.about-text p {
    color: rgba(250, 250, 250, 0.75);
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    max-width: 38rem;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.about-stat-item {
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 1.4rem;
    border-radius: 20px;
    background: rgba(250, 250, 250, 0.02);
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(250, 250, 250, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.1), rgba(13, 13, 13, 0.95));
}

.about-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100%;
    min-height: 460px;
    transition: transform 0.6s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.03);
}

.about-overlay-card {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(14, 14, 14, 0.96);
    border: 1px solid rgba(255, 206, 94, 0.24);
    border-radius: 22px;
    padding: 1rem 1.3rem;
    width: 190px;
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.25);
}

.overlay-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.overlay-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.overlay-label {
    font-size: 0.82rem;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.5;
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-img-wrap img {
        min-height: 320px;
    }
    .about-hero-actions {
        justify-content: flex-start;
    }
}