

.about-hero {
    height: 60vh;
    background: url('images/beautiful-engagement-ring-with-diamonds.webp') center/cover fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-content {
    padding: 100px 20px;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.text-side {
    flex: 1;
}

.text-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin: 20px 0;
    font-weight: 400;
}

.text-side p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.image-side {
    flex: 1;
    overflow: hidden;
}

.image-side img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1s ease;
}

.image-side:hover img {
    transform: scale(1.05);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.value-item h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

.value-item p {
    font-size: 13px;
    line-height: 1.5;
}


.quote-section {
    padding: 120px 20px;
    background: #080808;
    text-align: center;
}

.big-quote {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.4;
    color: #fff;
}

.author {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 12px;
}


@media (max-width: 992px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .big-quote {
        font-size: 28px;
    }
    .image-side img {
        height: 350px;
    }
}