@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #1f2a37;
  --muted: #556374;
  --brand: #ff7bab;
  --brand-soft: #ff9abb;
  --accent: #ff7bab;
  --line: #ffd4e3;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 18px 45px rgba(25, 31, 40, 0.12);
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

.arvo-regular {
  font-family: "Arvo", serif;
  font-weight: 400;
  font-style: normal;
}

.arvo-bold {
  font-family: "Arvo", serif;
  font-weight: 700;
  font-style: normal;
}

.arvo-regular-italic {
  font-family: "Arvo", serif;
  font-weight: 400;
  font-style: italic;
}

.arvo-bold-italic {
  font-family: "Arvo", serif;
  font-weight: 700;
  font-style: italic;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Metropolis", "Segoe UI", sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, rgba(255, 154, 187, 0.28), transparent 62%),
    radial-gradient(circle, rgba(255, 123, 171, 0.12), transparent 64%);
  background-repeat: no-repeat;
  background-size: 62rem 40rem, 56rem 36rem;
  background-position: left -8rem top -7rem, right -8rem top -5rem;
  line-height: 1.68;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1280px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: fit-content;
}

.brand-logo {
  width: 180px;
  max-width: min(180px, 52vw);
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff5f9;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #374151;
  transition: transform 0.25s ease, opacity 0.25s ease;
  content: "";
}

.menu-toggle-line::before {
  transform: translateY(-6px);
}

.menu-toggle-line::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line::after {
  transform: translateY(-2px) rotate(-90deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  color: #334155;
  transition: all 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: var(--brand-soft);
  background: #ffeaf1;
  color: #1f2a37;
}

.hero {
  padding: 3.5rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", "Metropolis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 0.8rem;
  font-variation-settings: "wdth" 100;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0;
}

.hero p,
.content p {
  margin: 0 0 0.85rem;
  color: #334155;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: var(--brand-soft);
  color: #1f2a37;
}

.hero-visual {
  position: relative;
}

.hero-image {
  border-radius: 34% 66% 60% 40% / 44% 39% 61% 56%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}

.hero-shape {
  position: absolute;
  right: -2.2rem;
  bottom: -2.3rem;
  width: 135px;
  opacity: 0.9;
}

main {
  padding-bottom: 3rem;
}

.section {
  margin-top: 1.2rem;
}

.content-card,
.timeline,
.team-grid article,
.quick-links a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.content-card {
  padding: 1.75rem;
}

.page-header {
  margin: 2.4rem 0 1rem;
}

.page-header p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
}

.project-page {
  padding-bottom: 3rem;
}

.page-over-project {
  padding-bottom: 0;
}

.page-over-project .project-sections:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
}

.project-intro-slab {
  margin-top: 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ffd7e4 0%, #fdb9cf 100%);
  box-shadow: 0 20px 45px rgba(249, 115, 141, 0.16);
}

.project-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
  align-items: center;
}

.project-intro-card {
  padding: 2rem;
}

.project-intro-card p {
  margin: 0 0 0.9rem;
}

.project-intro-card p:last-child {
  margin-bottom: 0;
}

.project-intro-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
}

.project-intro-image {
  width: 100%;
}

.project-intro-shape {
  right: -2.2rem;
  bottom: -2.3rem;
}

.project-intro-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.project-intro-copy {
  max-width: 66ch;
}

.project-intro-copy .eyebrow {
  color: #c11757;
}

.project-intro-copy h1,
.project-intro-copy p {
  color: #334155;
}

.project-intro-copy p:last-child {
  margin-bottom: 0;
}

.project-scroll-wrap {
  display: flex;
  justify-content: center;
  margin-top: -1.35rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 3;
}

.project-scroll-cta {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.65rem;
  line-height: 1;
  color: #111;
  background: #fff;
  border: 1px solid #ffc1d8;
  box-shadow: 0 10px 26px rgba(193, 23, 87, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-scroll-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 7px 18px rgba(193, 23, 87, 0.18);
}

.project-scroll-cta:focus-visible {
  outline: 2px solid #c11757;
  outline-offset: 3px;
}

.project-sections {
  margin-top: 2.1rem;
  padding-bottom: 0.5rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading.is-centered {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

#waarom-sections-title {
  scroll-margin-top: 120px;
}

.project-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.project-columns-with-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 1120px;
  margin-inline: auto;
}

.project-media-row {
  display: grid;
  grid-template-columns: minmax(0, 66ch) minmax(270px, 340px);
  align-items: center;
  gap: 0.45rem;
  width: min(100%, 1100px);
  margin-inline: auto;
  position: relative;
  justify-content: center;
}

.project-media-row.is-reverse {
  grid-template-columns: minmax(270px, 340px) minmax(0, 66ch);
}

.project-media-row .project-card {
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 1;
}

.project-media-row.is-reverse .project-side-visual {
  order: -1;
}

.project-media-row.is-reverse .project-card {
  justify-self: stretch;
}

.project-side-visual {
  margin: 0 0 0 -1.25rem;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 43% 57% 46% 54% / 62% 38% 65% 35%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  position: relative;
  z-index: 2;
}

.project-media-row.is-reverse .project-side-visual {
  margin: 0;
  border-radius: 56% 44% 58% 42% / 36% 64% 34% 66%;
  transform: translateX(1rem);
}

.project-side-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.project-card {
  border-left-width: 1px;
  padding: 1.35rem 1.25rem;
}

.project-card-emphasis {
  background: linear-gradient(180deg, #fff, #fff7fb);
  border-color: #ffc1d8;
}

.project-card h3 {
  margin-bottom: 0.6rem;
}

.project-card p {
  margin: 0 0 0.9rem;
}

.project-card p:last-child {
  margin-bottom: 0;
}

.content {
  display: grid;
  gap: 1.2rem;
}

.block {
  background: #fff;
  border-left: 6px solid var(--brand-soft);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 1.2rem 1.15rem;
}

.block p:last-child {
  margin-bottom: 0;
}

.note {
  background: #fff1f6;
  border: 1px dashed var(--brand-soft);
  border-radius: 12px;
  padding: 0.95rem;
}

.quick-links {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.quick-links a {
  text-decoration: none;
  padding: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.quick-links a:hover {
  transform: translateY(-3px);
}

.timeline {
  padding: 1rem;
}

.timeline article {
  border-left: 3px solid var(--accent);
  margin: 0.8rem 0;
  padding: 0.3rem 0 0.3rem 0.9rem;
}

.date-badge {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 800;
}

.page-over-project .timeline-ltr {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 2rem 0 0;
}

.page-over-project .timeline-ltr-surface {
  background: linear-gradient(135deg, #ffd7e4 0%, #fdb9cf 100%);
  padding: 2.5rem 1rem;
  margin: 0 calc(50% - 50vw);
  border-bottom: 1px solid #e8bfd0;
}

.page-over-project .timeline-ltr-surface .section-heading {
  margin: 0 auto 1.4rem;
  max-width: min(1280px, calc(100vw - 2.4rem));
}

.page-over-project .timeline-ltr-surface .section-heading .eyebrow {
  color: #c11757;
}

.page-over-project .timeline-ltr-surface .section-heading h2 {
  color: #1f2a37;
}

.page-over-project .timeline-ltr-surface .timeline-nav,
.page-over-project .timeline-ltr-surface .timeline-panels {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  width: min(1280px, calc(100vw - 2.4rem));
}

.page-over-project .timeline-ltr-surface .timeline-nav {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 0.6rem;
  overflow: visible;
  padding: 1rem 0.2rem 2.5rem;
  scroll-snap-type: x mandatory;
}

.page-over-project .timeline-ltr-surface .timeline-nav::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  bottom: 1.3rem;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-soft);
}

.page-over-project .timeline-ltr-surface .timeline-step {
  scroll-snap-align: start;
  position: relative;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fff;
  padding: 1rem 0.8rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  min-height: 100px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 4px 12px rgba(255, 123, 171, 0.08);
}

.page-over-project .timeline-ltr-surface .timeline-step:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 8px 24px rgba(255, 123, 171, 0.15);
  border-color: var(--brand-soft);
}

.page-over-project .timeline-ltr-surface .timeline-step::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-soft);
  transition: all 0.2s ease;
  box-shadow: 0 0 0 3px #fff5fa;
}

.page-over-project .timeline-ltr-surface .timeline-step.is-active {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 8px 28px rgba(255, 123, 171, 0.2);
}

.page-over-project .timeline-ltr-surface .timeline-step.is-active::after {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px var(--brand-soft);
  transform: translateX(-50%) scale(1.15);
}

.page-over-project .timeline-ltr-surface .timeline-step-date {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: var(--line);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-over-project .timeline-ltr-surface .timeline-step-title {
  display: block;
  font-weight: 600;
  line-height: 1.25;
  font-size: 0.95rem;
  color: var(--ink);
}

.page-over-project .timeline-ltr-surface .timeline-panels {
  margin-top: 1rem;
}

.page-over-project .timeline-ltr-surface .timeline-panel {
  margin: 0;
  border: none;
  border-radius: 16px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(255, 123, 171, 0.12);
}

.page-over-project .timeline-ltr-surface .timeline-panel[hidden] {
  display: none;
}

.page-over-project .timeline-ltr-surface .timeline-panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.page-over-project .timeline-ltr-surface .timeline-panel-media {
  position: relative;
  overflow: hidden;
  background: #000;
}

.page-over-project .timeline-ltr-surface .timeline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

.page-over-project .timeline-ltr-surface .timeline-panel-text {
  background: #fff;
  padding: 2rem;
  color: var(--ink);
}

.page-over-project .timeline-ltr-surface .timeline-panel-date {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  background: var(--line);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-over-project .timeline-ltr-surface .timeline-panel h3 {
  color: var(--brand);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin: 0.5rem 0 1rem;
  font-family: "Bricolage Grotesque", "Metropolis", sans-serif;
}

.page-over-project .timeline-ltr-surface .timeline-accordion {
  display: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  width: min(1280px, calc(100vw - 2.4rem));
}

.page-over-project .timeline-ltr-surface .timeline-accordion-item {
  border: none;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(255, 123, 171, 0.12);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-over-project .timeline-ltr-surface .timeline-accordion-item[open] {
  box-shadow: 0 12px 30px rgba(255, 123, 171, 0.2);
}

.page-over-project .timeline-ltr-surface .timeline-accordion-trigger {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.page-over-project .timeline-ltr-surface .timeline-accordion-trigger:hover {
  background: #fff6fa;
}

.page-over-project .timeline-ltr-surface .timeline-accordion-trigger::-webkit-details-marker {
  display: none;
}

.page-over-project .timeline-ltr-surface .timeline-accordion-trigger::after {
  content: "+";
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand);
  line-height: 1;
}

.page-over-project .timeline-ltr-surface .timeline-accordion-item[open] .timeline-accordion-trigger::after {
  content: "-";
}

.page-over-project .timeline-ltr-surface .timeline-accordion-item .timeline-panel-content {
  height: 0;
  opacity: 0;
  transform: translateY(-8px);
  overflow: hidden;
  transition: height 0.45s ease, opacity 0.28s ease, transform 0.28s ease;
}

.page-over-project .timeline-ltr-surface .timeline-accordion-item[open] .timeline-panel-content {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .page-over-project .timeline-ltr-surface .timeline-nav,
  .page-over-project .timeline-ltr-surface .timeline-panels {
    display: none;
  }

  .page-over-project .timeline-ltr-surface .timeline-accordion {
    display: block;
  }

  .page-over-project .timeline-ltr-surface .timeline-accordion .timeline-panel-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-over-project .timeline-ltr-surface .timeline-accordion .timeline-image {
    min-height: 220px;
  }

  .page-over-project .timeline-ltr-surface .timeline-accordion .timeline-panel-text {
    padding: 1rem;
  }
}

.team-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-grid article {
  padding: 1.15rem;
}

.team-grid h3 {
  margin-bottom: 0.2rem;
}

.memorial-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.memorial-gallery figure {
  margin: 0;
}

.memorial-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.memorial-gallery figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.footer .container {
  max-width: 980px;
  line-height: 1.6;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-top,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.7rem;
  text-align: center;
}

.footer-top {
  align-items: baseline;
}

.footer-bottom {
  align-items: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: -0.30rem;
}

.footer-kbs-link {
  display: inline-flex;
  align-items: baseline;
  vertical-align: baseline;
}

.footer-kbs-logo {
  height: 4rem;
  width: auto;
  display: block;
  margin-left: 0.2rem;
  transform: translateY(26px);
}

.footer-logo {
  height: 2.35rem;
  width: auto;
  display: block;
  transform: translateY(-0.5px);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .memorial-gallery {
    grid-template-columns: 1fr;
  }

  .project-intro-slab {
    padding: 1.4rem;
  }

  .page-waarom .project-intro-slab {
    padding-left: 0;
    padding-right: 0;
  }

  .project-intro-grid {
    grid-template-columns: 1fr;
  }

  .project-scroll-wrap {
    margin-top: -0.9rem;
    margin-bottom: 0.8rem;
  }

  .project-story-grid {
    grid-template-columns: 1fr;
  }

  .project-columns {
    grid-template-columns: 1fr;
  }

  .project-media-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.8rem;
  }

  .project-media-row.is-reverse {
    grid-template-columns: 1fr;
  }

  .project-media-row .project-side-visual,
  .project-media-row.is-reverse .project-side-visual {
    margin-left: 0;
    margin-right: 0;
    order: 0;
    transform: none;
  }

  .project-media-row .project-card,
  .project-media-row.is-reverse .project-card {
    max-width: none;
    justify-self: stretch;
  }

  .project-side-visual {
    aspect-ratio: 4 / 3;
  }

  .project-intro-visual {
    justify-self: center;
  }

  .page-waarom .project-intro-card {
    width: 100%;
    max-width: none;
  }

  .page-over-project .timeline-ltr-surface {
    padding: 0.85rem;
  }

  .page-over-project .timeline-ltr-surface .timeline-accordion {
    width: calc(100vw - 1.7rem);
  }

  .footer .container {
    padding-top: 0.9rem;
  }

  .footer-top,
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-top > span:last-child {
    margin-left: 0;
  }

  .footer-kbs-logo {
    height: 1.95rem;
    margin-left: 0.2rem;
  }

  .footer-logo-link {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1120px) {
  .nav-wrap {
    align-items: center;
    min-height: 72px;
    padding: 0.65rem 0;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.75rem;
    padding: 0.5rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    white-space: normal;
    width: 100%;
    padding: 0.7rem 0.8rem;
  }

  .brand-logo {
    width: 146px;
    max-width: 42vw;
  }

  .hero {
    padding-top: 2.1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .content-card {
    padding: 1.25rem;
  }

  .project-intro-slab {
    margin-top: 0;
  }
}

