:root {
  --ink: #183a2d;
  --forest: #123d2c;
  --forest-deep: #0c2e22;
  --leaf: #6f9b63;
  --sage: #d9e4ce;
  --cream: #f3f0e5;
  --paper: #fbfaf4;
  --gold: #f3c969;
  --coral: #e7815d;
  --blue: #8ebdc0;
  --white: #fff;
  --line: rgba(24, 58, 45, 0.16);
  --shadow: 0 28px 70px rgba(12, 46, 34, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; background: white; padding: .7rem 1rem; z-index: 100; }
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(1380px, calc(100% - 48px));
  height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: var(--cream);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; width: fit-content; }
.brand-mark { width: 38px; height: 38px; color: var(--leaf); display: inline-flex; }
.brand-mark svg { width: 100%; }
.brand > span:last-child { display: flex; align-items: baseline; letter-spacing: -.04em; }
.brand strong { font-size: 1.25rem; letter-spacing: .04em; }
.brand b { color: var(--gold); font-size: .74rem; margin-left: .32rem; letter-spacing: .12em; }
nav { display: flex; gap: 2.2rem; font-size: .82rem; font-weight: 600; }
nav a { opacity: .78; transition: .2s ease; }
nav a:hover { opacity: 1; }
.language-switch { justify-self: end; display: flex; align-items: center; gap: .35rem; font-size: .75rem; color: rgba(255,255,255,.55); }
.lang-button { border: 0; background: none; color: rgba(255,255,255,.55); padding: .45rem; cursor: pointer; font-weight: 700; }
.lang-button.active { color: var(--gold); }

.hero {
  min-height: 830px;
  background: var(--forest);
  color: var(--cream);
  padding: 190px max(24px, calc((100vw - 1280px) / 2)) 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 4vw;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 720px; height: 720px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  right: -120px; top: 80px;
}
.hero-glow { position: absolute; inset: auto -10% -35% auto; width: 700px; height: 700px; border-radius: 50%; background: #48795c; filter: blur(120px); opacity: .22; }
.hero-copy { position: relative; z-index: 2; max-width: 780px; }
.eyebrow { font-size: .68rem; font-weight: 800; letter-spacing: .18em; color: var(--gold); margin: 0 0 1.75rem; }
.eyebrow.dark { color: var(--leaf); }
h1, h2, h3 { margin: 0; }
h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.7rem, 6.3vw, 7.5rem);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.055em;
}
h1 em { color: var(--gold); font-weight: 500; }
.hero-lead { max-width: 680px; font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.75; color: rgba(255,255,255,.7); margin: 2rem 0 2.3rem; }
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 1.2rem; border-radius: 3px; font-size: .79rem; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--forest-deep); background: var(--gold); min-width: 245px; }
.button-primary:hover { background: #ffda7a; }
.text-link { font-size: .79rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: .3rem; }
.hero-visual { position: relative; min-height: 490px; align-self: center; z-index: 2; }
.map-shape { width: 100%; max-width: 550px; position: absolute; inset: 0 0 auto auto; filter: drop-shadow(0 30px 45px rgba(0,0,0,.2)); }
.orbit { position: absolute; border: 1px solid rgba(243,201,105,.25); border-radius: 50%; }
.orbit-one { width: 430px; height: 430px; top: 28px; right: 30px; }
.orbit-two { width: 300px; height: 300px; top: 93px; right: 95px; }
.visual-note { position: absolute; display: flex; align-items: center; gap: .7rem; padding: .72rem .9rem; background: rgba(10, 42, 31, .86); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); box-shadow: 0 10px 25px rgba(0,0,0,.14); font-size: .68rem; }
.visual-note span { color: var(--gold); font-weight: 800; }
.visual-note b { font-weight: 600; }
.note-one { top: 34px; left: 8%; }
.note-two { top: 48%; right: 0; }
.note-three { bottom: 18px; left: 14%; }
.impact-strip {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
  min-height: 118px;
  z-index: 2;
}
.impact-strip > div { padding: 1.45rem 2rem 1rem 0; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.15); }
.impact-strip > div:not(:first-child) { padding-left: 2rem; }
.impact-strip > div:last-child { border-right: 0; }
.impact-strip strong { color: var(--gold); font-family: "Newsreader", serif; font-size: 1.12rem; font-weight: 600; }
.impact-strip span { font-size: .7rem; color: rgba(255,255,255,.55); margin-top: .25rem; }

.section { padding: 115px max(24px, calc((100vw - 1280px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 8vw; margin-bottom: 4rem; }
.section-heading h2 { font-family: "Newsreader", serif; font-size: clamp(3rem, 5vw, 5.5rem); line-height: .96; letter-spacing: -.045em; font-weight: 500; }
.section-heading > p { font-size: 1rem; line-height: 1.75; color: rgba(24,58,45,.7); margin: 0 0 .5rem; max-width: 510px; }
.pillars { display: grid; grid-template-columns: 1.12fr 1fr 1fr; gap: 1rem; }
.pillar { min-height: 390px; padding: 2rem; display: flex; flex-direction: column; border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar-primary { background: var(--forest); color: var(--white); }
.pillar-education { background: var(--gold); color: var(--forest-deep); }
.pillar-environment { background: var(--sage); }
.pillar-top { display: flex; justify-content: space-between; font-size: .7rem; font-weight: 800; margin-bottom: auto; opacity: .75; }
.pillar-icon { font-size: 1.3rem; }
.pillar h3 { font-family: "Newsreader", serif; font-size: 2.15rem; line-height: 1; font-weight: 600; max-width: 280px; margin-bottom: 1rem; }
.pillar p { font-size: .84rem; line-height: 1.65; opacity: .78; margin: 0 0 1.5rem; }
.pillar ul { list-style: none; margin: 0; padding: 1rem 0 0; border-top: 1px solid currentColor; display: flex; gap: .5rem; flex-wrap: wrap; opacity: .8; }
.pillar li { font-size: .66rem; border: 1px solid currentColor; border-radius: 99px; padding: .38rem .6rem; }
.europe-line { margin-top: 3rem; border-block: 1px solid var(--line); padding: 1.4rem; display: flex; align-items: center; justify-content: center; gap: 2rem; text-align: center; }
.europe-line p { font-family: "Newsreader", serif; font-size: 1.25rem; max-width: 790px; margin: 0; }
.eu-stars { color: var(--gold); letter-spacing: .2rem; font-size: .7rem; }

.explorer { background: #173f31; color: var(--cream); }
.explorer-heading > p { color: rgba(255,255,255,.65); }
.topic-picker { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.16); }
.topic-button { background: transparent; color: rgba(255,255,255,.55); border: 0; border-right: 1px solid rgba(255,255,255,.16); padding: 1.35rem 1.4rem; text-align: left; cursor: pointer; display: flex; flex-direction: column; gap: .6rem; font-size: 1rem; font-weight: 700; transition: .2s ease; }
.topic-button:last-child { border-right: 0; }
.topic-button:hover { color: white; background: rgba(255,255,255,.05); }
.topic-button.active { color: var(--forest-deep); background: var(--gold); }
.topic-number { font-size: .6rem; letter-spacing: .1em; opacity: .65; }
.action-panel { background: var(--cream); color: var(--ink); display: grid; grid-template-columns: .9fr 1.1fr; min-height: 380px; }
.action-intro { padding: 3.2rem; border-right: 1px solid var(--line); }
.action-kicker { color: var(--leaf); font-size: .65rem; letter-spacing: .14em; font-weight: 800; }
.action-intro h3 { font-family: "Newsreader", serif; font-size: clamp(2.3rem, 3.3vw, 3.8rem); line-height: 1; font-weight: 500; margin: 1.1rem 0 1.4rem; }
.action-intro p { color: rgba(24,58,45,.67); line-height: 1.7; font-size: .85rem; max-width: 450px; }
.action-list { display: flex; flex-direction: column; padding: 1.3rem 2.5rem; justify-content: center; }
.action-item { display: grid; grid-template-columns: 42px 1fr auto; gap: 1rem; align-items: center; padding: 1.3rem 0; border-bottom: 1px solid var(--line); animation: itemIn .35s both; }
.action-item:last-child { border-bottom: 0; }
.action-item-number { width: 36px; height: 36px; border-radius: 50%; background: var(--sage); display: grid; place-items: center; font-size: .65rem; font-weight: 800; }
.action-item h4 { font-family: "Newsreader", serif; font-size: 1.25rem; margin: 0 0 .25rem; }
.action-item p { margin: 0; font-size: .73rem; opacity: .65; }
.action-arrow { color: var(--leaf); }
.collaboration { background: var(--gold); color: var(--forest-deep); display: grid; grid-template-columns: 1fr .76fr; gap: 7vw; margin-top: 100px; padding: clamp(2rem, 5vw, 5rem); align-items: center; }
.collaboration h2 { font-family: "Newsreader", serif; font-size: clamp(2.7rem, 4.5vw, 5rem); line-height: .95; letter-spacing: -.045em; font-weight: 500; }
.collab-action p { line-height: 1.7; font-size: .9rem; margin: 0 0 1.5rem; }
.button-dark { background: var(--forest-deep); color: var(--white); width: 100%; }
.collab-action small { display: block; opacity: .65; margin-top: .8rem; line-height: 1.4; }

footer { background: var(--forest-deep); color: rgba(255,255,255,.55); padding: 2rem max(24px, calc((100vw - 1280px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; font-size: .65rem; }
.footer-brand { color: var(--cream); }
footer > p:last-child { justify-self: end; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes itemIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 940px) {
  .site-header { width: calc(100% - 36px); grid-template-columns: 1fr auto; height: 74px; }
  nav { display: none; }
  .hero { min-height: auto; padding-top: 145px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 710px; }
  .hero-visual { min-height: 430px; width: min(100%, 560px); justify-self: center; }
  .impact-strip { margin-top: 1rem; }
  .section-heading { grid-template-columns: 1fr; gap: 2rem; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar-primary { grid-row: span 1; }
  .pillar-environment { grid-column: 1 / -1; min-height: 320px; }
  .action-panel { grid-template-columns: 1fr; }
  .action-intro { border-right: 0; border-bottom: 1px solid var(--line); }
  .collaboration { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; gap: 1rem; }
  footer > p:nth-child(2) { display: none; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 28px); }
  .brand strong { font-size: 1.05rem; }
  .hero { padding: 130px 18px 0; }
  h1 { font-size: clamp(3.2rem, 14vw, 4.7rem); }
  .hero-lead { font-size: .94rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .hero-visual { min-height: 345px; margin-top: 1.4rem; }
  .map-shape { transform: scale(1.03); }
  .orbit-one { width: 300px; height: 300px; right: 10px; }
  .orbit-two { width: 220px; height: 220px; right: 48px; top: 66px; }
  .visual-note { font-size: .57rem; padding: .58rem .66rem; }
  .note-one { left: 0; }
  .note-two { right: 0; top: 46%; }
  .impact-strip { grid-template-columns: 1fr; }
  .impact-strip > div, .impact-strip > div:not(:first-child) { padding: 1rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .impact-strip > div:last-child { border-bottom: 0; }
  .section { padding: 78px 18px; }
  .section-heading { margin-bottom: 2.5rem; }
  .section-heading h2 { font-size: 3.25rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillar, .pillar-environment { grid-column: auto; min-height: 350px; }
  .europe-line { gap: .75rem; padding-inline: 0; }
  .eu-stars { display: none; }
  .topic-picker { grid-template-columns: 1fr 1fr; }
  .topic-button:nth-child(2) { border-right: 0; }
  .topic-button:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .action-intro { padding: 2rem 1.4rem; }
  .action-list { padding: .8rem 1.4rem; }
  .action-item { grid-template-columns: 36px 1fr; }
  .action-arrow { display: none; }
  .collaboration { margin-top: 70px; padding: 2rem 1.4rem; }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer > p:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
