:root {
  --ink: #242124;
  --muted: #6f6a6c;
  --line: #e9e5e3;
  --soft: #f7f5f2;
  --accent: #78b9cd;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
main { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; }
.hero { padding: 124px 0 112px; }
.logo { display: block; width: min(760px, 82vw); height: auto; margin: 0 0 40px; }
.tagline {
  margin: 0 0 96px;
  color: var(--muted);
  font-size: clamp(.82rem, 1.5vw, 1rem);
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tagline span { color: var(--accent); padding: 0 .45em; }
.intro { max-width: 760px; font-size: clamp(1.08rem, 1.65vw, 1.34rem); line-height: 1.62; letter-spacing: -.012em; }
.intro p { margin: 0 0 1.1em; }
.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.areas span { padding: 24px 0; font-size: .88rem; font-weight: 700; transition: color 160ms ease, transform 160ms ease; }
.areas span + span { border-left: 1px solid var(--line); padding-left: 32px; }
.areas span:hover { color: var(--accent); transform: translateY(-1px); }
.project {
  margin: 0 calc(50% - 50vw);
  padding: 108px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}
.eyebrow { margin: 0 0 20px; color: var(--muted); font-size: .82rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
h1 { max-width: 800px; margin: 0 0 32px; font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1.04; letter-spacing: -.045em; }
.project > p:not(.eyebrow) { max-width: 760px; margin: 0 0 1.05em; font-size: 1rem; line-height: 1.72; }
.eu-logo { display: block; width: min(520px, 100%); height: auto; margin-top: 48px; }
footer { display: flex; justify-content: space-between; gap: 40px; padding: 64px 0 72px; color: var(--muted); font-size: .88rem; line-height: 1.7; }
footer strong { color: var(--ink); }
footer p { margin: 0; align-self: flex-end; }

@media (max-width: 720px) {
  main { width: min(var(--max), calc(100% - 32px)); }
  .hero { padding: 68px 0 64px; }
  .logo { width: 96%; margin-bottom: 30px; }
  .tagline { margin-bottom: 56px; line-height: 1.8; }
  .tagline span { padding: 0 .2em; }
  .intro { font-size: 1.05rem; line-height: 1.65; }
  .areas { grid-template-columns: 1fr; margin-top: 52px; }
  .areas span { padding: 17px 0; }
  .areas span + span { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .project { padding-top: 68px; padding-bottom: 68px; }
  footer { flex-direction: column; padding: 48px 0; }
  footer p { align-self: auto; }
}
