/* Make nav brand a link without losing its look */
.nav-brand {
    text-decoration: none;
}

.nav-link--active {
    color: #1a1a1a;
}

.nav-link--active::after {
    width: 100%;
}

/* Hero */
.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    text-align: center;
}

.about-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
}

.about-subtitle {
    font-size: 1.375rem;
    color: #555;
    font-weight: 400;
}

/* Studio blurb */
.about-studio {
    padding: 100px 0 0;
    background: #ffffff;
}

.about-studio-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.about-studio-text {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 400;
}

.about-studio-text:last-child {
    margin-bottom: 0;
}

/* Team */
.about-team {
    padding: 100px 0 140px;
    background: #ffffff;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 56px;
    max-width: 820px;
    margin: 0 auto;
    background: #fcfcfc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 56px;
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.team-name {
    font-size: 1.625rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7a9b57;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.team-bio {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-inline-link {
    color: #7a9b57;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.about-inline-link:hover {
    color: #5a7a3a;
}

.about-link {
    display: inline-block;
    padding: 10px 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    letter-spacing: -0.01em;
}

.about-link:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 80px;
    }

    .about-studio,
    .about-team {
        padding: 80px 0;
    }

    .about-team {
        padding-bottom: 100px;
    }

    .team-card {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 40px 32px;
    }
}
