/* ── About / Quiénes Somos ────────────────────────────────── */

.about__intro {
    margin-bottom: var(--space-16);
    gap: var(--space-12);
}

/* Image */
.about__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    background: #0D0D12;
}

/* Cross motif inside placeholder */
.about__image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(200,146,10,.20) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(255,255,255,.06) 0%, transparent 50%);
    pointer-events: none;
}

.about__image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    object-fit: contain;
    display: block;
    padding: 12px;
}

/* Year badge on the image */
.about__image-badge {
    position: absolute;
    bottom: -var(--space-4);
    right: -var(--space-4);
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-6);
    text-align: center;
    box-shadow: var(--shadow-lg);
    bottom: -16px;
    right: -16px;
}

.about__image-badge__year {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1;
}

.about__image-badge__text {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Text column */
.about__lead {
    font-family: var(--font-display);
    font-size: clamp(var(--text-base), 2.8vw, var(--text-xl));
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.75;
    margin-bottom: var(--space-4);
    font-style: italic;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* MVV Cards */
.about__cards { margin-bottom: var(--space-12); }

.about__card {
    padding: var(--space-8);
    text-align: center;
}

.about__card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-6);
    color: var(--color-gold);
}

.about__card__icon svg {
    width: 100%;
    height: 100%;
}

.about__card h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.about__card p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: var(--text-sm);
}

/* Values strip */
.about__values-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-8) var(--space-6);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200,146,10,.2);
}

.about__value {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
}

.about__value-sep {
    color: var(--color-gold);
    font-size: var(--text-2xl);
    line-height: 1;
    font-weight: 300;
}

@media (min-width: 768px) {
    .about__image-badge { bottom: -16px; right: -16px; }
}
