:root {
  --navy: #0b1d34;
  --navy-2: #102b4d;
  --teal: #009b8f;
  --teal-dark: #007b72;
  --coral: #ff6a4d;
  --mustard: #f2b705;
  --lavender: #7e6bbf;
  --ink: #14263f;
  --muted: #5c6b7c;
  --line: #dfe6ec;
  --paper: #ffffff;
  --paper-alt: #f6f9fb;
  --teal-pale: #e8f7f5;
  --coral-pale: #fff0ec;
  --mustard-pale: #fff8de;
  --lavender-pale: #f1eef9;
  --shadow: 0 16px 50px rgba(11,29,52,.09);
  --shadow-sm: 0 8px 24px rgba(11,29,52,.08);
  --radius: 16px;
  --radius-lg: 28px;
  --container: 1180px;
  --font: "DejaVu Sans", "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { color: var(--navy); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--mustard); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  color: white;
  background: var(--navy);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--compact { padding: 62px 0; }
.section--alt { background: var(--paper-alt); }
.section--dark { color: white; background: var(--navy); }
.section-header { max-width: 780px; margin-bottom: 42px; }
.section-header.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 99px; background: var(--coral); }
.section--dark .eyebrow { color: #91e5dc; }
.section--dark .eyebrow::before { background: var(--mustard); }

h1, h2, h3, h4 { margin: 0 0 .7em; color: var(--navy); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.45rem, 5.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.25rem; }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.35rem); color: #34455a; line-height: 1.7; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: white; }
.section--dark .lead { color: #dbe5ef; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(11,29,52,.08);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { display: block; width: 220px; max-height: 62px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 1.35rem; }
.primary-nav a { color: var(--navy); font-size: .94rem; font-weight: 700; text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--teal-dark); }
.primary-nav a:hover { color: var(--teal-dark); }
.lang-switch { display: flex; gap: .25rem; padding-left: .75rem; border-left: 1px solid var(--line); }
.lang-switch a { min-width: 34px; padding: .25rem .4rem; text-align: center; border-radius: 999px; font-size: .78rem; }
.lang-switch a[aria-current="true"] { color: white; background: var(--navy); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: white; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--navy); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  width: 760px;
  height: 760px;
  right: -260px;
  top: -260px;
  border: 110px solid rgba(0,155,143,.16);
  border-radius: 50%;
}
.hero::after {
  width: 240px;
  height: 240px;
  right: 10%;
  bottom: -160px;
  transform: rotate(34deg);
  border: 46px solid rgba(255,106,77,.16);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: 70px; align-items: center; min-height: 690px; padding: 90px 0; }
.hero h1 { max-width: 850px; color: white; }
.hero .lead { max-width: 740px; color: #d9e5ef; }
.hero-logo-card {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 8% 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,155,143,.24), transparent 67%);
  filter: blur(6px);
}
.hero-icon { position: relative; width: min(380px, 90%); filter: drop-shadow(0 24px 42px rgba(0,0,0,.2)); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .78rem 1.25rem;
  color: white;
  background: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { color: white; background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); }
.button--light { color: var(--navy); background: white; border-color: white; }
.button--light:hover { color: var(--navy); background: #eef5f7; border-color: #eef5f7; }
.button--outline { color: white; background: transparent; border-color: rgba(255,255,255,.58); }
.button--outline:hover { background: rgba(255,255,255,.1); border-color: white; }
.button--navy { background: var(--navy); border-color: var(--navy); }
.button--navy:hover { background: var(--navy-2); border-color: var(--navy-2); }
.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 800; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .18s; }
.text-link:hover::after { transform: translateX(4px); }

.page-hero { padding: 86px 0 72px; color: white; background: var(--navy); }
.page-hero h1 { max-width: 900px; color: white; }
.page-hero .lead { max-width: 820px; color: #dbe5ef; }
.breadcrumb { margin-bottom: 1.1rem; color: #b9c8d7; font-size: .88rem; }
.breadcrumb a { color: #c8eae6; }

.identity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.identity-motif { position: relative; min-height: 430px; display: grid; place-items: center; }
.identity-motif img { width: 310px; }
.orbit { position: absolute; width: 390px; height: 390px; border: 1px solid var(--line); border-radius: 50%; }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 24px; height: 24px; border-radius: 50%; }
.orbit::before { top: 35px; right: 55px; background: var(--coral); }
.orbit::after { bottom: 50px; left: 20px; background: var(--mustard); }
.orbit--two { width: 300px; height: 300px; border-color: rgba(0,155,143,.35); transform: rotate(22deg); }
.orbit--two::before { background: var(--teal); }
.orbit--two::after { background: var(--lavender); }

.card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.pillar-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 18px; }
.priority-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.priority-card { padding: 28px 24px; }
.priority-card .icon-wrap { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 18px; color: var(--pillar); background: color-mix(in srgb, var(--pillar) 12%, white); }
.priority-card svg { width: 31px; height: 31px; stroke: currentColor; }
.priority-card h3 { font-size: 1.14rem; }
.priority-card p { color: var(--muted); font-size: .94rem; }
.priority-tags { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 6px; }
.priority-tags li { font-size: .82rem; font-weight: 700; color: var(--pillar); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.pillar-card { position: relative; overflow: hidden; min-height: 310px; padding: 28px 24px; }
.pillar-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--pillar); }
.pillar-card .icon-wrap { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 18px; color: var(--pillar); background: color-mix(in srgb, var(--pillar) 12%, white); }
.pillar-card svg { width: 31px; height: 31px; stroke: currentColor; }
.pillar-card h3 { font-size: 1.18rem; }
.pillar-card p { color: var(--muted); font-size: .94rem; }
.pillar--teal { --pillar: var(--teal); }
.pillar--coral { --pillar: var(--coral); }
.pillar--mustard { --pillar: #c28d00; }
.pillar--lavender { --pillar: var(--lavender); }
.pillar--navy { --pillar: var(--navy); }

.transition-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 38px; }
.transition-card { padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.transition-card .number { color: #80ddd4; font-size: 2.2rem; font-weight: 900; }
.transition-card p { color: #dbe5ef; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 18px; }
.stat { padding: 28px 24px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.stat-number { display: block; color: var(--teal); font-size: clamp(2.3rem,4vw,4rem); font-weight: 900; line-height: 1; }
.stat-label { display: block; margin-top: .75rem; color: var(--muted); font-weight: 700; }

.team-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.team-card { padding: 32px; }
.team-head { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
.avatar { width: 82px; height: 82px; flex: 0 0 auto; display: grid; place-items: center; color: white; border-radius: 26px; background: var(--accent); font-size: 1.4rem; font-weight: 900; }
.avatar--coral { --accent: var(--coral); }
.avatar--teal { --accent: var(--teal); }
.team-role { color: var(--teal-dark); font-weight: 800; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0; }
.tag { display: inline-flex; padding: .3rem .7rem; color: var(--navy); border: 1px solid var(--line); border-radius: 999px; background: var(--paper-alt); font-size: .8rem; font-weight: 700; }

.news-grid, .project-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.post-card, .project-card { overflow: hidden; }
.post-visual, .project-visual { position: relative; min-height: 190px; overflow: hidden; background: var(--navy); }
.post-visual::before, .project-visual::before { content: ""; position: absolute; width: 170px; height: 170px; right: -50px; top: -60px; border: 30px solid var(--visual, var(--teal)); transform: rotate(18deg); opacity: .55; }
.post-visual::after, .project-visual::after { content: ""; position: absolute; width: 120px; height: 120px; left: 30px; bottom: -70px; border: 24px solid var(--coral); transform: rotate(-22deg); opacity: .55; }
.post-body, .project-body { padding: 26px; }
.post-meta { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: .8rem; color: var(--muted); font-size: .82rem; }
.post-card h3, .project-card h3 { font-size: 1.25rem; }
.post-card p, .project-card p { color: var(--muted); }

.cta-band { position: relative; overflow: hidden; padding: 72px 0; color: white; background: var(--teal-dark); }
.cta-band::after { content: ""; position: absolute; right: -110px; top: -110px; width: 330px; height: 330px; border: 60px solid rgba(255,255,255,.1); transform: rotate(20deg); }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.cta-grid h2 { color: white; }
.cta-grid p { max-width: 780px; margin-bottom: 0; color: #e6fffc; }

.content-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr); gap: 56px; align-items: start; }
.aside-card { position: sticky; top: 110px; padding: 28px; }
.definition-list { margin: 0; }
.definition-list div { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.definition-list div:last-child { border-bottom: 0; }
.definition-list dt { color: var(--muted); }
.definition-list dd { margin: 0; font-weight: 700; }

.work-section { padding: 70px 0; border-bottom: 1px solid var(--line); }
.work-section:last-child { border-bottom: 0; }
.work-grid { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 70px; }
.work-label { position: sticky; top: 120px; }
.work-number { display: block; margin-bottom: .7rem; color: var(--accent); font-size: 3.6rem; font-weight: 900; line-height: 1; }
.action-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 28px; padding: 0; list-style: none; }
.action-list li { padding: 15px 17px; border-left: 4px solid var(--accent); background: var(--paper-alt); font-weight: 700; }

.bring-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.bring-card { padding: 26px; }
.bring-card::before { content: ""; display: block; width: 36px; height: 5px; margin-bottom: 20px; border-radius: 99px; background: var(--teal); }
.empty-state { padding: 42px; text-align: center; border: 2px dashed #cfd9e1; border-radius: var(--radius); background: var(--paper-alt); }

.form-card { padding: 34px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 800; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 50px;
  padding: .8rem .9rem;
  color: var(--ink);
  border: 1px solid #bfcbd5;
  border-radius: 10px;
  background: white;
}
.form-field textarea { min-height: 165px; resize: vertical; }
.form-note { margin-top: 1rem; color: var(--muted); font-size: .88rem; }
.contact-details { display: grid; gap: 14px; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--teal-dark); border-radius: 12px; background: var(--teal-pale); font-weight: 900; }

.article { padding: 72px 0 96px; }
.article-header { max-width: 880px; margin-bottom: 46px; }
.article-meta { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1rem; color: var(--muted); }
.prose { max-width: 790px; }
.prose h2 { margin-top: 2.3rem; font-size: 2rem; }
.prose h3 { margin-top: 1.8rem; }
.prose p, .prose li { font-size: 1.08rem; }
.prose blockquote { margin: 2rem 0; padding: 1.2rem 1.5rem; border-left: 5px solid var(--teal); background: var(--teal-pale); }
.prose a { overflow-wrap: anywhere; }

.legal-content h2 { margin-top: 2.4rem; font-size: 1.8rem; }
.legal-content h3 { margin-top: 1.7rem; font-size: 1.25rem; }
.legal-content ul { padding-left: 1.25rem; }
.notice { padding: 20px 22px; border-left: 5px solid var(--mustard); background: var(--mustard-pale); }

.site-footer { color: #d9e3ed; background: var(--navy); }
.footer-main { display: grid; grid-template-columns: 1.55fr .75fr .75fr .75fr; gap: 48px; padding: 72px 0 48px; }
.footer-logo { width: 230px; margin-bottom: 20px; }
.site-footer h3 { color: white; font-size: 1rem; }
.site-footer p { color: #c1ceda; }
.site-footer a { color: #d8e4ed; text-decoration: none; }
.site-footer a:hover { color: white; text-decoration: underline; }
.footer-links { display: grid; gap: .65rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.12); color: #aebdca; font-size: .86rem; }
.colour-rule { display: grid; grid-template-columns: repeat(4,1fr); height: 7px; }
.colour-rule span:nth-child(1) { background: var(--teal); }
.colour-rule span:nth-child(2) { background: var(--coral); }
.colour-rule span:nth-child(3) { background: var(--mustard); }
.colour-rule span:nth-child(4) { background: var(--lavender); }

@media (max-width: 1080px) {
  .pillar-grid, .priority-grid { grid-template-columns: repeat(2,1fr); }
  .pillar-card:nth-child(4), .pillar-card:nth-child(5) { min-height: 270px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .primary-nav[data-open="true"] { display: flex; }
  .primary-nav > a { padding: .75rem .3rem; border-bottom: 1px solid var(--line); }
  .lang-switch { padding: .9rem 0 0; border-left: 0; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 78px 0; }
  .hero-logo-card { display: none; }
  .identity-grid, .content-grid, .work-grid { grid-template-columns: 1fr; }
  .identity-motif { min-height: 360px; }
  .work-label, .aside-card { position: static; }
  .card-grid, .news-grid, .project-grid, .bring-grid { grid-template-columns: repeat(2,1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .footer-main > div:last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .section--compact { padding: 48px 0; }
  .header-inner { min-height: 72px; }
  .brand img { width: 180px; }
  .primary-nav { top: 72px; }
  .hero-grid { padding: 64px 0; }
  h1 { font-size: clamp(2.35rem,11vw,3.45rem); }
  h2 { font-size: clamp(1.85rem,8vw,2.6rem); }
  .pillar-grid, .priority-grid, .card-grid, .news-grid, .project-grid, .bring-grid, .transition-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 0; }
  .stats-grid { gap: 12px; }
  .stat { padding: 22px 14px; }
  .form-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .action-list { grid-template-columns: 1fr; }
  .definition-list div { grid-template-columns: 1fr; gap: 3px; }
  .footer-main { grid-template-columns: 1fr; padding-top: 56px; }
  .footer-bottom { flex-direction: column; }
}

.project-card-meta { margin: 0 0 .35rem; color: var(--muted); font-size: .84rem; }
.project-visual-acronym { position: relative; z-index: 2; display: block; padding-top: 64px; padding-left: 26px; color: white; font-size: 1.3rem; font-weight: 900; letter-spacing: .02em; }
.project-visual { aspect-ratio: 16 / 9; }
.project-visual--photo::before, .project-visual--photo::after { content: none; }
.project-visual--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.project-detail-image { display: block; width: 100%; max-width: 100%; height: auto; border-radius: var(--radius); }
.project-hero { position: relative; }
.project-hero::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--visual, var(--teal)); }
.org-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.org-card { padding: 24px; }
.org-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.plain-list { margin: 0; padding-left: 1.1rem; }
.plain-list li { margin-bottom: .5rem; color: var(--muted); font-size: .92rem; }
.eu-ack-card { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; padding: 26px 30px; }
.eu-ack-card img { display: block; }
.eu-ack-card p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.55; }

@media (max-width: 900px) {
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .eu-ack-card { grid-template-columns: 1fr; text-align: center; }
  .eu-ack-card img { margin: 0 auto; }
}

@media (max-width: 680px) {
  .org-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

.footer-eu { display: flex; align-items: center; gap: 22px; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-eu-logo { background: #fff; padding: 10px 14px; border-radius: 6px; width: fit-content; flex-shrink: 0; }
.footer-eu-logo img { display: block; width: 210px; max-width: 100%; height: auto; }
.footer-eu-text { max-width: 640px; }
.footer-eu-text p { margin: 0 0 8px; color: #cfdbe6; font-size: .84rem; line-height: 1.55; }
.footer-eu-text p:last-child { margin-bottom: 0; color: #9fb0c0; font-size: .78rem; }
@media (max-width: 680px) {
  .footer-eu { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-eu-logo img { width: 170px; }
}
