/* ===== About Hero ===== */
.about-hero {
    padding: 10rem 0 6rem;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-image {
    overflow: hidden;
}
.about-hero-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.about-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.about-hero-text p {
    color: var(--color-text_muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 440px;
}

/* ===== Story ===== */
.story-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.story-content {
    max-width: 680px;
}

.story-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 2rem;
}

.story-text {
    color: var(--color-text_muted);
    font-size: 1rem;
    line-height: 1.8;
    white-space: pre-line;
}

/* ===== Approach ===== */
.approach-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(232, 228, 223, 0.08);
    background: var(--color-surface);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.approach-card {
    padding: 2rem;
    border: 1px solid rgba(232, 228, 223, 0.08);
    transition: border-color 0.3s;
}
.approach-card:hover { border-color: rgba(232, 228, 223, 0.2); }

.approach-num {
    font-family: var(--font-heading), 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--color-accent);
    opacity: 0.35;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.approach-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.approach-card p {
    font-size: 0.9375rem;
    color: var(--color-text_muted);
    line-height: 1.65;
}

/* ===== Clients ===== */
.clients-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(232, 228, 223, 0.08);
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
}

.client-name {
    font-family: var(--font-heading), 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--color-text_muted);
    transition: color 0.3s;
}
.client-name:hover { color: var(--color-text); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .about-hero { padding: 8rem 0 4rem; }
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .story-section, .approach-section, .clients-section { padding: 4rem 0; }
}
