/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* ── Page Hero ─────────────────────────────────────────────────────────────── */
.page-hero {
    padding: var(--space-xl) 0 var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.page-hero__content {
    max-width: 700px;
}

.page-hero__breadcrumb {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.55);
    margin-bottom: var(--space-sm);
}

.page-hero__breadcrumb a {
    color: var(--color-accent-light);
}

.page-hero__title {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.page-hero__desc {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* ── Story Section ─────────────────────────────────────────────────────────── */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .about-story {
        grid-template-columns: 1fr 1fr;
    }
}

.about-story__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-hover);
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__text .section-header {
    text-align: left;
}

.about-story__text .section-header__title {
    margin-bottom: var(--space-sm);
}

.about-story__text p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
}

/* Accent quote */
.about-quote {
    border-left: 4px solid var(--color-accent);
    padding: var(--space-sm) var(--space-md);
    background-color: rgba(200,149,108,0.06);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin: var(--space-md) 0;
}

.about-quote p {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-style: italic;
    color: var(--color-primary);
    margin: 0;
}

/* ── Team Section ──────────────────────────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 500px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    text-align: center;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

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

.team-card__photo {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-light-gray);
    position: relative;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-card__photo img {
    transform: scale(1.05);
}

/* Placeholder avatar */
.team-card__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(27,42,74,0.25);
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-light-gray) 100%);
}

.team-card__body {
    padding: var(--space-md);
}

.team-card__name {
    font-size: var(--font-size-xl);
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-size: var(--font-size-sm);
    color: var(--color-accent-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-sm);
}

.team-card__langs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    justify-content: center;
}

.team-card__lang {
    font-size: 0.75rem;
    background-color: rgba(27,42,74,0.08);
    color: var(--color-primary);
    padding: 0.2rem 0.625rem;
    border-radius: 100px;
    font-weight: 500;
}

/* ── Credentials ─────────────────────────────────────────────────────────── */
.credentials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

@media (min-width: 600px) {
    .credentials-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.credential-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    padding: var(--space-sm);
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.credential-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(200,149,108,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-dark);
}

.credential-item__icon svg { width: 20px; height: 20px; }

.credential-item__text strong {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    margin-bottom: 2px;
}

.credential-item__text span {
    font-size: 0.8125rem;
    color: var(--color-mid-gray);
}

/* ── Our Promise ──────────────────────────────────────────────────────────── */
.promise-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.promise-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: var(--font-heading);
    font-size: 15rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
}

.promise-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.promise-section p {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto var(--space-md);
    line-height: 1.8;
}

.promise-section .section-header__subtitle {
    color: var(--color-accent-light);
}
