
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ocean-deep: #042C53;
    --ocean-mid: #185FA5;
    --ocean-light: #378ADD;
    --ocean-pale: #E6F1FB;
    --teal-dark: #0F6E56;
    --teal-mid: #1D9E75;
    --teal-light: #5DCAA5;
    --teal-pale: #E1F5EE;
    --sand: #FAF8F3;
    --sand-dark: #F0EBE0;
    --text-dark: #0D1B2A;
    --text-mid: #3A5470;
    --text-light: #6B8CAE;
    --white: #ffffff;
    --border: rgba(4, 44, 83, 0.12);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--sand);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(4, 44, 83, 0.96);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    border-bottom: 1px solid rgba(55, 138, 221, 0.25);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal-light), var(--ocean-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo-icon svg { width: 20px; height: 20px; fill: white; }

  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--teal-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ocean-deep);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 260px;
    opacity: 0.12;
  }

  .wave svg { width: 100%; height: 100%; }

  .wave-2 {
    bottom: 30px;
    opacity: 0.07;
    animation: waveDrift 8s ease-in-out infinite alternate;
  }

  .wave-3 {
    bottom: -10px;
    opacity: 0.18;
    animation: waveDrift 12s ease-in-out infinite alternate-reverse;
  }

  @keyframes waveDrift {
    from { transform: translateX(-20px); }
    to   { transform: translateX(20px); }
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }

  .orb-1 {
    width: 500px; height: 500px;
    background: rgba(29, 158, 117, 0.18);
    top: -100px; right: -100px;
  }

  .orb-2 {
    width: 350px; height: 350px;
    background: rgba(55, 138, 221, 0.15);
    bottom: 80px; left: -80px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(93, 202, 165, 0.15);
    border: 1px solid rgba(93, 202, 165, 0.35);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--teal-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero-label::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal-light);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-title em {
    font-style: normal;
    color: var(--teal-light);
  }

  .hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 480px;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--teal-mid);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover {
    background: var(--teal-light);
    transform: translateY(-1px);
  }

  .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--teal-light);
    color: var(--teal-light);
  }

  /* Hero visual side */
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .stat-ring {
    position: relative;
    width: 320px;
    height: 320px;
  }

  .stat-ring svg {
    width: 100%; height: 100%;
    transform: rotate(-90deg);
  }

  .stat-ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .stat-ring-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1;
  }

  .stat-ring-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
    letter-spacing: 0.05em;
  }

  .hero-badges {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-badges.right { right: -20px; }
  .hero-badges.left  { left: -20px; }

  .hero-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center;
    backdrop-filter: blur(8px);
  }

  .hero-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--teal-light);
    display: block;
  }

  .hero-badge-txt {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 2px;
  }

  /* ── SECTION BASE ── */
  section { padding: 96px 5%; }

  .container { max-width: 1100px; margin: 0 auto; }

  .section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    color: var(--ocean-deep);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .section-lead {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 620px;
    line-height: 1.8;
    font-weight: 300;
  }

  .divider {
    width: 48px;
    height: 3px;
    background: var(--teal-mid);
    border-radius: 2px;
    margin: 16px 0 32px;
  }

  /* ── DÉFINITION ── */
  #definition { background: var(--white); }

  .definition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 56px;
  }

  .definition-text p {
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .definition-text p:last-child { margin-bottom: 0; }

  .highlight-box {
    background: var(--ocean-pale);
    border-left: 4px solid var(--ocean-mid);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
  }

  .highlight-box p {
    color: var(--ocean-deep) !important;
    font-weight: 500;
    font-size: 15px !important;
    margin: 0 !important;
    line-height: 1.6 !important;
  }

  .key-facts {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fact-card {
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s, transform 0.2s;
  }

  .fact-card:hover {
    border-color: var(--teal-mid);
    transform: translateX(4px);
  }

  .fact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fact-icon svg { width: 22px; height: 22px; }

  .fact-icon.teal { background: var(--teal-pale); }
  .fact-icon.teal svg { stroke: var(--teal-dark); fill: none; }

  .fact-icon.blue { background: var(--ocean-pale); }
  .fact-icon.blue svg { stroke: var(--ocean-mid); fill: none; }

  .fact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
  }

  .fact-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--ocean-deep);
  }

  /* ── RÔLES ── */
  #roles { background: var(--sand); }

  .roles-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }

  .roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .role-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
  }

  .role-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }

  .role-card.ocean::before  { background: var(--ocean-mid); }
  .role-card.teal::before   { background: var(--teal-mid); }
  .role-card.amber::before  { background: #BA7517; }
  .role-card.green::before  { background: #3B6D11; }
  .role-card.purple::before { background: #534AB7; }
  .role-card.coral::before  { background: #D85A30; }

  .role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(4, 44, 83, 0.1);
  }

  .role-number {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }

  .role-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .role-icon-wrap svg { width: 26px; height: 26px; stroke-width: 1.5; }

  .role-icon-wrap.ocean  { background: var(--ocean-pale); }
  .role-icon-wrap.ocean svg { stroke: var(--ocean-mid); fill: none; }

  .role-icon-wrap.teal   { background: var(--teal-pale); }
  .role-icon-wrap.teal svg { stroke: var(--teal-dark); fill: none; }

  .role-icon-wrap.amber  { background: #FAEEDA; }
  .role-icon-wrap.amber svg { stroke: #BA7517; fill: none; }

  .role-icon-wrap.green  { background: #EAF3DE; }
  .role-icon-wrap.green svg { stroke: #3B6D11; fill: none; }

  .role-icon-wrap.purple { background: #EEEDFE; }
  .role-icon-wrap.purple svg { stroke: #534AB7; fill: none; }

  .role-icon-wrap.coral  { background: #FAECE7; }
  .role-icon-wrap.coral svg { stroke: #993C1D; fill: none; }

  .role-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--ocean-deep);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .role-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
  }

  /* ── FONCTIONNALITÉS ── */
  #fonctionnalites { background: var(--ocean-deep); color: white; }

  #fonctionnalites .section-eyebrow { color: var(--teal-light); }
  #fonctionnalites .section-title   { color: white; }
  #fonctionnalites .section-lead    { color: rgba(255,255,255,0.6); }
  #fonctionnalites .divider         { background: var(--teal-light); }

  .func-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
    margin-top: 56px;
  }

  .func-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .func-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid transparent;
  }

  .func-item:hover,
  .func-item.active {
    background: rgba(255,255,255,0.06);
    border-color: rgba(93, 202, 165, 0.3);
  }

  .func-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-light);
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .func-item.active .func-item-dot,
  .func-item:hover .func-item-dot {
    background: var(--teal-light);
  }

  .func-item-text {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
  }

  .func-item.active .func-item-text,
  .func-item:hover .func-item-text {
    color: white;
    font-weight: 500;
  }

  .func-detail {
    position: sticky;
    top: 100px;
  }

  .func-detail-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .func-detail-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
  }

  .func-detail-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .func-detail-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(93, 202, 165, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .func-detail-icon svg {
    width: 20px; height: 20px;
    stroke: var(--teal-light);
    fill: none;
    stroke-width: 1.5;
  }

  .func-detail-card-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
  }

  .func-detail-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
  }

  /* ── BIODIVERSITÉ ── */
  #biodiversite { background: var(--white); }

  .bio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
  }

  .bio-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
  }

  .bio-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .bio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,44,83,0.85) 0%, rgba(4,44,83,0.1) 60%, transparent 100%);
    z-index: 1;
  }

  .bio-card-content { position: relative; z-index: 2; }

  .bio-count {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--teal-light);
    display: block;
    line-height: 1;
  }

  .bio-category {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    display: block;
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .bio-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
  }

  /* Illustrative colored backgrounds for bio cards */
  .bio-birds   { background: linear-gradient(160deg, #0F6E56, #042C53); }
  .bio-fish    { background: linear-gradient(160deg, #185FA5, #042C53); }
  .bio-flora   { background: linear-gradient(160deg, #3B6D11, #0F6E56); }
  .bio-marine  { background: linear-gradient(160deg, #534AB7, #185FA5); }

  .bio-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
  }

  /* ── GESTION ── */
  #gestion { background: var(--sand); }

  .timeline {
    position: relative;
    margin-top: 56px;
    padding-left: 40px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal-mid), var(--ocean-mid));
    border-radius: 1px;
  }

  .timeline-item {
    position: relative;
    margin-bottom: 40px;
  }

  .timeline-dot {
    position: absolute;
    left: -37px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--teal-mid);
    transition: border-color 0.2s, transform 0.2s;
  }

  .timeline-item:hover .timeline-dot {
    border-color: var(--ocean-mid);
    transform: scale(1.2);
  }

  .timeline-year {
    font-size: 12px;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .timeline-heading {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ocean-deep);
    margin-bottom: 8px;
  }

  .timeline-body {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 560px;
  }

  .gestion-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .partner-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .partner-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    transition: border-color 0.2s;
  }

  .partner-row:hover { border-color: var(--teal-mid); }

  .partner-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .dot-ocean  { background: var(--ocean-mid); }
  .dot-teal   { background: var(--teal-mid); }
  .dot-amber  { background: #BA7517; }
  .dot-green  { background: #3B6D11; }
  .dot-purple { background: #534AB7; }

  .partner-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ocean-deep);
  }

  .partner-type {
    font-size: 12px;
    color: var(--text-light);
    margin-left: auto;
  }

  /* ── STATS BANNER ── */
  .stats-banner {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--ocean-mid) 100%);
    padding: 72px 5%;
  }

  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
  }

  .stat-item {}

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
  }

  .stat-unit {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
  }

  .stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    letter-spacing: 0.04em;
  }

  .stat-sep {
    width: 1px;
    background: rgba(255,255,255,0.2);
    margin: auto;
    height: 60px;
    align-self: center;
    display: none;
  }

  /* ── CONTACT / FOOTER ── */
  #contact { background: var(--white); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-top: 56px;
  }

  .contact-info { display: flex; flex-direction: column; gap: 20px; }

  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon-wrap svg {
    width: 20px; height: 20px;
    stroke: var(--teal-dark);
    fill: none;
    stroke-width: 1.5;
  }

  .contact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 4px;
  }

  .contact-val {
    font-size: 15px;
    color: var(--ocean-deep);
    font-weight: 500;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-group { display: flex; flex-direction: column; gap: 6px; }

  .form-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
  }

  .form-input,
  .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: none;
  }

  .form-input:focus,
  .form-textarea:focus {
    border-color: var(--teal-mid);
    background: var(--white);
  }

  .form-textarea { min-height: 120px; }

  .form-submit {
    display: inline-block;
    padding: 14px 36px;
    background: var(--ocean-deep);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
  }

  .form-submit:hover { background: var(--ocean-mid); }

  /* ── FOOTER ── */
  footer {
    background: var(--ocean-deep);
    padding: 48px 5% 32px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .footer-brand-icon {
    width: 36px; height: 36px;
    background: rgba(93,202,165,0.2);
    border: 1px solid rgba(93,202,165,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-brand-icon svg { width: 18px; height: 18px; fill: var(--teal-light); }

  .footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: white;
  }

  .footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    max-width: 280px;
    line-height: 1.6;
  }

  .footer-links-group h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
  }

  .footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links-group a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links-group a:hover { color: var(--teal-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }

  .footer-unesco {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
  }

  .unesco-badge {
    background: rgba(93,202,165,0.15);
    border: 1px solid rgba(93,202,165,0.3);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--teal-light);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-content     { grid-template-columns: 1fr; }
    .hero-visual      { display: none; }
    .definition-grid  { grid-template-columns: 1fr; }
    .roles-grid       { grid-template-columns: 1fr 1fr; }
    .roles-intro      { grid-template-columns: 1fr; gap: 24px; }
    .func-layout      { grid-template-columns: 1fr; }
    .bio-grid         { grid-template-columns: 1fr 1fr; }
    .gestion-layout   { grid-template-columns: 1fr; }
    .stats-inner      { grid-template-columns: 1fr 1fr; }
    .contact-grid     { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .roles-grid { grid-template-columns: 1fr; }
    .bio-grid   { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr; }
  }

  /* ── SCROLL ANIMATION ── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: none;
  }

  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.4s; }
  .fade-up:nth-child(6) { transition-delay: 0.5s; }
