*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold:        #B8974A;
      --gold-light:  #F9F4EA;
      --gold-dark:   #8A6E32;
      --navy:        #1A2340;
      --navy-mid:    #243055;
      --surface:     #F8F9FB;
      --white:       #FFFFFF;
      --text:        #0F172A;
      --muted:       #64748B;
      --border:      #E2E8F0;
      --radius:      12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: #ffffff;
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--text); }

    .nav-links a.active {
      color: var(--navy);
      font-weight: 600;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 2px;
    }


    .nav-cta {
      background: var(--gold) !important;
      color: var(--white) !important;
      padding: 9px 20px !important;
      border-radius: 8px !important;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.15s !important;
    }

    .nav-cta:hover {
      background: var(--gold-dark) !important;
      color: var(--white) !important;
      transform: translateY(-1px) !important;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ── PAGE HERO ── */
    .page-hero {
      background: var(--navy);
      padding: 140px 32px 80px;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(184,151,74,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(184,151,74,0.08) 0%, transparent 50%);
      pointer-events: none;
    }

    .page-hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
      margin-bottom: 24px;
    }

    .breadcrumb a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }

    .breadcrumb a:hover { color: rgba(255,255,255,0.7); }

    .breadcrumb-sep { opacity: 0.3; }

    .page-hero h1 {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .page-hero h1 span { color: var(--gold); }

    .page-hero p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      max-width: 580px;
      line-height: 1.8;
    }

    /* ── SECTIONS ── */
    section { padding: 80px 32px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.03em;
      line-height: 1.18;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--muted);
      max-width: 580px;
      line-height: 1.75;
    }

    /* ── HISTOIRE ── */
    .histoire-section { background: var(--white); }

    .histoire-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 48px;
    }

    .histoire-img {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .histoire-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 60% 30%, rgba(184,151,74,0.2) 0%, transparent 60%);
    }

    .histoire-img-text {
      position: relative;
      text-align: center;
    }

    .histoire-img-text p {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 12px;
    }

    .histoire-year-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px 24px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .histoire-year-badge strong {
      display: block;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .histoire-year-badge span {
      font-size: 0.72rem;
      color: var(--muted);
      font-weight: 500;
    }

    .histoire-content p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .histoire-content p:last-child { margin-bottom: 0; }

    /* ── TIMELINE ── */
    .timeline-section { background: var(--surface); }

    .timeline {
      position: relative;
      margin-top: 48px;
      padding-left: 32px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 8px;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), rgba(184,151,74,0.1));
    }

    .timeline-item {
      position: relative;
      padding-left: 36px;
      padding-bottom: 48px;
    }

    .timeline-item:last-child { padding-bottom: 0; }

    .timeline-dot {
      position: absolute;
      left: -39px;
      top: 4px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid var(--surface);
      box-shadow: 0 0 0 2px var(--gold);
    }

    .timeline-year {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .timeline-item h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .timeline-item p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 640px;
    }

    /* ── VALEURS ── */
    .valeurs-section { background: var(--navy); }

    .valeurs-section .section-title { color: var(--white); }
    .valeurs-section .section-sub { color: rgba(255,255,255,0.55); }

    .valeurs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .valeur-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 32px 28px;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
    }

    .valeur-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(184,151,74,0.3);
      transform: translateY(-4px);
    }

    .valeur-icon {
      width: 48px;
      height: 48px;
      background: rgba(184,151,74,0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .valeur-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .valeur-card p {
      font-size: 0.87rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
    }

    /* ── EQUIPE ── */
    .equipe-section { background: var(--white); }

    .equipe-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-top: 48px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 48px;
    }

    .equipe-intro-text, .equipe-stats { min-width: 0; }

    .equipe-intro-text h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .equipe-intro-text p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .equipe-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .equipe-stat {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      min-width: 0;
    }

    .equipe-stat strong {
      display: block;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 6px;
    }

    .equipe-stat span {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.4;
    }

    /* ── ENGAGEMENTS ── */
    .engagements-section { background: var(--surface); }

    .engagements-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .engagement-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px;
      display: flex;
      gap: 20px;
      transition: box-shadow 0.25s, transform 0.25s;
    }

    .engagement-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.06);
      transform: translateY(-3px);
    }

    .engagement-icon {
      width: 46px;
      height: 46px;
      background: var(--gold-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .engagement-card h3 {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .engagement-card p {
      font-size: 0.87rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── CTA ── */
    .cta-section { background: var(--white); }

    .cta-box {
      background: var(--navy);
      border-radius: 24px;
      padding: 72px 80px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(184,151,74,0.3) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-box h2 {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .cta-box > div > p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      max-width: 480px;
    }

    .cta-box-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--navy);
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      white-space: nowrap;
      transition: transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(0,0,0,0.14);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--gold);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-gold:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
    }

    .cta-note {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      text-align: center;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 60px 32px 32px;
      color: rgba(255,255,255,0.5);
    }

    .footer-inner { max-width: 1200px; margin: 0 auto; }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer-brand p {
      margin-top: 14px;
      font-size: 0.875rem;
      line-height: 1.7;
      max-width: 280px;
      color: rgba(255,255,255,0.45);
    }

    .footer-col h4 {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 18px;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }

    .footer-col ul li a {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: var(--white); }

    .footer-bottom {
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.82rem;
    }

    .footer-bottom-right {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.3);
    }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    }

    .reveal.reveal-left { transform: translateX(-32px); }
    .reveal.reveal-scale { transform: scale(0.95); }

    .reveal.in-view { opacity: 1; transform: none; }

    .stagger-children > * {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
    }

    .stagger-children.in-view > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
    .stagger-children.in-view > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.13s; }
    .stagger-children.in-view > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.21s; }
    .stagger-children.in-view > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.29s; }
    .stagger-children.in-view > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.37s; }
    .stagger-children.in-view > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.45s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .valeurs-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }

      section { padding: 60px 20px; }
      .page-hero { padding: 120px 20px 60px; }

      .histoire-grid,
      .equipe-intro { grid-template-columns: 1fr; gap: 40px; }
      .equipe-intro { padding: 28px; }

      .histoire-img { display: none; }

      .valeurs-grid,
      .engagements-grid { grid-template-columns: 1fr; }

      .cta-box {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        gap: 28px;
      }

      .footer-top { grid-template-columns: 1fr; gap: 32px; }
    }
