/* ── About Page ──────────────────────────────────────────────────────────── */

/* ── Story Section ───────────────────────────────────────────────────────── */

.about-story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-story__media {
    position: relative;
}

.about-story__img-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-story__img-placeholder {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-story__img-placeholder svg {
    width: 100%;
    height: 100%;
}

.about-story__badge {
    position: absolute;
    bottom: var(--space-6);
    right: calc(-1 * var(--space-6));
    background-color: var(--navy-900);
    color: #ffffff;
    padding: var(--space-5) var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 120px;
}

.about-story__badge-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--weight-extrabold);
    color: var(--teal);
    line-height: 1;
}

.about-story__badge-label {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-top: var(--space-1);
    color: rgba(255,255,255,0.8);
}

.about-story__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.about-story__h2 {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: var(--navy-900);
    letter-spacing: var(--tracking-tight);
    margin: 0;
    line-height: 1.2;
}

.about-story__body {
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
}

.about-story__body p {
    margin-bottom: var(--space-4);
}

.about-story__body p:last-child {
    margin-bottom: 0;
}

/* ── Process Section ─────────────────────────────────────────────────────── */

.section--process .section__header {
    margin-bottom: var(--space-12);
}

.section--process .section__header h2 {
    font-size: var(--text-3xl);
    font-weight: var(--weight-extrabold);
    color: var(--navy-900);
    max-width: 700px;
    margin: 0 auto var(--space-3);
}

.section--process .section__subtitle {
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    max-width: 560px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.process-card {
    background: #ffffff;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.process-card__icon {
    width: 56px;
    height: 56px;
    background: var(--navy-900);
    color: #ffffff;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.process-card__step {
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    color: var(--teal);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.process-card__title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--navy-900);
    margin: 0 0 var(--space-3);
}

.process-card__desc {
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    margin: 0;
    font-size: var(--text-sm);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .about-story__badge {
        right: var(--space-4);
    }
}

@media (max-width: 768px) {
    .about-story__inner {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .about-story__badge {
        bottom: var(--space-4);
        right: var(--space-4);
    }

    .about-story__h2 {
        font-size: var(--text-3xl);
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}
