/* page-about.css — ce qui appartient en propre à about.
 *
 * Le commun vit dans style.css. Ce fichier ne contient que les écarts :
 * 25 règles strictement identiques à style.css ont été retirées,
 * 51 conservées. À charger APRÈS style.css.
 *
 * Extrait le 10-08-2026 par _gabarit-css.py.
 */

:root {
    --bg: #0a0f1a;
    --bg2: #0e1322;
    --surface: #141b2d;
    --border: rgba(160,180,210,0.08);
    --text: #ffffff;
    --text-muted: #b7c2d4;
    --accent: #2d3e6b;
    --accent-light: #4a5f8f;
    --accent-pale: #8a9cbd;
    --accent-dim: rgba(45,62,107,0.15);
    --gold: #b8965a;
    --gold-light: #d4b478;
    --slate-blue: #6b7fa3;
    --display: 'Inter Tight', 'Helvetica Now Display', Helvetica, Arial, sans-serif;
    --body: 'Carlito', Calibri, 'Segoe UI', sans-serif;
  }

html { scroll-behavior: smooth; }

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: none; /* noise overlay retiré — rendu lisse */
    pointer-events: none;
    z-index: 9999;
  }

/* HERO */
  .hero {
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 2rem 3rem;
    position: relative;
  }

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
  }

.hero > * { position: relative; z-index: 2; }

.hero-label {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-pale);
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
  }

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 800px;
    opacity: 0;
    animation: fadeUp 1.2s 0.5s forwards;
  }

/* DIVIDER */
  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
    gap: 2rem;
  }

/* SECTIONS */
  section { padding: 8rem 4rem; }

/* WHO WE ARE */
  /* Le titre occupe sa propre rangée : la citation de droite s'aligne ainsi sur
     le premier paragraphe et non sur le haut du titre. Une marge fixe ne
     convenait pas, le titre français prenant une ligne de plus que l'anglais
     (mesuré : 15,3 rem en anglais contre 19,2 en français). */
  .who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 6rem;
    row-gap: 0;
    align-items: start;
  }

  .who-head  { grid-column: 1; grid-row: 1; }
  .who-text  { grid-column: 1; grid-row: 2; }
  .who-aside { grid-column: 2; grid-row: 2; }

.who-text p {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.3rem;
  }

.who-text p:last-child { margin-bottom: 0; }

.finma-badge {
    display: block;
    margin-top: 2rem;
    padding: 1.1rem 1.35rem;
    border: 1px solid var(--border);
    background: var(--surface);
    max-width: 640px;
  }

.finma-badge span {
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.7;
  }

.finma-badge a {
    color: var(--accent-pale);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

.finma-badge .sofit-logo {
    display: block;
    height: 34px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.95;
  }

.finma-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

.quote-block {
    position: relative;
    padding: 3.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
  }

.quote-block::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

.quote-block blockquote {
    font-family: var(--quote);
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
  }

.quote-attribution {
    margin-top: 2rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
  }

/* PILLARS */
  .pillars-section { background: var(--bg2); }

.pillars-header {
    text-align: center;
    margin-bottom: 5rem;
  }

.pillars-header .section-title { margin: 0 auto 1.5rem; }

.pillars-header .section-desc { margin: 0 auto; max-width: 540px; text-align: center; }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

.pillar-card {
    background: var(--bg2);
    padding: 3.5rem 2.5rem;
    transition: all 0.5s;
    position: relative;
  }

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.5s;
  }

.pillar-card:hover::after { transform: scaleX(1); }

.pillar-card:hover { background: var(--surface); }

.pillar-num {
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(120,146,201,0.42);
    margin-bottom: 2rem;
  }

.pillar-card h3 {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
  }

.pillar-card p {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.8;
  }

/* VALUES */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
  }

/* STATS */

.stat-number {
    font-family: var(--display);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 400;
    color: var(--accent-pale);
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
  }

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
  }

/* CTA */
  .cta-section {
    text-align: center;
    padding: 10rem 4rem;
    position: relative;
  }

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, var(--bg) 0%, rgba(12,16,24,0.4) 30%, rgba(12,16,24,0.4) 70%, var(--bg) 100%),
      url('../webp/mountain4.webp') center/cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
    filter: saturate(0.2) brightness(0.6);
  }

.cta-section > * { position: relative; z-index: 2; }

/* BUTTONS */
  .btn-primary {
    display: inline-block;
    padding: 1rem 2.8rem;
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--accent-light);
    color: var(--bg);
    border: none;
    cursor: pointer;
    transition: all 0.4s;
  }

/* FOOTER */
  footer {
    padding: 4rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.footer-links { display: flex; gap: 2rem; }

.footer-copy {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
  }

/* ── Points de rupture ── */

@media (max-width: 1024px) {
    section { padding: 6rem 2rem; }
    nav { padding: 1.2rem 2rem; }
    nav.scrolled { padding: 0.8rem 2rem; }
    .who-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 3rem; }
    .who-head, .who-text, .who-aside { grid-column: 1; grid-row: auto; }
    .pillars-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    footer { flex-direction: column; gap: 2rem; text-align: center; }
    .cta-section { padding: 7rem 2rem; }
    .divider { padding: 0 2rem; }
  }

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
  }

@media (max-width: 600px) {
    section { padding: 5rem 1.5rem; }
    .values-grid { grid-template-columns: 1fr; }
    .hero { min-height: 52vh; }
    .quote-block { padding: 2.5rem 1.75rem; }
  }

/* Image de cette page. Le traitement est commun, dans style.css. */
.hero {
  --hero-image: url('../webp/hero-geneve-jet.webp');
}
