:root {
  --paper: #f4f1eb;
  --ink: #252522;
  --muted: #6c6963;
  --line: #d8d2c8;
  --accent: #b94d2b;
  --dark: #252826;
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.site-header {
  height: 92px; padding: 0 3.5vw; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  border-bottom: 1px solid var(--line); background: var(--paper); position: relative; z-index: 20;
}
.brand { display: inline-flex; align-items: center; width: 58px; height: 58px; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.brand-footer { width: 84px; height: 84px; }
.main-nav { display: flex; gap: 42px; font-size: 13px; }
.main-nav a { transition: color .25s; }
.main-nav a:hover { color: var(--accent); }
.header-cta { justify-self: end; }
.menu-toggle { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; min-width: 215px;
  padding: 16px 20px; background: var(--accent); color: #fff; border: 1px solid var(--accent);
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: .25s ease;
}
.button:hover { background: var(--dark); border-color: var(--dark); }
.button-small { min-width: auto; padding: 11px 20px; }
.section-pad { padding: 8vw 5vw; }
.section-label { color: var(--accent); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.section-label::after { content: ""; display: block; width: 28px; height: 1px; background: currentColor; margin-top: 14px; }

.hero { min-height: calc(100vh - 92px); display: grid; grid-template-columns: 43% 57%; border-bottom: 1px solid var(--line); }
.hero-copy { min-width: 0; padding: 9vw 6vw 5vw 9vw; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(60px, 5vw, 92px); line-height: 1.02; letter-spacing: -.045em; margin-bottom: 42px; }
.hero-copy p { max-width: 450px; color: var(--muted); margin-bottom: 36px; }
.hero-copy > *, .site-footer > *, .contact > *, .about > *, .expertise > * { min-width: 0; }
.hero-image { margin: 0; overflow: hidden; }
.hero-image img { height: 100%; object-fit: cover; object-position: 55% center; transition: transform 1.2s ease; }
.hero-image:hover img { transform: scale(1.015); }

.positioning { display: grid; grid-template-columns: 24% 76%; border-bottom: 1px solid var(--line); }
.statement { max-width: 920px; font-family: var(--serif); font-size: clamp(32px, 3.6vw, 62px); line-height: 1.25; letter-spacing: -.025em; margin-bottom: 0; }
.services { display: grid; grid-template-columns: 15% 85%; border-bottom: 1px solid var(--line); }
.service-list { display: grid; grid-template-columns: repeat(4, 1fr); }
.service { padding: 0 2.5vw; border-left: 1px solid var(--line); }
.service > span, .step > span { color: var(--accent); font-family: var(--serif); font-size: 34px; }
.service h2 { min-height: 82px; margin: 22px 0; font-family: var(--serif); font-weight: 400; font-size: 27px; line-height: 1.15; }
.service p, .step p { color: var(--muted); font-size: 13px; }

.expertise { display: grid; grid-template-columns: 47% 53%; background: #e8e2d8; border-bottom: 1px solid var(--line); }
.expertise-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.expertise h2, .about h2, .contact h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(42px, 5vw, 78px); line-height: 1.08; letter-spacing: -.035em; margin: 38px 0 28px; }
.expertise-copy p { max-width: 530px; color: var(--muted); }
.text-link { margin-top: 26px; color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { margin-left: 20px; }
.expertise-image { min-height: 700px; background: url("assets/maastricht-hero.webp") center/cover no-repeat; }

.approach { display: grid; grid-template-columns: 15% 85%; border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding: 0 3vw 0 0; }
.step:not(:last-child)::after { content: "\2192"; position: absolute; right: 2vw; top: 16px; color: var(--line); }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 25px; margin: 22px 0 12px; }
.about { min-height: 650px; display: grid; grid-template-columns: 32% 68%; align-items: center; background: var(--dark); color: #fff; }
.section-label.light { color: #d87855; }
.about-copy { max-width: 800px; }
.about-copy p { max-width: 620px; color: #c6c7c2; font-size: 17px; }

.contact { display: grid; grid-template-columns: 1.5fr 1fr auto; align-items: center; gap: 6vw; background: var(--accent); color: #fff; }
.contact h2 { font-size: clamp(39px, 4.4vw, 70px); margin: 0; }
.contact p { margin: 0; max-width: 380px; }
.button-outline { background: transparent; border-color: rgba(255,255,255,.6); }
.button-outline:hover { background: #fff; color: var(--accent); border-color: #fff; }
.site-footer { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; padding-top: 5vw; padding-bottom: 2vw; }
.site-footer p { color: var(--muted); font-size: 12px; margin-top: 18px; }
.site-footer strong { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.site-footer small { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 20px; color: var(--muted); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.error-page { min-height: 100vh; padding: 5vw; display: grid; grid-template-rows: auto 1fr; gap: 12vh; }
.error-page > div { max-width: 760px; align-self: center; }
.error-page h1 { margin: 28px 0; }
.error-page p:not(.section-label) { color: var(--muted); margin-bottom: 36px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; height: 76px; }
  .site-header .brand { width: 52px; height: 52px; }
  .site-header .menu-toggle { display: block; position: absolute; z-index: 2; top: 18px; right: 5vw; min-width: 54px; padding: 10px 0 10px 20px; color: var(--ink); background: none; border: 0; opacity: 1; visibility: visible; font: 500 11px var(--sans); letter-spacing: .12em; text-align: right; text-transform: uppercase; }
  .main-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 30px 5vw; flex-direction: column; gap: 20px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .header-cta { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 14vw 6vw; }
  .hero-image { height: 62vw; min-height: 360px; }
  .positioning, .services, .approach { grid-template-columns: 1fr; gap: 60px; }
  .service-list, .steps { grid-template-columns: repeat(2, 1fr); gap: 60px 0; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-pad { padding: 22vw 6vw; }
  h1 { max-width: 100%; font-size: min(15vw, 64px); }
  .hero-copy p { width: 100%; max-width: 100%; }
  .button { min-width: 0; max-width: 100%; }
  .hero-copy { padding-top: 20vw; }
  .hero-image { height: 86vw; }
  .service-list, .steps, .expertise, .about { grid-template-columns: 1fr; }
  .service { padding: 35px 0; border-left: 0; border-top: 1px solid var(--line); }
  .service h2 { min-height: auto; }
  .expertise-image { min-height: 420px; }
  .steps { gap: 45px; }
  .step:not(:last-child)::after { display: none; }
  .about { gap: 70px; }
  .site-footer { grid-template-columns: 1fr; padding-top: 15vw; }
}
