/* ============================================================
   ABOUT PAGE — about.css
   ============================================================ */

/* ── Hero ── */
.about-hero {
    background: var(--color-bg);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.about-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero__eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 16px;
}

.about-hero__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin: 0 0 24px;
    color: var(--color-secondary-dark);
    line-height: 1.1;
}

.about-hero__lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
}

/* ── Content ── */
.about-content {
    padding-top: 60px;
}

.about-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.about-card--highlight {
    background: linear-gradient(145deg, #fff 0%, #fcfbf9 100%);
    border: 1px solid rgba(104, 135, 69, 0.1);
}

.about-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.about-card__icon {
    font-size: 32px;
    background: var(--color-bg);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.about-card__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--color-secondary-dark);
}

.about-card__body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.about-card__body p:last-child {
    margin-bottom: 0;
}

.about-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--color-secondary-dark);
    font-weight: 500;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 800;
}

/* ── Vision ── */
.about-vision {
    margin-top: 80px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px;
    background: var(--color-secondary-dark);
    color: #fff;
    border-radius: 32px;
}

.about-vision__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--color-primary-light);
}

.about-vision__text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}