.about {
    background-color: var(--white);
    padding: 6rem 0 5rem;
    border-top: 1px solid rgba(184, 151, 58, 0.08);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-heading {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--ink);
}

.about-heading span {
    color: var(--gold);
    font-weight: 700;
}

.about-text {
    font-size: 1.2rem;
    color: var(--stone);
    line-height: 1.9;
    letter-spacing: 0.3px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0 3rem;
    }

    .about-heading {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .about-text {
        font-size: 1.05rem;
        line-height: 1.75;
    }
}