body{visibility:visible}
/* about.css — design system identique à index */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-y: scroll; scroll-behavior: smooth; }

body {
    background-color: #faf7f2;
    color: #1d1510;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { text-decoration: none; color: inherit; }

/* ── HEADER ─────────────────────────────────── */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: #faf7f2;
    border-bottom: 1px solid #e8ddd0;
    box-shadow: 0 1px 20px rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 50px;
    box-sizing: border-box;
}

header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8962e 30%, #e8c84a 50%, #b8962e 70%, transparent);
}

.real img {
    height: 54px; width: auto; display: block;
    transition: transform 0.3s ease;
}
.real img:hover { transform: scale(1.04); }

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
    font-family: Arial, sans-serif;
    font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.8px;
    color: #3a3a3a;
    padding: 8px 14px;
    border-radius: 4px;
    position: relative;
    transition: color 0.25s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 0; height: 1.5px;
    background: #b8962e;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav a:hover, .nav a.active { color: #b8962e; }
.nav a:hover::after, .nav a.active::after { width: 65%; }

.lang-selector {
    position: relative; display: inline-block;
    padding: 8px 14px; cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 1.8px; color: #b8962e;
}

.lang-dropdown {
    display: none;
    position: absolute;
    background: #faf7f2;
    border: 1px solid #e8e0ce;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    top: calc(100% + 4px); left: 0;
    min-width: 56px; border-radius: 4px; z-index: 1001;
}

.lang-dropdown a {
    display: block; padding: 8px 12px;
    color: #3a3a3a; font-size: 0.75rem;
    font-weight: 600; letter-spacing: 1.5px;
    text-align: center; transition: background 0.2s, color 0.2s;
}
.lang-dropdown a:hover { background: #b8962e; color: #fff; }
.lang-selector:hover .lang-dropdown { display: block; }

.hamburger {
    display: none; flex-direction: column;
    cursor: pointer; z-index: 1001; gap: 5px;
}
.hamburger span {
    width: 26px; height: 2px;
    background: #1a1208; border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px,7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ── MAIN ────────────────────────────────────── */
main { flex: 1; padding-top: 82px; }

/* ══ HERO ════════════════════════════════════ */
.hero {
    background: #faf7f2;
    padding: 72px 80px 80px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-eyebrow {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6e6e73;
    margin-bottom: 20px;
}

.hero-name {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-rule {
    width: 40px; height: 2px;
    background: #1d1d1f;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero-tagline {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    font-weight: 400;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    align-items: flex-start;
    padding-top: 28px;
    border-top: 1px solid #e8ddd0;
}

.hero-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-stat-val {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    line-height: 1;
}

.hero-stat-val sup {
    font-size: 0.9rem;
    color: #6e6e73;
    vertical-align: super;
}

.hero-stat-lbl {
    font-family: Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9a9080;
    line-height: 1.5;
}

.hero-stat-sep {
    width: 1px; height: 40px;
    background: #e8ddd0;
    margin: 0 22px;
    flex-shrink: 0;
    align-self: center;
}

.hero-right {
    position: relative;
    width: 320px; height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: #f2ede4;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

.hero-right img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 18px;
    background: rgba(250,247,242,.92);
    border-top: 1px solid #e8ddd0;
    font-family: Arial, sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9a9080;
    text-align: center;
}

/* ══ INTRO ═══════════════════════════════════ */
.profil-intro {
    background: #f2ede4;
    padding: 72px 80px;
    text-align: center;
}

.profil-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profil-intro p {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: #3a3020;
    line-height: 1.8;
    font-weight: 400;
}

.profil-intro p + p { color: #6e6e73; font-size: clamp(1rem, 1.5vw, 1.15rem); }

.profil-intro strong { color: #1d1510; font-weight: 600; }

/* ══ SECTIONS ════════════════════════════════ */
.profil-wrap {
    background: #faf7f2;
    padding: 20px 0 60px;
}

.profil-section {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0 56px;
    padding: 60px 80px;
    border-bottom: 1px solid #f0ebe0;
}

.profil-section:last-child { border-bottom: none; }

.profil-head { padding-top: 4px; }

.profil-num {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b8962e;
    margin-bottom: 12px;
}

.profil-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 400;
    color: #1d1510;
    letter-spacing: 1px;
    line-height: 1.2;
}

.profil-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.profil-body p {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.08rem;
    color: #6e6e73;
    line-height: 1.8;
}

.profil-body strong { color: #1d1510; font-weight: 600; }

/* Vision */
.vision-quote {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: #3a3020;
    line-height: 1.85;
    padding: 28px 32px;
    border-left: 3px solid #1d1510;
    background: #f2ede4;
    border-radius: 0 8px 8px 0;
}

/* Features */
.features { display: flex; flex-direction: column; margin-top: 8px; }

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #f0ebe0;
}
.feature:first-child { border-top: 1px solid #f0ebe0; }

.feature-icon {
    font-size: 0.75rem;
    color: #b8962e;
    padding-top: 4px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.feature-title {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.1px;
    margin-bottom: 6px;
}

.feature-text {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: #6e6e73;
    line-height: 1.75;
}

/* ══ CTA ══════════════════════════════════════ */
.profile-cta {
    background: #f2ede4;
    border-top: 1px solid #e8ddd0;
    padding: 64px 48px;
    text-align: center;
    margin: 0;
}

.profile-cta-inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-overline {
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8962e;
}

.cta-title {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-sub {
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #6e6e73;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: #1a1208;
    color: #fff;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 980px;
    transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: #3a3a3a; transform: translateY(-2px); }

.btn-ghost {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #1a1208;
    color: #1a1208;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 980px;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-ghost:hover { background: #1a1208; color: #fff; transform: translateY(-2px); }

/* ══ MARQUEE ═════════════════════════════════ */
.marquee-strip {
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid #f0ebe0;
    background: #faf7f2;
}

.marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8b89a;
}

.marquee-dot { color: #b8962e !important; font-size: 0.45rem !important; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══ FOOTER ══════════════════════════════════ */
footer {
    background: #050505;
    color: #fff;
    padding: 56px 52px 32px;
    border-top: 3px solid #b8962e;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    height: 38px; width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    display: block;
    margin-bottom: 14px;
}

.footer-brand-text {
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    color: #9a9080;
    line-height: 1.6;
    max-width: 220px;
}

.footer-col-title {
    font-family: Arial, sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b8962e;
    margin-bottom: 18px;
}

address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    color: #9a9080;
    line-height: 1.4;
}
address a { color: #f0ebe0; transition: color 0.25s; }
address a:hover { color: #e8c84a; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    color: #9a9080;
    transition: color 0.25s;
}
.footer-nav a:hover { color: #e8c84a; }

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(184,150,46,.2);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-copy {
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    color: #5a5a5a;
    letter-spacing: 0.5px;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    color: #8a8a8a;
    transition: color 0.25s;
}
.footer-legal a:hover { color: #e8c84a; }

/* ══ REVEAL ══════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══════════════════════════════ */
@media (max-width: 1024px) {
    .hero { padding: 60px 40px; gap: 52px; }
    .profil-section { padding: 52px 40px; }
    .profile-cta { margin: 0 40px 60px; }
}

@media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; padding: 48px 36px; }
    .hero-right { width: 100%; max-width: 320px; height: 360px; order: -1; }
    .profil-section { grid-template-columns: 1fr; gap: 16px 0; padding: 44px 36px; }
    .profil-intro { padding: 56px 36px; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    header { padding: 10px 20px; height: 60px; }
    main { padding-top: 60px; }
    .real img { height: 38px; }
    .hamburger { display: flex; }

    .nav {
        position: fixed;
        top: 60px; left: 0;
        width: 100%; height: calc(100vh - 60px);
        background: #faf7f2;
        flex-direction: column; justify-content: flex-start;
        align-items: center; gap: 0; padding-top: 40px;
        transform: translateX(-100%); transition: transform 0.4s ease;
        opacity: 0; visibility: hidden;
    }
    .nav.active { transform: translateX(0); opacity: 1; visibility: visible; }
    .nav a {
        width: 88%; text-align: center; font-size: 0.9rem;
        padding: 16px 20px; margin: 6px 0;
        border-bottom: 1px solid #f0ebe0;
    }
    .nav a::after { display: none; }
    .lang-selector { margin: 16px 0; width: 88%; text-align: center; }
    .lang-dropdown { position: relative; top: 0; width: 100%; margin-top: 8px; }
    .lang-selector.active .lang-dropdown { display: block; }

    .hero { padding: 40px 24px 52px; }
    .profil-intro { padding: 48px 24px; }
    .profil-section { padding: 40px 24px; }
    .profile-cta { margin: 0 24px 52px; padding: 48px 28px; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { text-align: center; }
    footer { padding: 48px 24px 28px; }
    .footer-cols { grid-template-columns: 1fr; gap: 32px; }
    .footer-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-legal { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    header { padding: 8px 16px; height: 54px; }
    main { padding-top: 54px; }
    .nav { top: 54px; height: calc(100vh - 54px); }
    .real img { height: 34px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-stat { flex-direction: row; align-items: center; gap: 14px; }
    .hero-stat-sep { display: none; }
}
