:root {
  --ink: #18231f;
  --ink-soft: #43504a;
  --paper: #f3f0e8;
  --paper-deep: #e8e3d7;
  --white: #fffdf8;
  --green: #183d32;
  --green-light: #2d594a;
  --sage: #9eac95;
  --rose: #9b5146;
  --gold: #b58a4b;
  --line: rgba(24, 35, 31, 0.16);
  --shadow: 0 24px 70px rgba(24, 35, 31, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: rgba(155, 81, 70, 0.5); text-underline-offset: 4px; }
a:hover { text-decoration-color: var(--rose); }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 800px); margin-inline: auto; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--rose);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 1px; background: currentColor; content: ""; }
.eyebrow.light { color: #e4be84; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.1;
}
h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.25rem, 4.4vw, 4rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
p { margin: 0 0 1.35em; }
.lead { max-width: 760px; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.5; }
.muted { color: var(--ink-soft); }
.small { font-size: .88rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; text-decoration: none; }
.text-link::after { content: "\2192"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--rose);
  color: white;
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: #834139; transform: translateY(-2px); }
.button.ghost { border-color: rgba(255,255,255,.48); background: transparent; }
.button.ghost:hover { background: rgba(255,255,255,.1); }

.site-header { position: relative; z-index: 50; background: var(--paper); }
.topline { border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .73rem; letter-spacing: .09em; text-transform: uppercase; }
.topline .container { display: flex; min-height: 35px; align-items: center; justify-content: space-between; }
.topline span:last-child { color: var(--rose); font-weight: 800; }
.nav-wrap { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--ink); text-decoration: none; }
.brand-mark { position: relative; width: 38px; height: 48px; border: 1px solid var(--green); }
.brand-mark::before, .brand-mark::after { position: absolute; content: ""; }
.brand-mark::before { inset: 6px 7px 13px; border: 1px solid var(--green); border-bottom: 0; }
.brand-mark::after { left: 11px; right: 11px; bottom: 7px; height: 1px; background: var(--rose); box-shadow: 0 -5px 0 var(--green); }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.brand-text small { margin-top: 7px; color: var(--ink-soft); font-size: .61rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; padding: 8px 0; font-size: .83rem; font-weight: 720; text-decoration: none; }
.main-nav a::after { position: absolute; right: 0; bottom: 1px; left: 0; height: 1px; background: var(--rose); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-contact { padding: 10px 15px !important; border: 1px solid var(--line); }
.nav-contact::after { display: none; }
.menu-toggle { display: none; width: 47px; height: 47px; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 22px; height: 1px; margin: 5px auto; background: currentColor; content: ""; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.menu-toggle[aria-expanded="true"] { border-color: rgba(255,255,255,.45); color: white; }

.hero { position: relative; min-height: 700px; display: grid; align-items: end; overflow: hidden; background: var(--green); color: white; }
.hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,28,23,.91) 0%, rgba(13,28,23,.64) 43%, rgba(13,28,23,.08) 79%), url("assets/beelden/rozenoord-herdenken.webp") center/cover; content: ""; }
.hero::after { position: absolute; inset: 0; border: 16px solid rgba(243,240,232,.12); content: ""; pointer-events: none; }
.hero-content { position: relative; z-index: 1; padding-block: 115px 90px; }
.hero h1 { max-width: 890px; }
.hero .intro { max-width: 620px; margin: 28px 0 34px; color: rgba(255,255,255,.83); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-index { position: absolute; right: max(20px, calc((100vw - var(--max))/2)); bottom: 38px; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); width: min(490px, 45vw); padding: 22px 0; border-top: 1px solid rgba(255,255,255,.35); }
.hero-index div { padding: 0 18px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-index div:last-child { border: 0; }
.hero-index strong { display: block; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; line-height: 1; }
.hero-index span { display: block; margin-top: 6px; color: rgba(255,255,255,.7); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }

.section { padding-block: clamp(78px, 10vw, 140px); }
.section-tight { padding-block: 72px; }
.section-dark { background: var(--green); color: white; }
.section-white { background: var(--white); }
.section-rose { background: var(--rose); color: white; }
.intro-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(45px, 8vw, 120px); align-items: start; }
.intro-grid h2 { max-width: 570px; }
.intro-grid .copy { padding-top: 14px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 42px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 25px 22px 25px 0; }
.stat + .stat { padding-left: 22px; border-left: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.1; }
.stat span { color: var(--ink-soft); font-size: .77rem; }

.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.feature-card { position: relative; min-height: 360px; padding: 40px; overflow: hidden; background: var(--paper-deep); text-decoration: none; }
.feature-card:nth-child(1) { grid-column: span 7; }
.feature-card:nth-child(2) { grid-column: span 5; background: var(--green); color: white; }
.feature-card:nth-child(3) { grid-column: span 5; background: var(--rose); color: white; }
.feature-card:nth-child(4) { grid-column: span 7; }
.feature-card::after { position: absolute; right: -55px; bottom: -75px; width: 190px; height: 190px; border: 1px solid currentColor; border-radius: 50%; opacity: .14; content: ""; transition: transform .35s ease; }
.feature-card:hover::after { transform: scale(1.2); }
.feature-card .number { display: block; margin-bottom: 70px; color: var(--rose); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.feature-card:nth-child(2) .number, .feature-card:nth-child(3) .number { color: #e4be84; }
.feature-card h3 { max-width: 500px; }
.feature-card p { max-width: 580px; margin: 18px 0 26px; font-size: .92rem; line-height: 1.65; opacity: .8; }

.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; background: var(--green); color: white; }
.split-image { min-height: 480px; background: url("assets/beelden/monumentaal-dakonderhoud.webp") center/cover; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 7vw, 100px); }
.split-copy p { max-width: 600px; color: rgba(255,255,255,.78); }
.split-copy .button { align-self: flex-start; margin-top: 12px; }

.quote-band { padding: 72px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-band blockquote { position: relative; max-width: 900px; margin: 0 auto; padding-left: 54px; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.7rem); line-height: 1.3; }
.quote-band blockquote::before { position: absolute; top: -10px; left: 0; color: var(--rose); font-size: 4rem; content: "“"; }

.page-hero { padding: clamp(80px, 11vw, 145px) 0 80px; border-bottom: 1px solid var(--line); background: var(--paper); }
.page-hero h1 { max-width: 950px; font-size: clamp(3rem, 7vw, 6.2rem); }
.page-hero .lead { margin-top: 28px; color: var(--ink-soft); }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.image-hero { position: relative; min-height: min(66vw, 720px); background: url("assets/beelden/rozenoord-herdenken.webp") center/cover; }
.image-hero .caption { position: absolute; right: 18px; bottom: 16px; max-width: 400px; padding: 9px 12px; background: rgba(18,30,25,.8); color: white; font-size: .7rem; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: clamp(50px, 8vw, 110px); align-items: start; }
.article { max-width: 770px; }
.article h2 { margin: 2.1em 0 .55em; font-size: clamp(2rem, 3.5vw, 3.2rem); scroll-margin-top: 40px; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 1.8em 0 .55em; }
.article p { color: #2f3e37; }
.article .intro-paragraph { color: var(--ink); font-family: var(--serif); font-size: 1.4rem; line-height: 1.55; }
.article ul { margin: 0 0 1.6em; padding-left: 1.15em; }
.article li { margin-bottom: .5em; }
.article a { color: var(--rose); font-weight: 700; }
.article-callout { margin: 44px 0; padding: 34px; border-left: 3px solid var(--rose); background: var(--white); }
.article-callout h3 { margin-top: 0; }
.article-note { margin: 36px 0; padding: 26px 28px; border: 1px solid var(--line); font-size: .92rem; }
.side-nav { position: sticky; top: 28px; padding: 28px; border-top: 3px solid var(--rose); background: var(--white); }
.side-nav strong { display: block; margin-bottom: 15px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.side-nav a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .82rem; line-height: 1.4; text-decoration: none; }
.side-nav a:hover { color: var(--rose); }

.timeline { position: relative; margin-top: 60px; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 142px; width: 1px; background: var(--line); content: ""; }
.timeline-item { display: grid; grid-template-columns: 115px 1fr; gap: 55px; padding-bottom: 50px; }
.timeline-year { position: relative; padding-top: 4px; color: var(--rose); font-family: var(--serif); font-size: 1.45rem; text-align: right; }
.timeline-year::after { position: absolute; top: 12px; right: -34px; width: 10px; height: 10px; border: 3px solid var(--paper); border-radius: 50%; background: var(--rose); content: ""; }
.timeline-content { max-width: 720px; }
.timeline-content h3 { margin-bottom: 12px; }

.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.fact-card { padding: 32px; border: 1px solid var(--line); background: var(--white); }
.fact-card .icon { display: grid; width: 43px; height: 43px; margin-bottom: 45px; place-items: center; border: 1px solid var(--rose); border-radius: 50%; color: var(--rose); font-family: var(--serif); }
.fact-card p { margin: 14px 0 0; color: var(--ink-soft); font-size: .9rem; }

.route-list { counter-reset: route; display: grid; gap: 20px; margin-top: 45px; }
.route-stop { counter-increment: route; display: grid; grid-template-columns: 78px 1fr; gap: 25px; padding: 28px; border: 1px solid var(--line); background: var(--white); }
.route-stop::before { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: var(--green); color: white; font-family: var(--serif); font-size: 1.4rem; content: counter(route, decimal-leading-zero); }
.route-stop h3 { margin-bottom: 10px; }
.route-stop p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.contact-card { padding: clamp(34px, 6vw, 70px); background: var(--white); }
.contact-card.dark { background: var(--green); color: white; }
.contact-card h2 { margin-bottom: 28px; }
.contact-list { display: grid; gap: 0; margin-top: 35px; }
.contact-row { display: grid; grid-template-columns: 125px 1fr; gap: 20px; padding: 18px 0; border-top: 1px solid currentColor; border-color: rgba(255,255,255,.18); }
.contact-row span { color: rgba(255,255,255,.62); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-row a { color: white; }
.editorial-box { margin-top: 34px; padding: 26px; background: var(--paper); }

.related { border-top: 1px solid var(--line); }
.related-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: flex; min-height: 280px; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); background: var(--white); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.related-card .tag { color: var(--rose); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.related-card h3 { margin-top: 50px; }
.related-card span:last-child { margin-top: 30px; font-size: .8rem; font-weight: 750; }

.site-footer { padding: 78px 0 32px; background: #111b17; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 55px; padding-bottom: 62px; }
.footer-brand { max-width: 330px; }
.footer-brand p { margin-top: 22px; color: rgba(255,255,255,.64); font-size: .86rem; }
.footer-column strong { display: block; margin-bottom: 18px; color: #e4be84; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a, .footer-column span { display: block; margin: 10px 0; color: rgba(255,255,255,.75); font-size: .82rem; line-height: 1.5; text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.48); font-size: .72rem; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 0; z-index: -1; display: flex; visibility: hidden; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; padding: 100px 32px 45px; background: var(--green); opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
  .main-nav.open { z-index: 40; visibility: visible; opacity: 1; }
  .main-nav a { width: 100%; padding: 10px 0; color: white; font-family: var(--serif); font-size: clamp(1.6rem, 6vw, 2.7rem); font-weight: 500; }
  .nav-contact { margin-top: 10px; padding: 10px 0 !important; border: 0; }
  .menu-toggle { position: relative; z-index: 60; }
  .hero-index { position: relative; right: auto; bottom: auto; width: min(calc(100% - 40px), var(--max)); margin: 0 auto 32px; }
  .hero { min-height: 760px; }
  .hero-content { padding-bottom: 50px; }
  .intro-grid, .article-layout, .contact-grid { grid-template-columns: 1fr; }
  .side-nav { position: static; order: -1; }
  .feature-card:nth-child(n) { grid-column: span 6; }
  .split-feature { grid-template-columns: 1fr; }
  .split-copy { min-height: 500px; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .topline span:first-child { display: none; }
  .topline .container { justify-content: flex-end; }
  .nav-wrap { min-height: 76px; }
  .brand-text strong { font-size: 1.12rem; }
  .brand-text small { display: none; }
  .brand-mark { width: 31px; height: 40px; }
  .hero { min-height: 710px; }
  .hero::before { background: linear-gradient(90deg, rgba(13,28,23,.9), rgba(13,28,23,.45)), url("assets/beelden/rozenoord-herdenken.webp") 62% center/cover; }
  .hero::after { border-width: 8px; }
  .hero-content { padding: 85px 0 35px; }
  .hero-index { grid-template-columns: 1fr; }
  .hero-index div { display: flex; align-items: baseline; justify-content: space-between; padding: 10px 4px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .hero-index div:last-child { border-bottom: 0; }
  .hero-index strong { font-size: 1.35rem; }
  .section { padding-block: 75px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat + .stat { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .feature-card:nth-child(n) { grid-column: 1 / -1; min-height: 320px; padding: 30px; }
  .feature-card .number { margin-bottom: 50px; }
  .split-image { min-height: 360px; }
  .split-copy { min-height: 0; padding: 58px 28px; }
  .quote-band blockquote { padding-left: 36px; }
  .page-hero { padding-top: 70px; }
  .page-hero-meta { display: grid; gap: 8px; }
  .image-hero { min-height: 440px; }
  .facts-grid, .related-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 12px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding-left: 40px; }
  .timeline-year { text-align: left; }
  .timeline-year::after { top: 10px; right: auto; left: -34px; }
  .route-stop { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .related-head { align-items: start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-brand, .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.55rem, 13vw, 3.15rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .page-hero h1 { font-size: clamp(2.55rem, 13vw, 3.2rem); }
  .article-callout { padding: 26px; }
}

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