/* about.css */

/* ── Hero : side-by-side ── */
.about-hero {
    padding: 160px 0 80px;
    background: radial-gradient(circle at top right, var(--primary-light) 0%, var(--bg-alt) 60%);
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    font-weight: var(--weight-extra);
    color: var(--primary-dark);
    letter-spacing: -2px;
    line-height: 1.05;
}

.about-hero h1 span {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--weight-extra);
    display: block;
}

.about-hero-subtitle {
    font-size: 18px;
    font-weight: var(--weight-medium);
    color: var(--primary-blue);
    margin: 16px 0 12px;
    line-height: 1.5;
}

.about-hero-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: var(--weight-normal);
    margin-bottom: 28px;
}

.about-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Photo + citation */
.about-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-img-placeholder {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--surface);
    box-shadow: 0 20px 60px rgba(12, 113, 195, 0.15);
    object-fit: cover;
}

.about-img-placeholder.hero-img-raw {
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    object-fit: contain;
}

.about-hero-quote {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    max-width: 360px;
    box-shadow: var(--shadow-subtle);
    position: relative;
}

.about-hero-quote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 20px;
    font-size: 56px;
    line-height: 1;
    color: var(--primary-blue);
    opacity: 0.25;
    font-family: Georgia, serif;
}

.about-hero-quote p {
    font-size: 15px;
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.6;
    margin: 0 0 12px;
    font-weight: var(--weight-normal);
}

.about-hero-quote footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-hero-quote cite {
    font-size: 15px;
    font-weight: var(--weight-bold);
    color: var(--primary-blue);
    font-style: normal;
}

.about-hero-quote span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Chiffres : cards horizontales sur fond cohérent ── */
.about-chiffres {
    padding: 50px 0;
    background: var(--primary-light);
}

.about-chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-chiffre-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.about-chiffre-card:hover {
    box-shadow: var(--shadow-card);
}

.about-chiffre-value {
    display: block;
    font-size: 32px;
    font-weight: var(--weight-black);
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.about-chiffre-label {
    display: block;
    font-size: 13px;
    font-weight: var(--weight-medium);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Histoire ── */
.about-histoire {
    padding: 80px 0;
    background: var(--bg-alt);
}

.about-histoire-grid {
    max-width: 720px;
}

.about-histoire .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-histoire-intro {
    font-size: 19px;
    font-weight: var(--weight-medium);
    color: var(--primary-blue);
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-histoire-p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: var(--weight-normal);
}

/* ── Valeurs : cards avec numéros ── */
.about-valeurs {
    padding: 80px 0;
    background: var(--primary-light);
}

.about-valeurs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-valeur-card {
    background: var(--surface);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
    position: relative;
}

.about-valeur-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.about-valeur-number {
    font-size: 48px;
    font-weight: var(--weight-black);
    color: var(--primary-blue);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.about-valeur-card h3 {
    font-size: 18px;
    font-weight: var(--weight-bold);
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.about-valeur-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── CTA final ── */
.about-cta {
    padding: 80px 0;
    background: var(--bg-alt);
}

.about-cta-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-card .section-title {
    color: var(--surface);
    margin-bottom: 12px;
}

.about-cta-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: var(--weight-normal);
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-cta-card .btn-primary {
    background: var(--surface);
    color: var(--primary-dark);
}

.about-cta-card .btn-primary:hover {
    background: var(--primary-light);
}

.about-cta-card .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--surface);
}

.about-cta-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--surface);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .about-hero-ctas { justify-content: center; }
    .about-hero-visual { order: -1; }
    .about-hero-quote { margin: 0 auto; }
    .about-img-placeholder { max-width: 260px; }
    .about-valeurs-grid { grid-template-columns: 1fr; }
    .about-chiffres-grid { grid-template-columns: repeat(2, 1fr); }
    .about-histoire .section-title { text-align: center; }
    .about-histoire-grid { margin: 0 auto; }
}

@media (max-width: 640px) {
    .about-hero { padding: 120px 0 40px; }
    .about-histoire, .about-valeurs, .about-cta { padding: 50px 0; }
    .about-chiffres { padding: 32px 0; }
    .about-chiffres-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .about-chiffre-card { padding: 20px 12px; }
    .about-chiffre-value { font-size: 26px; }
    .about-valeur-card { padding: 24px; }
    .about-valeur-number { font-size: 36px; }
    .about-cta-card { padding: 40px 24px; }
    .about-hero-quote { max-width: 100%; }
}
