.about-hero {
    background: linear-gradient(135deg, #fdf0dc 0%, #f5e4c0 50%, #eeddb0 100%);
    border-bottom: 1px solid var(--color-border);
    padding: 80px 32px;
}

.about-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-badge {
    display: inline-block;
    background: rgba(198,161,91,0.18);
    border: 1px solid rgba(198,161,91,0.35);
    color: var(--color-primary-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 18px;
    line-height: 1.1;
}

.about-hero p {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
}

.about-content { padding: 64px 0; }

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary-text);
    margin-bottom: 12px;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 20px;
    line-height: 1.15;
}

.about-story-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin: 0 0 16px;
}

.about-story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: 0.25s;
}

.stat-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #c6a15b, #8e6b2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.about-values h2, .about-team h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 32px;
    line-height: 1.15;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    padding: 28px 22px;
    transition: 0.25s;
    box-shadow: var(--shadow-soft);
}

.value-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #c6a15b, #8e6b2e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 10px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    padding: 32px 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: 0.25s;
}

.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }

.team-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #c6a15b, #8e6b2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin: 0 auto 16px;
}

.team-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}

.team-role {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 960px) {
    .about-story { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .values-grid, .team-grid { grid-template-columns: 1fr; }
    .about-inner { padding: 0 16px; gap: 48px; }
}
