.about {
    padding: 120px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-left {
    flex: 1;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-ghost-number {
    position: absolute;
    top: -60px;
    left: -20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 220px;
    font-weight: 300;
    color: var(--text);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.about-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 24px;
    display: block;
}

.about-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 20px;
}

.about-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.about-callout {
    border-left: 3px solid var(--secondary);
    padding: 24px 28px;
    background: rgba(184, 134, 11, 0.04);
    position: relative;
}

.about-callout .callout-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--secondary);
    line-height: 1;
    position: absolute;
    top: 12px;
    left: 28px;
    opacity: 0.3;
}

.about-callout p {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    padding-top: 8px;
}

/* Close the responsive gap between 900–968px */
@media (max-width: 968px) {
    .about-container {
        flex-wrap: wrap;
    }

    .about-left,
    .about-right {
        flex: 1 1 100%;
    }
}