/* Quiénes somos — historia y fundadores */
.about-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark, #a68b4b);
    margin-bottom: 0.75rem;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--gray-600, #6b6b6b);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-body {
    color: var(--gray-600, #6b6b6b);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--black, #0a0a0a);
}

.about-highlights i {
    color: var(--gold, #c9a962);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.founders-photo-card {
    margin: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    background: var(--black, #0a0a0a);
    box-shadow: 0 24px 60px rgba(10, 10, 10, 0.18);
    border: 1px solid rgba(201, 169, 98, 0.25);
}

.founders-photo-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.founders-photo-placeholder {
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 55%, #1f1a12 100%);
    color: rgba(255, 255, 255, 0.75);
}

.founders-photo-initials {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 600;
    color: var(--gold, #c9a962);
    line-height: 1;
}

.founders-photo-hint {
    opacity: 0.65;
    max-width: 280px;
}

.founders-photo-hint code {
    font-size: 0.7rem;
    color: var(--gold-light, #e8d5a3);
    word-break: break-all;
}

.founders-photo-caption {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.25rem;
    background: var(--black-soft, #141414);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.founders-photo-caption strong {
    color: var(--gold-light, #e8d5a3);
    font-weight: 600;
}

.founders-photo-caption span {
    font-size: 0.8rem;
    opacity: 0.75;
}

.founders-quote-card {
    position: relative;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 1.25rem;
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #e8e8e6);
    box-shadow: 0 12px 40px rgba(10, 10, 10, 0.06);
}

.founders-quote-icon {
    font-size: 2.5rem;
    color: var(--gold, #c9a962);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.founders-quote-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600, #6b6b6b);
}

.about-value-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 10, 10, 0.08);
}

@media (max-width: 991.98px) {
    .about-story .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }

    .founders-photo-card {
        max-width: 420px;
        margin-inline: auto;
    }
}
