:root {
  --ink: #18201d;
  --muted: #5c6862;
  --line: #d8dfda;
  --paper: #fbfcf8;
  --white: #ffffff;
  --forest: #23483a;
  --copper: #a65f35;
  --blue: #1c5c78;
  --sage: #dfe8df;
  --shadow: 0 18px 45px rgba(19, 34, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
.text-link:hover {
  color: var(--forest);
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: clamp(42px, 8vw, 92px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(17, 28, 24, 0.84), rgba(17, 28, 24, 0.36)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/7/72/Road_european_25_in_Belgium.jpg/1280px-Road_european_25_in_Belgium.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c8a2;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 720px;
}

p {
  margin: 0;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--white);
  color: var(--forest);
}

.button.secondary {
  color: var(--white);
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(20px, 5vw, 64px);
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.content,
.contact-grid p,
.band-inner p,
.legal-content p {
  color: var(--muted);
  font-size: 1.06rem;
}

.content {
  display: grid;
  gap: 18px;
}

.band {
  background: var(--sage);
}

.band-inner {
  max-width: 860px;
}

.band-inner p {
  margin-top: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-list div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 6px 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.legal-page {
  padding: clamp(42px, 8vw, 92px) clamp(20px, 5vw, 64px);
}

.legal-content {
  max-width: 850px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span:last-child {
  display: flex;
  gap: 16px;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 68vh;
    padding-top: 88px;
  }

  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
