/* ============================================
   About Page Styles
   ============================================ */

.ck-header {
    background: white;
    border-bottom: 1px solid var(--gray-100);
}
.ck-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* Hero */
.about-hero-banner {
    height: 340px;
    border-radius: 0;
}
.about-overlay {
    background: rgba(0,0,0,.5);
}
.about-overlay h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.about-tagline {
    font-size: 1.15rem;
    opacity: .9;
    text-shadow: 0 2px 6px rgba(0,0,0,.4);
    max-width: 500px;
    margin: 0 auto;
}

/* Sections */
.about-section {
    padding: 64px 0;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray-800);
}

/* Story Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 20px;
}
.about-text p {
    font-size: .95rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-text strong {
    color: var(--green-600);
}

.about-stats-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-stat {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .2s;
}
.about-stat:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-600);
    margin-bottom: 4px;
}
.about-stat span {
    font-size: .82rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.value-card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all .2s;
}
.value-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.value-icon {
    width: 52px; height: 52px;
    background: var(--green-50);
    color: var(--green-600);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}
.value-card p {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* CTA */
.about-cta { padding: 0; }
.about-cta-banner {
    height: 280px;
    border-radius: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .about-overlay h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
    .about-hero-banner { height: 240px; }
    .about-overlay h1 { font-size: 1.6rem; }
    .about-stats-col { grid-template-columns: 1fr; }
}
