/* About Us Page - Inheriting Index Design System */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f6fbf5 0%, #f0f6ef 60%, #ffffff 100%);
    padding: clamp(60px, 8vw, 90px) 0 clamp(40px, 6vw, 60px);
    text-align: center;
}

.hero-content-centered {
    max-width: 820px;
    margin: 0 auto;
}

.hero-content-centered h1 {
    font-size: clamp(32px, 4.2vw, 44px);
    line-height: 1.2;
    margin: 12px 0 16px;
    color: var(--herb-900);
}

.hero-content-centered .hero-lede {
    font-size: clamp(16px, 2vw, 18px);
    color: #4b5c49;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto;
}

/* Brand Story Section */
.brand-story {
    background: radial-gradient(circle at 20% 20%, #f5fbf5 0%, #ffffff 55%, #f7fbf7 100%);
}

.story-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-image-card {
    max-width: 520px;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
    background: #f7fbf7;
}

.story-image-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.story-copy {
    max-width: 560px;
}

.story-copy h2 {
    font-size: clamp(28px, 3.6vw, 36px);
    margin: 10px 0 16px;
    color: var(--herb-900);
}

.story-copy p {
    color: #4b5c49;
    line-height: 1.65;
    margin-bottom: 16px;
}

.story-copy p:last-child {
    margin-bottom: 0;
}

/* Local Presence */
.local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.local-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf7 100%);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.local-card h3 {
    margin: 0 0 10px;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--herb-900);
}

.local-card p {
    margin: 0;
    color: #4b5c49;
    line-height: 1.6;
}

/* Why Choose Us - Reusing Index Feature Cards */
.why-us .feature-card {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #e7f1e4;
    color: var(--herb-700);
}

.feature-icon .icon {
    font-size: 32px;
}

/* Mission & Vision Cards */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.mission-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #e7f1e4 0%, #d9eddc 100%);
    color: var(--herb-700);
}

.mission-icon .icon {
    font-size: 36px;
}

.mission-card h3 {
    font-size: clamp(20px, 2.4vw, 24px);
    margin: 12px 0 14px;
    color: var(--herb-900);
}

.mission-card p {
    color: #4b5c49;
    line-height: 1.6;
    margin: 0;
}

.mission-card strong {
    color: var(--herb-700);
}

/* Trust Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--herb-700);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    color: #4b5c49;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
}

/* Values List */
.values-list {
    display: grid;
    gap: 18px;
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
    border-color: #c9dcc5;
}

.value-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #e7f1e4;
    color: var(--herb-700);
}

.value-icon .icon {
    font-size: 28px;
}

.value-content strong {
    display: block;
    font-size: 18px;
    color: var(--herb-900);
    margin-bottom: 6px;
    font-weight: 600;
}

.value-content p {
    margin: 0;
    color: #4b5c49;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: radial-gradient(circle at 20% 20%, #f5fbf5 0%, #ffffff 55%, #f7fbf7 100%);
}

.cta-card {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.cta-card h2 {
    font-size: clamp(28px, 3.6vw, 36px);
    margin: 10px 0 14px;
    color: var(--herb-900);
}

.cta-subtitle {
    color: #4b5c49;
    line-height: 1.65;
    margin-bottom: 24px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.ghost {
    background: transparent;
    border: 2px solid var(--herb-700);
    color: var(--herb-700);
    box-shadow: none;
}

.cta-button.ghost:hover {
    background: var(--herb-700);
    color: #fff;
    border-color: var(--herb-700);
}

/* Responsive Design */
@media (max-width: 760px) {
    .about-hero {
        text-align: center;
    }

    .story-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-copy {
        max-width: 100%;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .hero-content-centered h1 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .value-icon {
        margin: 0 auto;
    }
}
