﻿
    /* ===== CSS VARIABLES ===== */
    :root {
      --black: #0a0a0a;
      --deep: #111111;
      --card: #181818;
      --red: #d72b2b;
      --red-bright: #ff3c3c;
      --white: #f5f5f0;
      --gray: #888888;
      --light-gray: #cccccc;
      --border: rgba(255,255,255,0.08);
      --font-display: 'Bebas Neue', sans-serif;
      --font-condensed: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
      --font-readable: 'Inter', 'Barlow', sans-serif;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
  cursor: default;
}
    a { color: inherit; text-decoration: none; }
    img {max-width: 100%; height: auto; display: block;object-fit: cover;}

    /* ===== CUSTOM CURSOR ===== */
    .cursor {
      width: 12px; height: 12px;
      background: var(--red);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transition: transform 0.15s ease;
      mix-blend-mode: difference;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid rgba(215,43,43,0.5);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transition: transform 0.4s ease, width 0.3s, height 0.3s;
    }

    /* ===== LANGUAGE TOGGLE ===== */
    .lang-btn {
      display: inline-flex; gap: 4px; align-items: center;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 4px 12px;
      font-family: var(--font-condensed);
      font-size: 13px;
      letter-spacing: 2px;
      color: var(--gray);
      cursor: pointer;
      transition: all 0.3s;
    }
    .lang-btn:hover, .lang-btn.active { color: var(--white); border-color: var(--red); }
    .lang-btn span { font-weight: 700; }

    /* ===== NAV ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 20px 60px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.4s, padding 0.3s;
    }
    nav.scrolled {
      background: rgba(10,10,10,0.96);
      backdrop-filter: blur(12px);
      padding: 14px 60px;
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      display: flex;
      align-items: center;
    }
    .nav-logo img {
      background: white;
      border-radius: 8px;
      padding: 3px 6px;
    }
    .nav-links {
      display: flex; gap: 40px; align-items: center;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-condensed);
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray);
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--red);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--red);
      color: var(--white) !important;
      padding: 8px 22px;
      font-family: var(--font-condensed);
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--red-bright) !important; transform: translateY(-1px); }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(215,43,43,0.12) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%),
        url('https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?w=1600&q=80') center/cover no-repeat;
      animation: zoomSlow 20s ease-in-out infinite alternate;
    }
    @keyframes zoomSlow {
      from { transform: scale(1); }
      to { transform: scale(1.05); }
    }
    .hero-noise {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.4; pointer-events: none;
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 60px;
      max-width: 900px;
    }
    .hero-label {
      font-family: var(--font-condensed);
      font-size: 12px; letter-spacing: 5px;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 24px;
      display: flex; align-items: center; gap: 12px;
      opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
    }
    .hero-label::before {
      content: ''; width: 40px; height: 1px; background: var(--red);
    }
    .hero-h1 {
      font-family: var(--font-display);
      font-size: clamp(70px, 10vw, 140px);
      line-height: 0.9;
      letter-spacing: 2px;
      color: var(--white);
      opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
    }
    .hero-h1 .accent { color: var(--red); }
    .hero-sub {
      font-size: 18px; font-weight: 300;
      color: var(--light-gray);
      max-width: 520px;
      margin: 28px 0 44px;
      opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
    }
    .hero-ctas {
      display: flex; gap: 16px; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 0.9s 1s forwards;
    }
    .btn-primary {
      background: var(--red);
      color: var(--white);
      padding: 18px 42px;
      font-family: var(--font-condensed);
      font-size: 16px; letter-spacing: 3px;
      text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); }
    .btn-secondary {
      background: transparent;
      color: var(--white);
      padding: 18px 42px;
      font-family: var(--font-condensed);
      font-size: 16px; letter-spacing: 3px;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: border-color 0.3s, transform 0.2s;
    }
    .btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }
    .hero-scroll {
      position: absolute; bottom: 40px; left: 60px;
      display: flex; align-items: center; gap: 12px;
      font-family: var(--font-condensed);
      font-size: 11px; letter-spacing: 4px;
      color: var(--gray); text-transform: uppercase;
      opacity: 0; animation: fadeUp 1s 1.4s forwards;
    }
    .hero-scroll-line {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, var(--red), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 1; height: 60px; }
      50% { opacity: 0.4; height: 40px; }
    }
    .hero-stats {
      position: absolute; bottom: 40px; right: 60px;
      display: flex; gap: 40px;
      opacity: 0; animation: fadeUp 1s 1.2s forwards;
    }
    .hero-stat-item { text-align: right; }
    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 36px; color: var(--red);
      line-height: 1;
    }
    .hero-stat-label {
      font-family: var(--font-condensed);
      font-size: 11px; letter-spacing: 2px;
      color: var(--gray); text-transform: uppercase;
    }

    /* ===== SECTION SHARED ===== */
    section { padding: 140px 80px; }
    .section-label {
      font-family: var(--font-condensed);
      font-size: 11px; letter-spacing: 6px;
      color: var(--red); text-transform: uppercase;
      margin-bottom: 16px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::before { content: ''; width: 30px; height: 1px; background: var(--red); }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(40px, 6vw, 80px);
      line-height: 1.1;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }
    .section-divider {
      width: 60px; height: 2px;
      background: var(--red);
      margin: 24px 0;
    }

    /* ===== ABOUT ===== */
    #about { background: var(--deep); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      max-width: 1200px; margin: 0 auto;
    }
    .about-text p {
      color: var(--white);
      font-size: 19px; line-height: 1.9;
      font-weight: 700;
      margin-bottom: 28px;
    }
    .about-values {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 20px; margin-top: 40px;
    }
    .value-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-left: 3px solid var(--red);
      padding: 20px;
      transition: transform 0.3s, border-color 0.3s;
    }
    .value-card:hover { transform: translateY(-4px); border-color: var(--red-bright); }
    .value-card h4 {
      font-family: var(--font-condensed);
      font-size: 14px; letter-spacing: 2px;
      color: var(--red); text-transform: uppercase;
      margin-bottom: 8px;
    }
    .value-card p { font-size: 14px; color: var(--gray); line-height: 1.5; }
    .about-visual {
      position: relative;
    }
    .about-img-main {
      width: 100%; aspect-ratio: 3/4;
      object-fit: cover;
      filter: grayscale(20%);
      transition: filter 0.4s;
    }
    .about-img-main:hover { filter: grayscale(0%); }
    .about-img-overlay {
      position: absolute; bottom: -30px; right: -30px;
      width: 55%; aspect-ratio: 4/3;
      object-fit: cover;
      border: 4px solid var(--black);
    }
    .about-tag {
      position: absolute; top: 24px; left: -16px;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-display);
      font-size: 20px; letter-spacing: 2px;
      padding: 10px 20px;
      writing-mode: vertical-lr;
    }

    /* ===== STORY ===== */
    #story { background: var(--black); }
    .story-inner { max-width: 1200px; margin: 0 auto; }
    .story-timeline {
      margin-top: 60px;
      position: relative;
      padding-left: 40px;
    }
    .story-timeline::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 1px; background: linear-gradient(to bottom, var(--red), transparent);
    }
    .story-item {
      position: relative;
      padding: 0 0 60px 40px;
    }
    .story-item::before {
      content: ''; position: absolute; left: -5px; top: 6px;
      width: 10px; height: 10px;
      border-radius: 50%; background: var(--red);
      box-shadow: 0 0 0 4px rgba(215,43,43,0.2);
    }
    .story-year {
      font-family: var(--font-display);
      font-size: 48px; color: rgba(215,43,43,0.15);
      line-height: 1; margin-bottom: 8px;
    }
    .story-item h3 {
      font-family: var(--font-condensed);
      font-size: 22px; letter-spacing: 1px;
      color: var(--white); margin-bottom: 10px;
    }
    .story-item p { color: var(--gray); font-size: 15px; max-width: 600px; }

    /* ===== ACTIVITIES ===== */
    #activities { background: var(--deep); }
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px; margin-top: 60px;
    }
    .activity-card {
      position: relative; overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
    }
    .activity-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease, filter 0.4s;
      filter: grayscale(30%) brightness(0.7);
    }
    .activity-card:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(0.6); }
    .activity-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 60%);
      padding: 32px;
      display: flex; flex-direction: column; justify-content: flex-end;
    }
    .activity-num {
      font-family: var(--font-display);
      font-size: 80px; color: rgba(215,43,43,0.15);
      position: absolute; top: 16px; right: 24px;
      line-height: 1;
      transition: color 0.3s;
    }
    .activity-card:hover .activity-num { color: rgba(215,43,43,0.3); }
    .activity-icon {
      font-size: 32px; margin-bottom: 12px;
    }
    .activity-card h3 {
      font-family: var(--font-display);
      font-size: 28px; letter-spacing: 1px;
      color: var(--white); margin-bottom: 8px;
    }
    .activity-card p { font-size: 14px; color: var(--light-gray); line-height: 1.5; }
    .activity-tag {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-condensed);
      font-size: 11px; letter-spacing: 2px;
      padding: 4px 12px; margin-bottom: 12px;
      text-transform: uppercase;
    }

    /* ===== IMPACT ===== */
    #impact { background: var(--black); }
    .impact-inner { max-width: 1200px; margin: 0 auto; }
    .impact-stats {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px; margin: 60px 0;
    }
    .impact-stat {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 40px 30px;
      text-align: center;
      position: relative; overflow: hidden;
      transition: background 0.3s;
    }
    .impact-stat:hover { background: #1e1e1e; }
    .impact-stat::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--red);
      transform: scaleX(0); transition: transform 0.4s;
    }
    .impact-stat:hover::before { transform: scaleX(1); }
    .stat-num {
      font-family: var(--font-display);
      font-size: 64px; color: var(--red);
      line-height: 1;
    }
    .stat-unit {
      font-family: var(--font-display);
      font-size: 36px; color: var(--red);
    }
    .stat-desc {
      font-family: var(--font-condensed);
      font-size: 13px; letter-spacing: 2px;
      color: var(--gray); text-transform: uppercase;
      margin-top: 8px;
    }
    .impact-bar-section { margin-top: 40px; }
    .impact-bar-item { margin-bottom: 28px; }
    .impact-bar-label {
      display: flex; justify-content: space-between;
      font-family: var(--font-condensed);
      font-size: 13px; letter-spacing: 1px;
      color: var(--light-gray); text-transform: uppercase;
      margin-bottom: 8px;
    }
    .impact-bar-track {
      height: 4px; background: var(--border);
      position: relative;
    }
    .impact-bar-fill {
      height: 100%; background: linear-gradient(to right, var(--red), var(--red-bright));
      width: 0; transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* ===== GALLERY ===== */
    #gallery { background: var(--deep); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 4px; margin-top: 60px;
    }
    .gallery-item {
      position: relative; overflow: hidden;
      cursor: pointer;
    }
    .gallery-item:first-child {
      grid-column: span 2; grid-row: span 2;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      min-height: 220px;
      transition: transform 0.5s ease, filter 0.4s;
      filter: grayscale(20%);
    }
    .gallery-item:hover img { transform: scale(1.06); filter: grayscale(0%); }
    .gallery-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
      padding: 20px 16px 14px;
      font-family: var(--font-condensed);
      font-size: 13px; letter-spacing: 1px;
      color: var(--light-gray);
      transform: translateY(100%);
      transition: transform 0.4s;
    }
    .gallery-item:hover .gallery-caption { transform: translateY(0); }
   
    /* ===== CTA SECTION ===== */
    #cta {
      background: var(--red);
      padding: 100px 60px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    #cta::before {
      content: 'OFAC';
      font-family: var(--font-display);
      font-size: 300px; color: rgba(0,0,0,0.08);
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      letter-spacing: 10px; pointer-events: none;
    }
    #cta .section-label { color: rgba(255,255,255,0.7); justify-content: center; }
    #cta .section-label::before { background: rgba(255,255,255,0.5); }
    #cta h2 {
      font-family: var(--font-display);
      font-size: clamp(40px, 7vw, 90px);
      color: var(--white); line-height: 0.95;
      letter-spacing: 2px; margin-bottom: 24px;
    }
    #cta p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 44px; }
    .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .btn-white {
      background: var(--white);
      color: var(--red);
      padding: 16px 36px;
      font-family: var(--font-condensed);
      font-size: 14px; letter-spacing: 3px;
      text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-white:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      padding: 15px 36px;
      font-family: var(--font-condensed);
      font-size: 14px; letter-spacing: 3px;
      text-transform: uppercase;
      border: 2px solid var(--white);
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

    /* ===== CONTACT ===== */
    #contact { background: var(--black); }
    .contact-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .contact-info h2 { font-family: var(--font-display); font-size: 60px; line-height: 0.95; margin-bottom: 24px; }
    .contact-info p { color: var(--white); font-size: 16px; margin-bottom: 40px; line-height: 1.8; font-weight: 700; }
    .contact-items { display: flex; flex-direction: column; gap: 20px; }
    .contact-item {
      display: flex; align-items: center; gap: 16px;
      padding: 20px;
      border: 1px solid var(--border);
      transition: border-color 0.3s, background 0.3s;
      cursor: pointer;
    }
    .contact-item:hover { border-color: var(--red); background: rgba(215,43,43,0.05); }
    .contact-item-icon {
      width: 44px; height: 44px;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }
    .contact-item-text h4 {
      font-family: var(--font-condensed);
      font-size: 12px; letter-spacing: 2px;
      color: var(--red); text-transform: uppercase;
      margin-bottom: 4px;
    }
    .contact-item-text p { color: var(--white); font-size: 15px; font-weight: 700; }
    .btn-download {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
      color: var(--white);
      padding: 14px 28px;
      font-family: var(--font-condensed);
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
      box-shadow: 0 4px 18px rgba(215,43,43,0.35);
      margin-top: 6px;
    }
    .btn-download:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(215,43,43,0.55);
      filter: brightness(1.1);
    }
    .btn-download i { font-size: 18px; }
    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--white);
      padding: 14px 18px;
      font-family: var(--font-body);
      font-size: 15px;
      outline: none;
      transition: border-color 0.3s;
      width: 100%;
      resize: none;
      appearance: none;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: var(--gray); }
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus { border-color: var(--red); }
    .contact-form textarea { height: 140px; }
    .contact-form button {
      background: var(--red);
      color: var(--white);
      padding: 16px;
      font-family: var(--font-condensed);
      font-size: 14px; letter-spacing: 3px;
      text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.3s;
    }
    .contact-form button:hover { background: var(--red-bright); }
    .social-links { display: flex; gap: 12px; margin-top: 20px; }
    .social-link {
      width: 40px; height: 40px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      transition: border-color 0.3s, background 0.3s, transform 0.2s;
      cursor: pointer;
    }
    .social-link:hover { border-color: var(--red); background: var(--red); transform: translateY(-3px); }
    .social-link svg { display: block; }

    /* ===== FOOTER ===== */
    footer {
      background: #050505;
      border-top: 1px solid var(--border);
      padding: 60px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px; margin-bottom: 60px;
    }
    .footer-brand h3 {
      font-family: var(--font-display);
      font-size: 32px; letter-spacing: 4px;
      margin-bottom: 16px;
    }
    .footer-brand h3 span { color: var(--red); }
    .footer-brand p { color: var(--gray); font-size: 14px; line-height: 1.8; max-width: 280px; }
    .footer-col h4 {
      font-family: var(--font-condensed);
      font-size: 12px; letter-spacing: 3px;
      color: var(--red); text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      color: var(--gray); font-size: 14px;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      padding-top: 30px;
      border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center;
      font-family: var(--font-condensed);
      font-size: 12px; letter-spacing: 1px;
      color: var(--gray);
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      display: none;
      position: fixed; inset: 0; z-index: 999;
      background: rgba(10,10,10,0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center; justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 40px; letter-spacing: 3px;
      color: var(--white);
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--red); }
    .mobile-close {
      position: absolute; top: 24px; right: 24px;
      font-size: 30px; color: var(--gray);
      cursor: pointer; transition: color 0.3s;
    }
    .mobile-close:hover { color: var(--red); }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left {
      opacity: 0; transform: translateX(-40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0; transform: translateX(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* ===== KEYFRAMES ===== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== SCROLL BAR ===== */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--red); }

    /* ===== LANG HIDDEN ===== */
    [data-fr], [data-en] { }
    body.en [data-fr] { display: none !important; }
    body.fr [data-en] { display: none !important; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      nav { padding: 16px 30px; }
      nav.scrolled { padding: 12px 30px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-stats { display: none; }
      .hero-scroll { left: 30px; }
      .about-img-overlay { display: none; }
      .about-tag { display: none; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
      .about-values { grid-template-columns: 1fr; }
      #cta { padding: 100px 40px; }
    }
    @media (max-width: 640px) {
      nav { padding: 14px 20px; }
      #cta { padding: 70px 20px; }
      #cta h2 { font-size: clamp(36px, 10vw, 60px); }
      .mobile-menu { padding: 20px; }
    }

  /* ===== PARTENAIRES & RECONNAISSANCES ===== */
  /* ===== PARTENAIRES ===== */
  .partners-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }
  .partner-logo {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background 0.3s, border-color 0.3s;
    cursor: default;
    min-height: 140px;
  }
  .partner-logo:hover {
    background: #1c1c1c;
    border-color: rgba(215,43,43,0.35);
  }
  .partner-ph-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(215,43,43,0.08);
    border: 1.5px dashed rgba(215,43,43,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--red);
    letter-spacing: 1px;
  }
  .partner-ph-name {
    font-family: var(--font-readable);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gray);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
  }
  .partner-img {
    width: 100%;
    max-width: 110px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.6) contrast(0.85);
    transition: filter 0.35s;
  }
  .partner-logo:hover .partner-img {
    filter: grayscale(0%) brightness(1) contrast(1);
  }

  /* ===== RECONNAISSANCES ===== */
  .recog-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .recog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .recog-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s;
  }
  .recog-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s;
  }
  .recog-card:hover { background: #1c1c1c; border-color: rgba(215,43,43,0.3); }
  .recog-card:hover::before { transform: scaleX(1); }
  .recog-badge {
    width: 52px;
    height: 52px;
    background: rgba(215,43,43,0.1);
    border: 1px solid rgba(215,43,43,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
  }
  .recog-year {
    font-family: var(--font-condensed);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .recog-title {
    font-family: var(--font-condensed);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .recog-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
  }

  /* Responsive partners & recog */
  @media (max-width: 1024px) {
    .partners-grid { grid-template-columns: repeat(4, 1fr); }
    .recog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .recog-grid { grid-template-columns: 1fr; }
    .partner-logo { padding: 28px 16px; min-height: 110px; }
    .recog-card { padding: 28px 24px; }
  }

  /* ===== EXTENSIONS & RESPONSIVE COMPLET ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
/* ===== AMÉLIORATIONS GLOBALES ===== */

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
  cursor: default;
}

/* ===== ESPACEMENT DES SECTIONS ===== */
section {
  padding: 140px 80px;
}

/* ===== TITRES ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.section-label {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ===== HERO ===== */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 950px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--light-gray);
  max-width: 620px;
  margin: 32px 0 48px;
  line-height: 1.9;
}

/* ===== BOUTONS ===== */
.btn-primary,
.btn-secondary,
.btn-white,
.btn-outline-white {
  font-size: 16px;
  padding: 18px 42px;
  letter-spacing: 2px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text p {
  color: var(--white);
  font-size: 19px;
  line-height: 1.9;
  font-weight: 700;
  margin-bottom: 28px;
}

.value-card {
  padding: 28px;
  border-radius: 10px;
}

.value-card h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* ===== ACTIVITIES ===== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 70px;
}

.activity-overlay {
  padding: 40px;
}

.activity-card h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.activity-card p {
  font-size: 16px;
  line-height: 1.7;
}

/* ===== IMPACT ===== */
.impact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-stats {
  gap: 20px;
}

.impact-stat {
  padding: 50px 35px;
  border-radius: 12px;
}

.stat-desc {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-info h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.1;
  margin-bottom: 28px;
}

.contact-info p {
  color: var(--white);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 18px 20px;
  font-size: 16px;
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 180px;
}

/* ===== FOOTER ===== */
footer {
  padding: 80px;
}

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

.footer-brand p,
.footer-col ul li a {
  font-size: 15px;
  line-height: 1.8;
}

/* ===== PETITS TEXTES — Inter pour la lisibilité ===== */
.stat-desc,
.recog-desc,
.partner-ph-name,
.activity-card p,
.gallery-caption,
.contact-item-text p,
.about-text p,
.founder-list li,
.founder-belief,
.footer-brand p,
.footer-col ul li a,
.impact-bar-label,
.section-label,
.recog-year {
  font-family: var(--font-readable);
  letter-spacing: 0;
}
/* Les labels gardent leur uppercase mais avec Inter */
.stat-desc,
.section-label,
.recog-year {
  letter-spacing: 0.06em;
}

/* ===== FOUNDER SECTION ===== */
.founder-role {
  display: inline-block;
  background: rgba(215,43,43,0.1);
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(215,43,43,0.3);
  margin-bottom: 28px;
}

.founder-intro {
  font-size: 17px;
  color: var(--white);
  line-height: 1.9;
  margin-bottom: 20px;
}

.founder-achievements {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 2px solid var(--red);
  background: rgba(255,255,255,0.03);
}

.founder-ach-title {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.founder-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.founder-list li {
  padding-left: 22px;
  position: relative;
  color: var(--light-gray);
  font-size: 15px;
  line-height: 1.65;
}

.founder-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 13px;
  top: 1px;
}

.founder-quote {
  margin: 28px 0;
  padding: 22px 28px;
  border-left: 3px solid var(--red);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  line-height: 1.75;
  background: rgba(215,43,43,0.05);
  border-radius: 0 6px 6px 0;
}

.founder-belief {
  font-size: 15px;
  color: var(--gray);
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 32px;
}

.founder-cta {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  padding: 16px 28px;
  background: var(--red);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.founder-cta:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215,43,43,0.4);
}

/* ===== RESPONSIVE TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  section {
    padding: 100px 40px;
  }
  .hero-content {
    padding: 0 40px;
    max-width: 100%;
  }
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  footer {
    padding: 50px 40px;
  }
  .hero-ctas {
    gap: 12px;
    flex-wrap: wrap;
  }
  .about-img-main {
    max-height: 480px;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
  #pourquoi > div {
    padding: 0 20px;
  }
}

/* ===== RESPONSIVE MOBILE (≤640px) ===== */
@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }
  section {
    padding: 70px 20px;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-h1 {
    font-size: clamp(42px, 11vw, 70px);
    line-height: 1;
  }
  .hero-sub {
    font-size: 16px;
    margin: 20px 0 32px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .about-text p,
  .contact-info p {
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
  }
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .impact-stat {
    padding: 28px 16px;
    border-radius: 8px;
  }
  .stat-num {
    font-size: 44px;
  }
  .stat-unit {
    font-size: 26px;
  }
  .activities-grid {
    grid-template-columns: 1fr;
  }
  .activity-overlay {
    padding: 24px 20px;
  }
  .activity-card h3 {
    font-size: 24px;
  }
  .about-values,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .section-title {
    font-size: clamp(34px, 10vw, 58px);
  }
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-outline-white,
  .btn-download {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
    box-sizing: border-box;
  }
  .contact-form button {
    width: 100%;
  }
  .hero-ctas a {
    display: block;
    text-align: center;
  }
  .about-img-main {
    max-height: 360px;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
  #pourquoi > div {
    padding: 0;
  }
  #pourquoi p {
    font-size: 16px !important;
  }
  .contact-items {
    gap: 12px;
  }
  .social-links {
    flex-wrap: wrap;
    gap: 10px;
  }
  .impact-bar-label {
    font-size: 11px;
  }
  footer {
    padding: 50px 20px;
  }
  .footer-inner {
    gap: 30px;
  }
}

/* ===== RESPONSIVE SMALL MOBILE (≤400px) ===== */
@media (max-width: 400px) {
  .impact-stats {
    grid-template-columns: 1fr;
  }
  .hero-h1 {
    font-size: clamp(36px, 11vw, 52px);
  }
  .activities-grid {
    grid-template-columns: 1fr;
  }
}

  