
  :root {
    --navy: #1a2238;
    --navy-2: #232d4a;
    --navy-ink: #0f162a;
    --yellow: #f5c518;
    --yellow-soft: #fde58a;
    --aqua: #3bb2d9;
    --aqua-soft: #c7e9f3;
    --paper: #fbf8f1;
    --paper-2: #f2ecdd;
    --ink: #12172a;
    --ink-soft: #4a5273;
    --rule: rgba(26, 34, 56, 0.12);
    --rule-strong: rgba(26, 34, 56, 0.22);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; }
  img { display: block; max-width: 100%; }

  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* ----------- ANNOUNCEMENT BAR ----------- */
  .bar {
    background: var(--navy-ink);
    color: #cfd6e8;
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .bar .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
  .bar a { color: var(--yellow); text-decoration: none; }
  .bar-left { display: flex; gap: 18px; align-items: center; }
  .bar-left .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); display: inline-block; box-shadow: 0 0 0 4px rgba(245,197,24,0.18); animation: pulse 2.2s infinite; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(245,197,24,0.18); }
    50% { box-shadow: 0 0 0 7px rgba(245,197,24,0.0); }
  }
  .bar-right { display: flex; gap: 20px; }
  .bar-right span.sep { opacity: 0.4; }

  /* ----------- NAV ----------- */
  header.nav {
    position: sticky;
    top: 0;
    background: rgba(251, 248, 241, 0.88);
    backdrop-filter: saturate(1.4) blur(12px);
    -webkit-backdrop-filter: saturate(1.4) blur(12px);
    border-bottom: 1px solid var(--rule);
    z-index: 50;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 32px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .brand img { width: 44px; height: 44px; }
  .brand-text {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1;
  }
  .brand-text small {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-top: 4px;
    text-transform: uppercase;
  }
  nav.primary ul {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
  }
  nav.primary a {
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--navy);
    padding: 9px 14px;
    border-radius: 999px;
    transition: background 0.15s;
  }
  nav.primary a:hover { background: rgba(26, 34, 56, 0.07); }
  .nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.2s;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--navy);
    color: var(--paper);
  }
  .btn-primary:hover { background: var(--navy-ink); transform: translateY(-1px); }
  .btn-ghost {
    border: 1px solid var(--rule-strong);
    color: var(--navy);
  }
  .btn-ghost:hover { background: rgba(26, 34, 56, 0.05); }
  .btn-yellow {
    background: var(--yellow);
    color: var(--navy-ink);
  }
  .btn-yellow:hover { background: #ffd02b; transform: translateY(-1px); }

  /* ----------- HERO ----------- */
  section.hero {
    position: relative;
    padding: 70px 0 40px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(60% 60% at 10% 10%, rgba(59, 178, 217, 0.10), transparent 60%),
      radial-gradient(45% 60% at 95% 20%, rgba(245, 197, 24, 0.14), transparent 60%);
    pointer-events: none;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 8px;
    border: 1px solid var(--rule-strong);
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
  }
  .eyebrow .tag {
    background: var(--navy);
    color: var(--yellow);
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10.5px;
  }
  .hero h1 {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 22px 0 22px;
    color: var(--navy-ink);
  }
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(180deg, transparent 62%, var(--yellow) 62%, var(--yellow) 92%, transparent 92%);
    padding: 0 6px;
  }
  .hero h1 .aqua {
    color: var(--aqua);
  }
  .hero .lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 32px;
  }
  .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

  .hero-meta {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
  }
  .hero-meta dt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 4px;
  }
  .hero-meta dd {
    margin: 0;
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--navy-ink);
    letter-spacing: -0.01em;
  }

  /* hero art card */
  .hero-art {
    position: relative;
    aspect-ratio: 1 / 1.05;
  }
  .hero-card {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 40px -22px rgba(15, 22, 42, 0.35), 0 2px 6px rgba(15, 22, 42, 0.06);
    border: 1px solid var(--rule);
  }
  .hero-card.logo {
    inset: 6% 12% 28% 8%;
    background: var(--navy-ink);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-card.logo img { width: 75%; }
  .hero-card.logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 90%, rgba(59, 178, 217, 0.3), transparent 40%),
      radial-gradient(circle at 80% 15%, rgba(245, 197, 24, 0.25), transparent 45%);
  }
  .hero-card.badge {
    right: 0; bottom: 0;
    width: 56%;
    padding: 22px;
    background: var(--yellow);
    border: none;
  }
  .hero-card.badge .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-ink);
    opacity: 0.65;
    margin-bottom: 8px;
  }
  .hero-card.badge h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--navy-ink);
  }
  .hero-card.badge p {
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--navy-ink);
    margin: 0;
  }
  .hero-card.stamp {
    left: 2%; bottom: 6%;
    width: 40%;
    padding: 18px;
  }
  .hero-card.stamp .row {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 8px;
  }
  .hero-card.stamp .row strong { color: var(--navy-ink); }
  .hero-card.stamp .progress {
    height: 8px;
    background: var(--paper-2);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 12px;
  }
  .hero-card.stamp .progress span {
    display: block;
    width: 28%;
    height: 100%;
    background: linear-gradient(90deg, var(--aqua), var(--navy));
    border-radius: 999px;
  }
  .hero-card.stamp .pct {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--navy-ink);
    letter-spacing: -0.02em;
    margin-top: 8px;
  }

  .hero-eu {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px 10px 12px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 12px;
  }
  .hero-eu img { height: 34px; width: auto; display: block; }
  .hero-eu span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    max-width: 160px;
    line-height: 1.3;
  }

  /* ----------- MARQUEE (EU partners) ----------- */
  .marquee {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 26px 0;
    background: rgba(255,255,255,0.4);
  }
  .marquee-inner {
    display: flex;
    gap: 56px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .marquee-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .flag-strip { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
  .flag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
  }
  .flag-item .flag {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid var(--rule);
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
  }
  .flag-nl { background: linear-gradient(to bottom, #ae1c28 33%, #fff 33% 66%, #21468b 66%); }
  .flag-mt { background: linear-gradient(to right, #fff 50%, #cf142b 50%); position: relative; }
  .flag-it { background: linear-gradient(to right, #008c45 33%, #f4f9ff 33% 66%, #cd212a 66%); }
  .flag-lt { background: linear-gradient(to bottom, #fdb913 33%, #006a44 33% 66%, #c1272d 66%); }
  .flag-eu { background: #003399; position: relative; }
  .flag-eu::after {
    content: '★';
    position: absolute; inset: 0;
    color: #ffcc00; font-size: 12px;
    display: flex; align-items: center; justify-content: center;
  }

  /* ----------- SECTION BASE ----------- */
  section.block {
    padding: 100px 0;
    border-top: 1px solid var(--rule);
  }
  section.block.dark {
    background: var(--navy-ink);
    color: var(--paper);
    border-top: none;
  }
  section.block.paper2 { background: var(--paper-2); }

  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  .section-head h2 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.022em;
    margin: 12px 0 0;
    font-weight: 700;
    color: var(--navy-ink);
    max-width: 740px;
  }
  .dark .section-head h2 { color: var(--paper); }
  .section-head .kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .dark .section-head .kicker { color: rgba(255,255,255,0.55); }
  .kicker::before {
    content: '';
    width: 18px; height: 2px;
    background: var(--yellow);
    display: inline-block;
  }
  .section-head p.intro {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0;
  }
  .dark .section-head p.intro { color: rgba(255,255,255,0.7); }

  /* ----------- ABOUT ----------- */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
  }
  .about-copy p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 18px;
  }
  .about-copy p.first::first-letter {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 58px;
    font-weight: 700;
    float: left;
    line-height: 0.9;
    padding: 6px 10px 0 0;
    color: var(--navy-ink);
  }
  .objective-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .objective-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--rule);
  }
  .objective-list .num {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    background: var(--yellow);
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    letter-spacing: -0.02em;
  }
  .objective-list h4 {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 600;
    font-size: 17px;
    margin: 6px 0 4px;
    color: var(--navy-ink);
    letter-spacing: -0.01em;
  }
  .objective-list p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  /* ----------- WORK PACKAGES ----------- */
  .wp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .wp-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--rule);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .wp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -18px rgba(15, 22, 42, 0.25);
  }
  .wp-card .wp-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.1em;
  }
  .wp-card h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 8px 0 14px;
    color: var(--navy-ink);
    padding-right: 50px;
  }
  .wp-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
  }
  .wp-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
  }
  .wp-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--navy);
  }
  .wp-card li::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--aqua);
    margin-top: 8px;
    flex-shrink: 0;
  }
  .wp-card .lead-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 38px;
    height: 38px;
    background: var(--navy-ink);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 14px;
  }
  .wp-card .lead-row {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed var(--rule-strong);
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .wp-card .lead-row strong {
    color: var(--navy-ink);
    font-family: 'Inter', sans-serif;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 13px;
  }
  .wp-card.featured {
    grid-column: span 2;
    background: var(--navy-ink);
    color: var(--paper);
    border: none;
  }
  .wp-card.featured h3 { color: var(--paper); }
  .wp-card.featured .wp-num,
  .wp-card.featured p,
  .wp-card.featured li { color: rgba(255,255,255,0.75); }
  .wp-card.featured li { color: rgba(255,255,255,0.9); }
  .wp-card.featured .lead-badge { background: var(--yellow); color: var(--navy-ink); }
  .wp-card.featured .lead-row { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.15); }
  .wp-card.featured .lead-row strong { color: var(--paper); }

  /* ----------- PARTNERS ----------- */
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
  }
  .partner {
    padding: 32px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.15s;
    position: relative;
  }
  .partner:hover { background: var(--paper); }
  .partner:nth-child(3n) { border-right: none; }
  .partner:nth-last-child(-n+3) { border-bottom: none; }
  .partner-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
  }
  .partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 60%;
  }
  .partner-logo img,
  .partner-logo > svg {
    max-height: 36px !important;
    max-width: 100% !important;
    width: auto !important;
    height: 36px !important;
    object-fit: contain;
    display: block;
    transition: opacity 0.15s, filter 0.15s;
    opacity: 0.85;
    filter: grayscale(20%);
  }
  .partner:hover .partner-logo img,
  .partner:hover .partner-logo > svg {
    opacity: 1;
    filter: grayscale(0%);
  }
  .partner-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: var(--yellow-soft);
    padding: 5px 10px;
    border-radius: 999px;
  }
  .partner-role.partner-role-partner {
    background: var(--paper-2);
    color: var(--ink-soft);
  }
  .partner h4 {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0;
    color: var(--navy-ink);
  }
  .partner .location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .partner .location .flag { width: 22px; height: 15px; border-radius: 2px; border: 1px solid var(--rule); }
  .partner p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
    flex-grow: 1;
  }
  .partner a.visit {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding-top: 6px;
    border-top: 1px dashed var(--rule);
    display: flex;
    justify-content: space-between;
  }
  .partner a.visit:hover { color: var(--aqua); }

  /* ----------- TIMELINE ----------- */
  .timeline-wrap { position: relative; }
  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 30px;
  }
  .t-col {
    padding: 0 20px;
    border-left: 2px solid rgba(255,255,255,0.1);
    position: relative;
  }
  .t-col:first-child { border-left-color: var(--yellow); }
  .t-col .tyear {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.12);
    margin-bottom: 10px;
  }
  .t-col .tq {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
  }
  .t-col h5 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 20px;
    margin: 0 0 10px;
    color: var(--paper);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .t-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.68);
    line-height: 1.55;
    margin: 0;
  }
  .t-col.active .tyear { color: var(--yellow); }
  .t-col.active { border-left-color: var(--yellow); }
  .t-col::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--navy-ink);
    border: 2px solid rgba(255,255,255,0.2);
  }
  .t-col.active::before {
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 0 6px rgba(245,197,24,0.2);
  }
  .t-col:first-child::before {
    background: var(--yellow);
    border-color: var(--yellow);
  }

  /* ----------- NEWS ----------- */
  .news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
  }
  .news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -18px rgba(15, 22, 42, 0.22);
  }
  .news-media {
    aspect-ratio: 16 / 10;
    background: var(--aqua-soft);
    position: relative;
    overflow: hidden;
  }
  .news-card.main .news-media { aspect-ratio: 16 / 9.5; }
  .news-media.m-kickoff {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-ink) 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .news-media.m-kickoff::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 75% 20%, rgba(245,197,24,0.35), transparent 45%),
      radial-gradient(circle at 20% 80%, rgba(59,178,217,0.3), transparent 45%);
  }
  .news-media.m-kickoff .sm {
    position: relative;
    font-family: 'Bricolage Grotesque', serif;
    color: var(--yellow);
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
  }
  .news-media.m-kickoff .sm small {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    font-weight: 400;
  }
  .news-media.m-escape {
    background:
      repeating-linear-gradient(45deg, #243150 0 10px, #2d3c5f 10px 20px);
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow);
  }
  .news-media.m-escape svg { width: 52px; height: 52px; }
  .news-media.m-video {
    background: var(--yellow);
    display: flex; align-items: center; justify-content: center;
  }
  .news-media.m-video::after {
    content: '';
    width: 0; height: 0;
    border-left: 28px solid var(--navy-ink);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 6px;
  }
  .news-body {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    text-transform: uppercase;
  }
  .news-cat {
    background: var(--paper-2);
    padding: 3px 9px;
    border-radius: 999px;
    color: var(--navy);
  }
  .news-card h4 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 2px 0 6px;
    color: var(--navy-ink);
  }
  .news-card.main h4 { font-size: 26px; line-height: 1.12; }
  .news-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
    flex-grow: 1;
  }
  .news-card .read {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
  }

  /* ----------- IMPACT / NUMBERS ----------- */
  .impact-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .impact-cell {
    padding: 40px 28px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .impact-cell:last-child { border-right: none; }
  .impact-cell .num {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 10px;
  }
  .impact-cell .label {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
  }
  .impact-cell .sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
  }

  /* ----------- NEWSLETTER ----------- */
  .cta-box {
    background: var(--yellow);
    border-radius: 22px;
    padding: 54px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .cta-box::before {
    content: 'SPARK';
    position: absolute;
    right: -40px;
    bottom: -70px;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 260px;
    font-weight: 800;
    color: rgba(26, 34, 56, 0.06);
    letter-spacing: -0.04em;
    line-height: 0.8;
    pointer-events: none;
  }
  .cta-box h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: clamp(30px, 3.2vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 8px 0 12px;
    color: var(--navy-ink);
    position: relative;
  }
  .cta-box p {
    color: var(--navy-ink);
    opacity: 0.75;
    font-size: 16px;
    margin: 0 0 4px;
    position: relative;
  }
  .cta-form {
    position: relative;
    display: flex;
    background: var(--navy-ink);
    border-radius: 14px;
    padding: 8px;
    gap: 8px;
  }
  .cta-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--paper);
    font-family: inherit;
    font-size: 15px;
    padding: 12px 16px;
    outline: none;
  }
  .cta-form input::placeholder { color: rgba(255,255,255,0.45); }
  .cta-form button {
    background: var(--yellow);
    color: var(--navy-ink);
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    font-size: 14.5px;
  }

  /* ----------- FOOTER ----------- */
  footer {
    background: var(--navy-ink);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-grid h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin: 0 0 20px;
    font-weight: 500;
  }
  .footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-grid a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14.5px;
  }
  .footer-grid a:hover { color: var(--yellow); }
  .footer-about .brand { color: var(--paper); }
  .footer-about .brand-text { color: var(--paper); }
  .footer-about .brand-text small { color: rgba(255,255,255,0.5); }
  .footer-about p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.6;
    margin: 18px 0 20px;
  }
  .eu-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .eu-block img {
    max-width: 200px;
    height: auto;
    display: block;
  }
  .eu-block p {
    font-size: 11.5px;
    color: #4a5273;
    line-height: 1.5;
    margin: 0;
  }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 26px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
    flex-wrap: wrap;
    gap: 12px;
  }
  .foot-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; margin-left: 20px; }
  .foot-bottom a:hover { color: var(--yellow); }

  /* ----------- RESPONSIVE ----------- */
  @media (max-width: 960px) {
    nav.primary { display: none; }
    .hero-inner, .about-grid, .cta-box { grid-template-columns: 1fr; gap: 40px; }
    .hero-meta { grid-template-columns: repeat(2, 1fr); }
    .hero-art { max-width: 480px; }
    .wp-grid, .partners-grid { grid-template-columns: 1fr; }
    .wp-card.featured { grid-column: auto; }
    .partner { border-right: none !important; }
    .partner:nth-last-child(-n+1) { border-bottom: none !important; }
    .partner:not(:last-child) { border-bottom: 1px solid var(--rule) !important; }
    .timeline { grid-template-columns: 1fr; gap: 30px; }
    .t-col { border-left: 2px solid rgba(255,255,255,0.1); padding-left: 22px; }
    .news-grid { grid-template-columns: 1fr; }
    .impact-row { grid-template-columns: repeat(2, 1fr); }
    .impact-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 620px) {
    .wrap { padding: 0 20px; }
    section.block { padding: 70px 0; }
    .hero { padding: 40px 0 20px; }
    .cta-box { padding: 34px; }
    .impact-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-form { flex-direction: column; }
    .cta-form button { width: 100%; }
  }

  /* =========================================================
     HERO (front-page)  — 2-column: copy + floating card stack
     ========================================================= */
  .wp-block-group.sp-hero {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    color: var(--ink);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
  }
  .wp-block-group.sp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(55% 60% at 8% 12%, rgba(59, 178, 217, 0.10), transparent 60%),
      radial-gradient(45% 55% at 95% 22%, rgba(245, 197, 24, 0.16), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .wp-block-group.sp-hero > * { position: relative; z-index: 1; }

  .wp-block-columns.sp-hero-cols {
    gap: 56px !important;
    align-items: center;
    margin-bottom: 0 !important;
  }

  /* ---------- LEFT column ---------- */
  .sp-hero-projecttitle {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0 0 14px;
    line-height: 1.4;
  }
  .sp-hero-projecttitle-mark {
    color: var(--navy-ink);
    font-weight: 700;
    letter-spacing: 0.12em;
    padding-right: 12px;
    border-right: 1px solid var(--rule-strong);
  }
  .sp-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 7px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0 0 26px;
  }
  .sp-hero-pill-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--yellow);
    color: var(--navy-ink);
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .sp-hero-title {
    font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    font-size: clamp(40px, 5.4vw, 76px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.02;
    color: var(--navy-ink);
    margin: 0 0 26px;
  }
  .sp-hero-title em.hl-yellow,
  .sp-hero-title .hl-yellow {
    font-style: normal;
    background: linear-gradient(180deg, transparent 55%, var(--yellow) 55%);
    padding: 0 4px;
  }
  .sp-hero-title .hl-aqua {
    color: var(--aqua);
    font-style: normal;
  }

  .sp-hero-lede {
    font-size: clamp(17px, 1.3vw, 19px);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 0 32px;
  }

  .wp-block-buttons.sp-hero-buttons { gap: 12px; margin-bottom: 36px; }

  .sp-hero-eu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    max-width: 420px;
    margin: 0 0 32px;
  }
  .sp-hero-eu-logo {
    display: block;
    height: 44px;
    width: auto;
    max-width: 100%;
  }
  .sp-hero-eu-id {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    border-top: 1px solid var(--rule);
    padding-top: 12px;
    width: 100%;
  }

  .sp-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    margin: 0;
  }
  .sp-hero-stats > div { margin: 0; }
  .sp-hero-stats dt {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .sp-hero-stats dd {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy-ink);
    letter-spacing: -0.01em;
  }

  /* ---------- RIGHT column — floating cards ---------- */
  .sp-hero-art {
    position: relative;
    aspect-ratio: 1 / 1.05;
    min-height: 460px;
  }
  .sp-hero-art > * {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 22px 48px -24px rgba(15, 22, 42, 0.32), 0 2px 6px rgba(15, 22, 42, 0.06);
    border: 1px solid var(--rule);
  }

  /* Logo card — top half, dark navy */
  .sp-card-logo {
    top: 0; left: 8%; right: 8%;
    height: 62%;
    background: linear-gradient(150deg, #0f162a 0%, #1a2238 55%, #233054 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .sp-card-logo::after {
    content: '';
    position: absolute;
    width: 70%; height: 70%;
    top: 10%; left: 15%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.18) 0%, transparent 60%);
    pointer-events: none;
  }
  .sp-card-logo img {
    width: 64%;
    max-width: 240px;
    height: auto;
    position: relative;
    z-index: 1;
  }

  /* Project-phase card — bottom-left, white */
  .sp-card-phase {
    bottom: 0; left: 0;
    width: 60%;
    padding: 18px 20px 20px;
  }
  .sp-card-phase dl { margin: 0 0 14px; }
  .sp-card-phase .sp-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 6px 0;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
  }
  .sp-card-phase .sp-row dt {
    color: var(--ink-soft);
    margin: 0;
  }
  .sp-card-phase .sp-row dd {
    margin: 0;
    color: var(--navy-ink);
    font-weight: 600;
  }
  .sp-card-phase .sp-progress {
    height: 6px;
    background: var(--paper-2);
    border-radius: 999px;
    overflow: hidden;
    margin: 4px 0 8px;
  }
  .sp-card-phase .sp-progress > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--aqua) 0%, var(--navy) 100%);
    border-radius: 999px;
  }
  .sp-card-phase .sp-pct {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-ink);
    line-height: 1;
  }

  /* Focus-area card — bottom-right, yellow */
  .sp-card-focus {
    bottom: 4%;
    right: 0;
    width: 64%;
    padding: 18px 22px 22px;
    background: var(--yellow) !important;
    border-color: rgba(15, 22, 42, 0.08) !important;
  }
  .sp-card-focus .sp-label {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy-ink);
    opacity: 0.7;
    margin: 0 0 8px;
  }
  .sp-card-focus h3 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-ink);
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .sp-card-focus p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--navy-ink);
    margin: 0;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 960px) {
    .wp-block-columns.sp-hero-cols {
      flex-wrap: wrap !important;
      gap: 48px !important;
    }
    .wp-block-columns.sp-hero-cols > .wp-block-column {
      flex-basis: 100% !important;
    }
    .sp-hero-art {
      max-width: 480px;
      margin: 0 auto;
      min-height: 420px;
    }
    .sp-hero-title { font-size: clamp(36px, 8vw, 56px); }
    .sp-hero-stats { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .wp-block-group.sp-hero { padding: 36px 20px 56px !important; min-height: auto; }
    .sp-hero-buttons { flex-direction: column; align-items: stretch; }
    .sp-hero-buttons .wp-block-button { width: 100%; }
    .sp-hero-buttons .wp-block-button__link { width: 100%; text-align: center; display: block; }
    .sp-hero-art { min-height: 380px; }
    .sp-card-logo { left: 0; right: 0; }
    .sp-card-phase, .sp-card-focus { width: 70%; }
  }

  /* =========================================================
     SECTION EYEBROW ICONS — small accent before each label
     Color inherits from text color via currentColor.
     ========================================================= */
  .sp-eyebrow {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
  }
  .sp-eyebrow::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: currentColor;
    flex-shrink: 0;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
  /* Brief — document with folded corner */
  .sp-eyebrow-brief::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/></svg>");
  }
  /* Work — 2x2 grid */
  .sp-eyebrow-work::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='7' height='7'/><rect x='14' y='3' width='7' height='7'/><rect x='14' y='14' width='7' height='7'/><rect x='3' y='14' width='7' height='7'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='7' height='7'/><rect x='14' y='3' width='7' height='7'/><rect x='14' y='14' width='7' height='7'/><rect x='3' y='14' width='7' height='7'/></svg>");
  }
  /* Partners — two figures */
  .sp-eyebrow-partners::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/><circle cx='9' cy='7' r='4'/><path d='M23 21v-2a4 4 0 0 0-3-3.87'/><path d='M16 3.13a4 4 0 0 1 0 7.75'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/><circle cx='9' cy='7' r='4'/><path d='M23 21v-2a4 4 0 0 0-3-3.87'/><path d='M16 3.13a4 4 0 0 1 0 7.75'/></svg>");
  }
  /* News — megaphone */
  .sp-eyebrow-news::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11l18-5v12L3 14v-3z'/><path d='M11.6 16.8a3 3 0 1 1-5.8-1.6'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 11l18-5v12L3 14v-3z'/><path d='M11.6 16.8a3 3 0 1 1-5.8-1.6'/></svg>");
  }
  /* Roadmap — clock */
  .sp-eyebrow-roadmap::before {
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>");
            mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>");
  }

  /* =========================================================
     ABOUT SECTION — project facts card next to intro copy
     ========================================================= */
  .sp-about-facts {
    display: grid;
    gap: 18px;
    padding: 26px 28px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 16px;
    margin: 6px 0 0;
  }
  .sp-about-facts > div {
    display: grid;
    gap: 4px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
  }
  .sp-about-facts > div:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .sp-about-facts dt {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0;
  }
  .sp-about-facts dd {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.45;
    color: var(--navy-ink);
    font-weight: 500;
  }

  /* =========================================================
     SUSTAINABILITY callout — closes the About section
     ========================================================= */
  .sp-sustainability {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 28px;
    align-items: center;
    margin-top: 56px;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--navy-ink) 0%, #1f2a4a 100%);
    color: #e4e6ef;
    border-radius: 18px;
    box-shadow: 0 22px 50px -28px rgba(15, 22, 42, 0.5);
  }
  .sp-sustainability-mark {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: var(--yellow);
    font-weight: 400;
    transform: rotate(-8deg);
    padding-right: 8px;
  }
  .sp-sustainability-body { min-width: 0; }
  .sp-sustainability-eyebrow {
    margin: 0 0 6px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 600;
  }
  .sp-sustainability h4 {
    margin: 0 0 12px;
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.015em;
    line-height: 1.2;
  }
  .sp-sustainability p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.6;
    color: #c0c5d8;
  }
  .sp-sustainability a {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .sp-sustainability a:hover { color: #fff; }
  .sp-sustainability-cc {
    display: inline-flex !important;
    align-items: center;
    margin-top: 18px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
    line-height: 0;
    text-decoration: none !important;
    transition: opacity 0.15s;
  }
  .sp-sustainability-cc:hover { opacity: 0.85; }
  .sp-sustainability-cc img {
    display: block;
    height: 26px;
    width: auto;
  }
  @media (max-width: 640px) {
    .sp-sustainability {
      grid-template-columns: 1fr;
      gap: 14px;
      padding: 24px 22px;
    }
    .sp-sustainability-mark { font-size: 48px; padding: 0; }
  }

  /* =========================================================
     TIMELINE / ROADMAP — fixed-width date col, status pill, body
     ========================================================= */
  .sp-timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--rule-strong);
  }
  .sp-timeline-row {
    display: grid;
    grid-template-columns: 160px 110px 1fr;
    gap: 8px 28px;
    padding: 26px 0;
    border-bottom: 1px solid var(--rule);
    align-items: start;
    position: relative;
  }
  .sp-timeline-date {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-ink);
    padding-top: 3px;
    white-space: nowrap;
  }
  .sp-timeline-status {
    display: inline-block;
    justify-self: start;
    align-self: start;
    padding: 4px 12px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1px;
    border: 1px solid transparent;
  }
  .sp-timeline-row.is-done .sp-timeline-status {
    background: rgba(59, 178, 217, 0.16);
    color: #1d6b89;
    border-color: rgba(59, 178, 217, 0.4);
  }
  .sp-timeline-row.is-active .sp-timeline-status {
    background: var(--yellow);
    color: var(--navy-ink);
    border-color: rgba(15, 22, 42, 0.15);
  }
  .sp-timeline-row.is-upcoming .sp-timeline-status {
    background: #fff;
    color: var(--ink-soft);
    border-color: var(--rule);
  }
  .sp-timeline-body { min-width: 0; }
  .sp-timeline-body h3 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-ink);
    margin: 0 0 8px;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }
  .sp-timeline-loc {
    margin: 0 0 6px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .sp-timeline-flag {
    display: inline-block;
    margin-right: 4px;
    letter-spacing: 0.04em;
  }
  .sp-timeline-desc {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink);
  }
  /* Active row gets a subtle highlight bar on the left */
  .sp-timeline-row.is-active {
    background: linear-gradient(90deg, rgba(245, 197, 24, 0.10) 0%, transparent 50%);
    margin: 0 -16px;
    padding: 26px 16px;
    border-radius: 8px;
  }
  /* Past rows fade slightly */
  .sp-timeline-row.is-done {
    opacity: 0.92;
  }
  .sp-timeline-row.is-done .sp-timeline-body h3 {
    color: var(--navy-ink);
  }

  @media (max-width: 720px) {
    .sp-timeline-row {
      grid-template-columns: 1fr;
      gap: 6px;
      padding: 22px 0;
    }
    .sp-timeline-date { padding-top: 0; }
    .sp-timeline-row.is-active {
      margin: 0;
      padding: 22px 14px;
    }
  }

  /* =========================================================
     CPT DETAIL PAGES — shared base + partner/wp/news specifics
     ========================================================= */
  .sp-partner-detail,
  .sp-wp-detail,
  .sp-news-detail {
    background: var(--paper);
  }
  .sp-partner-detail-cols,
  .sp-wp-detail-cols {
    align-items: start !important;
    gap: 60px !important;
  }
  .sp-partner-detail .wp-block-post-content,
  .sp-wp-detail .wp-block-post-content,
  .sp-news-detail .wp-block-post-content {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
  }
  .sp-partner-detail .wp-block-post-content h2,
  .sp-wp-detail .wp-block-post-content h2,
  .sp-news-detail .wp-block-post-content h2 {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 600;
    color: var(--navy-ink);
    margin: 36px 0 16px;
    letter-spacing: -0.015em;
  }
  .sp-partner-detail .wp-block-post-content h3,
  .sp-wp-detail .wp-block-post-content h3,
  .sp-news-detail .wp-block-post-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-ink);
    margin: 28px 0 12px;
  }
  .sp-partner-detail .wp-block-post-content ul,
  .sp-wp-detail .wp-block-post-content ul,
  .sp-news-detail .wp-block-post-content ul {
    padding-left: 22px;
    margin: 14px 0;
  }
  .sp-partner-detail .wp-block-post-content li,
  .sp-wp-detail .wp-block-post-content li,
  .sp-news-detail .wp-block-post-content li {
    margin-bottom: 8px;
  }

  /* ---------- Shared meta-card chrome (right column) ---------- */
  .sp-partner-meta,
  .sp-wp-meta {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 26px 28px;
    position: sticky;
    top: 24px;
  }

  /* ---------- Partner meta ---------- */
  .sp-partner-meta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 12px;
    margin-bottom: 20px;
    margin-top: -10px;
  }
  .sp-partner-meta-logo img,
  .sp-partner-meta-logo > svg {
    max-width: 100% !important;
    max-height: 64px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
  }
  .sp-partner-meta-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 18px;
  }
  .sp-partner-meta-abbr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 36px;
    padding: 0 12px;
    background: var(--paper-2);
    border-radius: 10px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
  }
  .sp-partner-meta-abbr.is-coord {
    background: var(--yellow);
    color: var(--navy-ink);
  }
  .sp-partner-meta-role {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .sp-partner-meta-list,
  .sp-wp-meta-list {
    display: grid;
    gap: 16px;
    margin: 0;
  }
  .sp-partner-meta-list > div,
  .sp-wp-meta-list > div {
    display: grid;
    gap: 4px;
  }
  .sp-partner-meta-list dt,
  .sp-wp-meta-list dt {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0;
  }
  .sp-partner-meta-list dd,
  .sp-wp-meta-list dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: var(--navy-ink);
    font-weight: 500;
  }
  .sp-partner-meta-flag {
    display: inline-block;
    margin-right: 6px;
  }
  .sp-partner-meta-link {
    color: var(--aqua);
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
    transition: color 0.15s;
  }
  .sp-partner-meta-link:hover { color: var(--navy-ink); text-decoration: underline; }
  .sp-partner-meta-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
  }
  .sp-partner-meta-stat-n {
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-ink);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .sp-partner-meta-stat-l {
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 4px;
    line-height: 1.3;
  }
  .sp-partner-meta-back,
  .sp-wp-meta-back {
    display: block;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.15s;
  }
  .sp-partner-meta-back:hover,
  .sp-wp-meta-back:hover { color: var(--navy-ink); }

  /* ---------- WP meta ---------- */
  .sp-wp-meta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--navy-ink);
    color: var(--yellow);
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    border-radius: 16px;
    margin-bottom: 18px;
  }
  .sp-wp-meta-tagline {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.4;
    color: var(--navy-ink);
    font-weight: 500;
  }
  .sp-wp-meta-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--paper-2);
    color: var(--ink-soft);
  }
  .sp-wp-meta-status.is-active {
    background: var(--yellow);
    color: var(--navy-ink);
  }
  .sp-wp-meta-status.is-completed {
    background: rgba(59, 178, 217, 0.16);
    color: #1d6b89;
  }
  .sp-wp-meta-featured {
    color: var(--yellow);
    font-weight: 600;
    font-size: 13px;
  }

  /* =========================================================
     PARTNERS MAP (Leaflet)
     ========================================================= */
  .sp-partners-map {
    height: 460px;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--rule);
    box-shadow: 0 18px 40px -28px rgba(15, 22, 42, 0.35);
    margin: 0 0 48px;
    background: var(--paper-2);
  }
  /* Override Leaflet attribution to match site type */
  .sp-partners-map .leaflet-control-attribution {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.85);
  }
  /* SPARK-coloured circular markers (CSS-only, no image asset) */
  .sp-map-marker {
    background: transparent;
    border: 0;
  }
  .sp-map-marker > span {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--aqua);
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(15, 22, 42, 0.35);
    transition: transform 0.18s;
  }
  .sp-map-marker.is-coord > span {
    width: 26px;
    height: 26px;
    background: var(--yellow);
    border-color: var(--navy-ink);
  }
  .leaflet-marker-icon.sp-map-marker:hover > span {
    transform: scale(1.18);
  }
  /* Popup */
  .sp-partners-map .leaflet-popup-content-wrapper {
    border-radius: 12px;
    padding: 4px 6px;
  }
  .sp-partners-map .leaflet-popup-content {
    margin: 12px 14px;
    font-family: 'Inter', system-ui, sans-serif;
  }
  .sp-map-popup-abbr {
    display: inline-block;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--paper-2);
    color: var(--ink-soft);
    margin: 0 0 6px;
  }
  .sp-map-popup-abbr.is-coord {
    background: var(--yellow);
    color: var(--navy-ink);
  }
  .sp-map-popup-title {
    display: block;
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-ink) !important;
    text-decoration: none;
    line-height: 1.2;
    margin: 2px 0 6px;
    letter-spacing: -0.01em;
  }
  .sp-map-popup-title:hover { text-decoration: underline; }
  .sp-map-popup-loc {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin: 0 0 8px;
  }
  .sp-map-popup-link {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--aqua) !important;
    text-decoration: none;
    font-weight: 600;
  }
  .sp-map-popup-link:hover { color: var(--navy-ink) !important; }
  @media (max-width: 720px) {
    .sp-partners-map { height: 360px; }
  }

  /* ---------- News meta strip ---------- */
  .sp-news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0;
  }
  .sp-news-meta-kicker {
    padding: 5px 11px;
    background: var(--yellow);
    color: var(--navy-ink);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  .sp-news-meta-sep { color: var(--rule-strong); }
  .sp-news-meta-date,
  .sp-news-meta-loc {
    color: var(--ink-soft);
  }

  /* ---------- Responsive: stack columns under 880px ---------- */
  @media (max-width: 880px) {
    .sp-partner-detail-cols,
    .sp-wp-detail-cols {
      flex-wrap: wrap !important;
      gap: 36px !important;
    }
    .sp-partner-detail-cols > .wp-block-column,
    .sp-wp-detail-cols > .wp-block-column {
      flex-basis: 100% !important;
    }
    .sp-partner-meta,
    .sp-wp-meta {
      position: static;
    }
  }

  /* =========================================================
     FOOTER GRID — brand / explore / legal / contact
     ========================================================= */
  .sp-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 56px;
    margin: 0 0 60px;
    color: #c8c9d2;
  }
  .sp-footer-brand-mark {
    margin: 0 0 6px;
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
  }
  .sp-footer-brand-tag {
    margin: 0 0 16px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yellow);
  }
  .sp-footer-brand-text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: #c8c9d2;
  }
  .sp-footer-h {
    margin: 0 0 16px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a8fa3;
  }
  .sp-footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }
  .sp-footer-nav a {
    color: #e4e6ef;
    text-decoration: none;
    font-size: 14.5px;
    line-height: 1.4;
    transition: color 0.15s;
  }
  .sp-footer-nav a:hover { color: var(--yellow); }
  .sp-footer-contact-email {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.4;
  }
  .sp-footer-contact-email a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
  }
  .sp-footer-contact-email a:hover { text-decoration: underline; }
  .sp-footer-contact-addr {
    margin: 0 0 22px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #c8c9d2;
    font-style: normal;
  }
  .sp-footer-contact-addr strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
  }
  .sp-footer-contact-socials {
    display: flex;
    gap: 10px;
  }
  .sp-footer-contact-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background 0.15s, color 0.15s, transform 0.15s;
  }
  .sp-footer-contact-socials a:hover {
    background: var(--yellow);
    color: var(--navy-ink);
    transform: translateY(-2px);
  }
  .sp-footer-contact-socials svg {
    width: 17px;
    height: 17px;
  }
  @media (max-width: 900px) {
    .sp-footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .sp-footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 560px) {
    .sp-footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  /* =========================================================
     FOOTER LEGAL — EU funding statement + CC license
     ========================================================= */
  .sp-footer-legal {
    display: grid;
    gap: 28px;
    color: #c8c9d2;
    font-size: 13px;
    line-height: 1.6;
  }
  .sp-footer-disclaimer {
    margin: 0;
    color: #c8c9d2;
    max-width: 980px;
  }
  .sp-footer-cc {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px 22px;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
  }
  .sp-footer-cc-badge {
    display: inline-flex;
    background: #fff;
    padding: 9px 12px;
    border-radius: 8px;
    line-height: 0;
    transition: opacity 0.15s;
  }
  .sp-footer-cc-badge:hover { opacity: 0.85; }
  .sp-footer-cc-badge img {
    display: block;
    height: 30px;
    width: auto;
  }
  .sp-footer-cc-text {
    margin: 0;
    color: #c8c9d2;
    font-size: 13px;
    line-height: 1.55;
  }
  .sp-footer-cc-text a {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
  }
  .sp-footer-cc-text a:hover { color: #fff; }
  .sp-footer-eprp {
    margin: 0;
    padding: 14px 18px;
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.22);
    border-radius: 10px;
    font-size: 13.5px;
    line-height: 1.4;
  }
  .sp-footer-eprp a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
  }
  .sp-footer-eprp a:hover { color: #fff; }
  .sp-footer-copyright {
    margin: 0;
    padding-top: 22px;
    border-top: 1px solid #2a3350;
    color: #8a8fa3;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  @media (max-width: 720px) {
    .sp-footer-cc {
      grid-template-columns: 1fr;
      gap: 14px;
      text-align: left;
    }
    .sp-footer-cc-badge { justify-self: start; }
  }

  /* =========================================================
     STICKY HEADER + NAV interaction (hover/current state)
     ========================================================= */
  /* WP wraps the template part in an outer <header class="wp-block-template-part">.
     That outer element is what needs to stick (sticky on the inner header
     gets clipped by the wrapper's flow). */
  header.wp-block-template-part {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--paper);
    transition: box-shadow 0.18s ease;
    display: block;
  }
  /* Constrain Leaflet z-indexes below the sticky header (Leaflet defaults go up to 700) */
  .sp-partners-map .leaflet-pane,
  .sp-partners-map .leaflet-top,
  .sp-partners-map .leaflet-bottom { z-index: 100 !important; }
  .sp-partners-map .leaflet-popup-pane { z-index: 200 !important; }
  .sp-partners-map .leaflet-tooltip-pane { z-index: 250 !important; }
  /* Subtle shadow once the page has scrolled past the announcement bar */
  body.is-scrolled header.wp-block-template-part {
    box-shadow: 0 6px 24px -18px rgba(15, 22, 42, 0.45);
  }

  /* Logo container: compact, doesn't inflate header height */
  .spark-site-header .wp-block-site-logo {
    line-height: 0;
  }
  .spark-site-header .wp-block-site-logo img,
  .spark-site-header .custom-logo {
    height: 44px !important;
    width: auto !important;
    max-width: none;
    transition: transform 0.18s ease;
  }
  .spark-site-header .wp-block-site-logo:hover img { transform: scale(1.04); }

  /* Trim header band padding so logo fits snugly */
  .spark-site-header > .wp-block-group:nth-child(2) {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  /* Anchor targets clear the sticky header */
  #about, #roadmap, #work, #partners, #news,
  .sp-about, .sp-timeline, .sp-section {
    scroll-margin-top: 92px;
  }
  html { scroll-behavior: smooth; }

  /* Nav item: hover + current-page state */
  .spark-site-header .wp-block-navigation .wp-block-navigation-item__content {
    position: relative;
    padding: 8px 4px;
    color: var(--navy-ink);
    transition: color 0.15s;
  }
  .spark-site-header .wp-block-navigation .wp-block-navigation-item__content::after {
    content: '';
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 2px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
  }
  .spark-site-header .wp-block-navigation .wp-block-navigation-item__content:hover {
    color: var(--navy);
  }
  .spark-site-header .wp-block-navigation .wp-block-navigation-item__content:hover::after,
  .spark-site-header .wp-block-navigation .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after,
  .spark-site-header .wp-block-navigation .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content::after,
  .spark-site-header .wp-block-navigation .current-menu-item > a::after,
  .spark-site-header .wp-block-navigation .current_page_item > a::after {
    transform: scaleX(1);
  }
  .spark-site-header .wp-block-navigation .current-menu-item > a,
  .spark-site-header .wp-block-navigation .current_page_item > a,
  .spark-site-header .wp-block-navigation .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
  .spark-site-header .wp-block-navigation .wp-block-navigation-item.current_page_item .wp-block-navigation-item__content {
    color: var(--navy);
    font-weight: 600;
  }

  /* --- Mobile overlay menu: stack centered & readable --- */
  .spark-site-header .wp-block-navigation__responsive-container.has-modal-open,
  .spark-site-header .wp-block-navigation__responsive-container.is-menu-open {
    background: var(--paper) !important;
    color: var(--navy-ink);
    padding: 24px;
  }
  .spark-site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    width: 100%;
    padding: 0;
  }
  .spark-site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    width: 100%;
    text-align: center;
  }
  .spark-site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    width: auto;
    margin: 0;
  }
  .spark-site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-ink);
    padding: 10px 14px;
  }
  .spark-site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after {
    bottom: 4px;
    height: 3px;
  }
  .spark-site-header .wp-block-navigation__responsive-container-close {
    color: var(--navy-ink) !important;
  }

  /* =========================================================
     COOKIE CONSENT BANNER (GDPR)
     ========================================================= */
  .sp-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    background: var(--navy-ink);
    color: #e4e6ef;
    border-radius: 14px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 920px;
    margin: 0 auto;
    animation: sp-consent-in 0.25s ease-out;
  }
  @keyframes sp-consent-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .sp-consent[hidden] { display: none; }
  .sp-consent-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 18px 22px;
  }
  .sp-consent-text h2 {
    margin: 0 0 4px;
    font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
  }
  .sp-consent-text p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.45;
    color: #c0c5d8;
  }
  .sp-consent-text a {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .sp-consent-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .sp-consent-btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 9px 18px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
  }
  .sp-consent-accept {
    background: var(--yellow);
    color: var(--navy-ink);
  }
  .sp-consent-accept:hover { background: #ffd84d; }
  .sp-consent-reject {
    background: transparent;
    color: #c0c5d8;
    border-color: rgba(255, 255, 255, 0.18);
  }
  .sp-consent-reject:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
  }
  @media (max-width: 640px) {
    .sp-consent-inner {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .sp-consent-actions { justify-content: stretch; }
    .sp-consent-btn { flex: 1; }
  }
