/* === RESET + BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
  font-family: 'Athena Light';
  src: url('assets/fonts/athena-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amelaryas';
  src: url('assets/fonts/amelaryas.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* === VARIABLES === */
:root {
  --bg: #f8f7f6;
  --surface: #efefeb;
  --accent: #e7e7e1;
  --ink-soft: #3c3934;
  --ink: #2b2823;
  --nav-height: 144px;
  --ff-body: 'Athena Light', Georgia, serif;
  --ff-display: 'Amelaryas', 'Times New Roman', serif;
  --size-060: 0.6rem;
  --size-080: 0.8rem;
  --size-100: 1rem;
  --lh-100: 1;
  --lh-150: 1.5;
  --lh-180: 1.8;
  --ls-body: 0.015em;
  --ls-soft: 0.08em;
  --ls-wide: 0.2em;
  --ls-kicker: 0.28em;
  /* --- Typography scale (edit these to resize everything) --- */
  --fs-title: clamp(1.2rem, 3vw, 2.2rem);
  --fs-heading: clamp(0.78rem, 1.3vw, 0.98rem);
}

/* === BASE === */
html { scroll-behavior: smooth; }
body {
font-family: var(--ff-body);
font-weight: 300;
background: var(--bg);
color: var(--ink);
line-height: var(--lh-180);
letter-spacing: var(--ls-body);
}
h1, h2, h3 {
font-family: var(--ff-display);
font-weight: 300;
letter-spacing: var(--ls-soft);
text-transform: uppercase;
line-height: var(--lh-150);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === LAYOUT === */
.container { width: min(1140px, 92%); margin: 0 auto; }
.section { padding: 5rem 0; }

/* === NAVIGATION === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.solid {
  background: var(--bg);
  border-bottom: 1px solid var(--surface);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height); padding: 0 4%; position: relative;
}
.nav-left, .nav-right {
  display: flex; gap: 2.5rem; flex: 1;
}
.nav-left { justify-content: flex-end; padding-right: 13rem; }
.nav-right { justify-content: flex-start; padding-left: 13rem; }
.nav-link {
font-size: var(--size-060); letter-spacing: var(--ls-wide); text-transform: uppercase; font-weight: 300;
color: var(--ink); transition: color 0.2s, transform 0.22s ease;
position: relative;
display: inline-block;
}
.nav-link:hover { color: var(--ink); }
.site-header.solid .nav-link { color: var(--ink); }
.site-header.solid .nav-link:hover { color: var(--ink); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
  opacity: 0.85;
}
.nav-link:hover {
  transform: translateY(-1px);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; height: var(--nav-height);
}
.nav-logo .logo-dark { display: block; height: 52px; }
.nav-logo .logo-light { display: none; }
.site-header:not(.solid) .nav-link { color: var(--bg); }
.site-header:not(.solid) .nav-logo .logo-dark { filter: brightness(0) invert(1) brightness(0.973); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 10;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all 0.25s;
}

/* === MOBILE OVERLAY === */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--bg); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--ink);
}
.nav-overlay-links { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.nav-overlay-links a {
  font-size: var(--size-080); letter-spacing: var(--ls-kicker); text-transform: uppercase; color: var(--ink-soft);
}
.nav-overlay-links a:hover { color: var(--ink); }

/* === HOMEPAGE === */
.home-hero-section {
  position: relative;
  height: 100svh;
  overflow: hidden;
  padding: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4.5rem;
}
.hero-overlay .home-shell {
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: var(--fs-title);
  line-height: var(--lh-150);
  color: var(--bg);
  margin-bottom: 1.5rem;
  max-width: 20ch;
}
.hero-cta {
  background: var(--bg);
  color: var(--ink);
  border: 1.5px solid var(--bg);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  font-size: var(--size-060);
}
.hero-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: min(4%, 3.5rem);
  display: flex;
  gap: 0.45rem;
  z-index: 3;
  align-items: center;
}
.hero-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.is-active {
  background: var(--bg);
  transform: scale(1.35);
}
.home-shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}
.home-locaties-grid > *,
.home-contact-composition > * {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.home-locaties-grid > *.is-visible,
.home-contact-composition > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.home-locaties-grid > :first-child { transition-delay: 0.05s; }
.home-locaties-grid > :last-child { transition-delay: 0.13s; }
.home-contact-composition > :first-child { transition-delay: 0.05s; }
.home-contact-composition > :last-child { transition-delay: 0.13s; }

/* === SECTION LABEL === */
.section-label {
display: block; font-size: var(--size-060); letter-spacing: var(--ls-kicker); text-transform: uppercase;
color: var(--ink-soft); margin-bottom: 1rem; font-weight: 400;
}

.over-kicker,
.locaties-kicker,
.project-kicker,
.section-label,
.over-index-label {
  font-family: var(--ff-display);
  font-size: var(--size-100);
  letter-spacing: var(--ls-soft);
  text-transform: none;
  font-weight: 400;
}

/* === INTRO TEXT === */
.intro-text {
  font-size: var(--size-100); line-height: var(--lh-180); color: var(--ink-soft);
  font-weight: 300; max-width: 680px;
}
.section-heading { font-size: var(--fs-heading); margin-bottom: 1.5rem; }

/* === BADGES === */
.badge {
  display: inline-block; font-size: var(--size-060); letter-spacing: var(--ls-wide);
  text-transform: uppercase; padding: 0.28rem 0.65rem; font-weight: 400;
}
.badge-sale { background: var(--accent); color: var(--ink-soft); }
.badge-sold { background: var(--surface); color: var(--ink-soft); }
.badge-expected { background: var(--accent); color: var(--ink-soft); }

/* === BUTTONS === */
.btn {
  display: inline-block; font-family: inherit; font-size: var(--size-060);
  letter-spacing: var(--ls-wide); text-transform: uppercase; font-weight: 400;
  padding: 0.85rem 2rem; cursor: pointer; transition: all 0.2s; border: 1px solid currentColor;
}
.btn-dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-soft); border-color: var(--ink-soft); }
.btn-outline { background: none; color: var(--bg); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--ink); }
/* === HOMEPAGE PROJECTS === */
.home-carousel-source {
  display: none;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.projecten-section .section-heading {
  margin-bottom: 2rem;
}
.project-card {
  position: relative;
  border: 1px solid var(--accent);
  background: var(--bg);
  transition: border-color 0.3s ease;
}
.project-card:hover {
  border-color: var(--ink-soft);
}
.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.project-card-media {
  position: relative;
  overflow: hidden;
}
.card-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.card-link:hover .card-img {
  transform: scale(1.04);
}
.card-link.no-link .card-img {
  opacity: 1;
}
.project-card-media .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
}
.project-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  background: var(--bg);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-family: var(--ff-display);
  font-size: var(--fs-heading);
  letter-spacing: var(--ls-soft);
  text-transform: uppercase;
  color: var(--ink);
  line-height: var(--lh-150);
  margin-bottom: 0.35rem;
}
.card-location {
  font-size: var(--size-100);
  letter-spacing: var(--ls-soft);
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.card-cta {
  display: inline-block;
  font-size: var(--size-060);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  background: var(--ink);
  color: var(--bg);
  margin-top: auto;
  align-self: flex-start;
}
.home-locaties-section {
  padding: 3.15rem 0 2.8rem;
}
.home-locaties-grid::after {
  content: '';
  grid-column: 1 / -1;
  display: block;
  height: 1px;
  margin-top: 1.6rem;
  background: var(--accent);
}
.home-locaties-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.home-locaties-heading {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: var(--fs-heading);
  line-height: var(--lh-150);
  letter-spacing: var(--ls-soft);
}
.home-locaties-body {
  background: var(--accent);
  padding: 2.5rem 2.8rem;
}
.home-locaties-text {
  max-width: 34rem;
  font-size: var(--size-100);
  line-height: var(--lh-180);
  color: var(--ink-soft);
  font-weight: 300;
}
.home-locaties-cta {
  margin-top: 1.4rem;
}
.home-contact-section {
  padding: 1.1rem 0 5rem;
}
.home-contact-composition {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 4rem;
}
.home-contact-image-panel {
  position: relative;
  order: 2;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.home-contact-image-panel img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.home-contact-image-panel:hover img {
  transform: scale(1.015);
}
.home-contact-card {
  order: 1;
  padding: 2.7rem 2.7rem 2.45rem;
  background: var(--accent);
}
.home-contact-heading {
  max-width: 10ch;
  font-size: var(--fs-heading);
  line-height: var(--lh-150);
  margin-bottom: 1rem;
}
.home-contact-text {
  max-width: 29rem;
  font-size: var(--size-100);
  line-height: var(--lh-180);
  color: var(--ink-soft);
}
.home-contact-cta {
  margin-top: 1.65rem;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 0.15rem 0 0;
  margin-bottom: 0;
}
.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  list-style: none;
}
.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: var(--size-060);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--ink-soft);
}
.breadcrumbs-item:not(:last-child)::after {
  content: '/';
  color: var(--ink-soft);
}
.breadcrumbs-link,
.breadcrumbs-current {
  color: inherit;
}
.breadcrumbs-link {
  transition: color 0.24s ease, transform 0.24s ease;
}
.breadcrumbs-link:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

/* === PROJECT DETAIL PAGE === */
.project-hero-section {
  margin-top: var(--nav-height);
  padding: 1.8rem 0 0;
}
.project-hero-shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}
.project-hero-media {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.project-hero-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.project-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.project-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 2.35rem 2.2rem;
}
.project-hero-meta {
  max-width: 42rem;
}
.project-shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.15rem 0 5.5rem;
}
.project-kicker {
  display: inline-block;
  font-size: var(--size-060);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 0.95rem;
}
.project-title {
  max-width: 11ch;
  font-size: var(--fs-title);
  line-height: var(--lh-150);
  font-weight: 200;
  letter-spacing: var(--ls-soft);
  text-transform: uppercase;
  color: var(--bg);
}
.project-meta {
  font-size: var(--size-060);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--surface);
  margin-top: 0.85rem;
}
.concept-section,
.units-section,
.project-gallery-section {
  padding: 2.75rem 0 0;
  margin-top: 2.75rem;
  border-top: 1px solid var(--accent);
}
.concept-section {
  text-align: center;
  border-top: none;
  padding-top: 0.9rem;
  margin-top: 1.6rem;
}
.section-label {
  display: block;
  font-size: var(--size-060);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.15rem;
}
.concept-body {
  position: relative;
  max-width: none;
  width: 100%;
  padding: 2rem 2rem 1.95rem 2rem;
  background: var(--ink);
  border: 1px solid var(--accent);
  margin: 0 auto;
}
.concept-body::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  border: 1px solid var(--accent);
  pointer-events: none;
}
.concept-text {
  max-width: none;
  font-size: var(--size-100);
  line-height: var(--lh-180);
  color: var(--surface);
  font-weight: 300;
  text-wrap: pretty;
  margin: 0 auto;
  text-align: left;
}
.units-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.4rem;
}
.units-table-wrap {
  overflow-x: auto;
  padding-bottom: 0.2rem;
}
.units-table th {
  font-size: var(--size-060);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  padding: 0.75rem 0.75rem 0.75rem 0;
  border-bottom: 1px solid var(--accent);
  text-align: left;
}
.units-table td {
  font-size: var(--size-100);
  font-weight: 300;
  color: var(--ink);
  padding: 0.95rem 0.75rem 0.95rem 0;
  border-bottom: 1px solid var(--accent);
}
.units-table tr:last-child td { border-bottom: none; }
.units-table td.unit-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.55rem 0.9rem;
  font-size: var(--size-060);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.units-table td.unit-link a:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  transform: translateY(-1px);
}
.units-table td.unit-link {
  white-space: nowrap;
}
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.project-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}
.project-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0.9rem -0.9rem -0.9rem 0.9rem;
  border: 1px solid var(--accent);
  pointer-events: none;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.project-gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}
.project-gallery-item:hover::before {
  transform: translate(0.35rem, -0.35rem);
  border-color: var(--ink-soft);
}
.project-gallery-item:hover img {
  transform: translate(-0.18rem, 0.18rem) scale(1.02);
}

/* === OVER ONS PAGE === */
.over-section {
  margin-top: var(--nav-height);
  padding: 4.5rem 0 6rem;
}
.over-shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}
.over-composition {
  display: grid;
  grid-template-columns: minmax(340px, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: 0;
}
.over-copy {
  position: relative;
  z-index: 2;
  margin: 2.25rem -2.5rem 0 0;
  padding: 3rem 3rem 2.85rem;
  max-width: 42rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px var(--accent);
  gap: 0;
}
.over-kicker {
  display: inline-block;
  font-size: var(--size-060);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.35rem;
}
.over-intro-main {
  max-width: 34rem;
}
.over-intro .section-heading {
  margin-bottom: 1.5rem;
  max-width: 9ch;
  line-height: var(--lh-150);
}
.intro-text {
  max-width: 31rem;
  font-size: var(--size-100);
  line-height: var(--lh-180);
  color: var(--ink-soft);
  font-weight: 300;
  text-wrap: pretty;
}
.over-image-panel {
  position: relative;
  align-self: center;
  margin: 0;
  padding: 1.6rem 3.25rem 0 0;
}
.over-image-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 5.25rem;
  bottom: 3.2rem;
  border: 1px solid var(--accent);
  z-index: 0;
  transition: transform 0.45s ease, border-color 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}
.over-image-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.6s ease;
  will-change: transform;
}
.over-image-panel:hover::before {
  transform: translate(-0.5rem, -0.5rem) scale(1.01);
  border-color: var(--ink-soft);
}
.over-image-panel:hover img {
  transform: translate(0.2rem, 0.28rem) scale(1.015);
}
.over-index {
  display: block;
  margin-top: 3.4rem;
  padding: 2.3rem 2.5rem 2.15rem;
  background: var(--surface);
  border: 1px solid var(--accent);
}
.over-index-label {
  display: block;
  font-size: var(--size-060);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.35rem;
}
.kernpunten-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 2.2rem;
}
.kernpunt {
  position: relative;
  padding: 1rem 0 1.05rem;
  border-top: 1px solid var(--accent);
  transition: transform 0.28s ease, border-color 0.28s ease;
}
.kernpunt::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 1px;
  background: var(--ink-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease, background-color 0.28s ease;
}
.kernpunt:nth-child(-n + 2) {
  border-top: none;
}
.kernpunt:hover {
  transform: translateY(-0.2rem);
  border-color: var(--ink-soft);
}
.kernpunt:hover::after {
  transform: scaleX(1);
}
.kernpunt h3 {
  font-size: var(--size-060);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  font-weight: 700;
  font-synthesis: weight;
  text-shadow: 0.012em 0 0 currentColor;
  color: var(--ink);
  margin-bottom: 0.55rem;
  transition: letter-spacing 0.28s ease;
}
.kernpunt:hover h3 {
  letter-spacing: var(--ls-wide);
}
.kernpunt p {
  max-width: 26rem;
  font-size: var(--size-100);
  line-height: var(--lh-180);
  color: var(--ink-soft);
  font-weight: 300;
}

/* === LOCATIES PAGE === */
.locaties-section {
  margin-top: var(--nav-height);
  padding: 4.5rem 0 2.5rem;
}
.locaties-shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}
.locaties-composition {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 3rem;
  align-items: start;
}
.locaties-info {
  max-width: 33rem;
}
.locaties-info .section-heading {
  margin-bottom: 1.5rem;
  line-height: var(--lh-150);
}
.locaties-cta-panel {
}
.locaties-cta-frame {
  padding: 2.8rem 3rem 2.6rem;
  background: var(--accent);
  border: 1px solid var(--accent);
}
.locaties-kicker {
  display: inline-block;
  font-size: var(--size-060);
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.locaties-intro {
  max-width: 27rem;
  font-size: var(--size-100);
}
.locaties-body {
  max-width: 30rem;
  margin-top: 1.4rem;
  font-size: var(--size-100);
  line-height: var(--lh-180);
  color: var(--ink-soft);
  font-weight: 300;
}
.locaties-cta {
  display: inline-flex;
  margin-top: 2rem;
}
.locaties-banner {
  position: relative;
  width: 100%;
  height: 62vh;
  overflow: hidden;
}
.locaties-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.locaties-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === CONTACT FORM === */
.contact-form { max-width: 560px; }
.contact-form .form-label {
  display: block; font-size: var(--size-060); letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 0.4rem; font-weight: 400;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 0.75rem 1rem; margin-bottom: 1.25rem;
  background: var(--bg); border: 1px solid var(--ink-soft);
  font-family: inherit; font-size: var(--size-100); font-weight: 300; color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--ink); }
.contact-form textarea { resize: vertical; min-height: 130px; }

/* === CONTACT PAGE === */
.contact-section {
  margin-top: var(--nav-height);
  padding: 4.5rem 0 5.5rem;
}
.contact-shell {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}
.contact-composition {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  max-width: 33rem;
  padding-top: 2.5rem;
}
.contact-info-card .section-heading {
  margin-bottom: 1.5rem;
  max-width: 8ch;
  line-height: var(--lh-150);
}
.contact-intro {
  max-width: 29rem;
  font-size: var(--size-100);
  line-height: var(--lh-180);
  color: var(--ink-soft);
  font-weight: 300;
}
.contact-body {
  max-width: 28rem;
  margin-top: 1rem;
  font-size: var(--size-100);
  line-height: var(--lh-180);
  color: var(--ink-soft);
  font-weight: 300;
}
.contact-details-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2.6rem;
  padding-top: 1.55rem;
  border-top: 1px solid var(--accent);
}
.contact-detail-row {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}
.contact-detail-icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ink-soft);
  transform: translateY(0.2rem);
}
.contact-detail-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.contact-detail-row p,
.contact-detail-row a {
  font-size: var(--size-100);
  line-height: var(--lh-180);
  color: var(--ink-soft);
  font-weight: 300;
}
.contact-detail-row a:hover { color: var(--ink); }
.contact-form-panel {
  position: relative;
  padding-top: 1.5rem;
}
.contact-form-frame {
  position: relative;
  max-width: none;
  padding: 2.8rem 3rem 2.6rem;
  background: var(--accent);
}
.contact-form-frame::before {
  content: none;
  position: absolute;
  top: -1.2rem;
  left: 1.2rem;
  right: -1.2rem;
  bottom: 1.2rem;
  border: 1px solid var(--accent);
  z-index: -1;
}
.contact-form-panel .contact-form {
  max-width: none;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.25rem;
}
.contact-form-span-2 {
  grid-column: 1 / -1;
}

/* === COOKIE & POLICY PAGES === */
.policy-content { padding: 6rem 0 5rem; max-width: 720px; margin-top: var(--nav-height); }
.policy-content h1 { font-size: var(--fs-title); margin-bottom: 2.5rem; }
.policy-content h2 { font-size: var(--size-080); letter-spacing: var(--ls-wide); text-transform: uppercase; font-weight: 400; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.policy-content p { font-size: var(--size-100); line-height: var(--lh-180); color: var(--ink-soft); font-weight: 300; }
.policy-content a { text-decoration: underline; text-underline-offset: 3px; }

/* === 404 PAGE === */
.not-found {
  min-height: 80vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 4rem 0;
  margin-top: var(--nav-height);
}
.not-found-code { font-size: 6rem; font-weight: 200; letter-spacing: var(--ls-kicker); color: var(--surface); line-height: var(--lh-100); margin-bottom: 1.5rem; }
.not-found p { font-size: var(--size-100); color: var(--ink-soft); margin-bottom: 2rem; }

/* === FOOTER === */
.site-footer { background: var(--ink); color: var(--bg); padding: 4rem 0 2.25rem; }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 2rem;
}
.footer-logo img { height: 52px; width: auto; margin: 0 auto 1.35rem; filter: brightness(0) invert(1) brightness(0.973); }
.footer-contact p { font-size: var(--size-080); line-height: var(--lh-180); font-weight: 300; color: var(--accent); }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; justify-content: center; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--accent);
  color: var(--accent); transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  max-width: 520px; z-index: 300;
  background: var(--ink); color: var(--bg);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 8px 40px var(--ink-soft);
}
.cookie-banner[hidden] { display: none; }
.cookie-text { font-size: var(--size-080); line-height: var(--lh-180); font-weight: 300; flex: 1; }
.cookie-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-left, .nav-right { display: none; }
  .nav-inner { justify-content: flex-end; }
  .nav-toggle { display: flex; margin-left: auto; }
  .home-shell { width: min(100%, calc(100% - 3rem)); }
  .home-hero-section { padding: 3.5rem 0 2rem; }
  .home-locaties-grid {
    grid-template-columns: 1fr;
  }
  .home-locaties-section { padding: 2rem 0 2.25rem; }
  .home-locaties-grid {
    gap: 1.75rem;
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
  .home-locaties-heading {
    max-width: none;
  }
  .home-locaties-body {
    padding-top: 0;
  }
  .home-locaties-text {
    max-width: none;
    font-size: var(--size-100);
    line-height: var(--lh-180);
  }
  .home-contact-section { padding: 0 0 4.5rem; }
  .home-contact-composition {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .home-contact-image-panel {
    order: 1;
  }
  .home-contact-card {
    order: 2;
    margin: 0;
    padding: 2.2rem 2.1rem 2rem;
  }
  .contact-section { padding: 3.5rem 0 4.5rem; }
  .contact-shell { width: min(100%, calc(100% - 3rem)); }
  .contact-composition {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-info-card {
    max-width: none;
    padding-top: 0;
  }
  .contact-intro,
  .contact-body,
  .contact-info-card .section-heading { max-width: none; }
  .contact-form-frame {
    padding: 2.4rem 2.25rem 2.2rem;
  }
  .project-hero-shell,
  .project-shell {
    width: min(100%, calc(100% - 3rem));
  }
  .project-hero-section {
    padding-top: 1.2rem;
  }
  .project-hero-media {
    padding: 0;
  }
  .project-hero-overlay {
    padding: 0 1.6rem 1.6rem;
  }
  .project-hero-media img {
    aspect-ratio: 4 / 3;
  }
  .concept-body {
    padding: 1.65rem 1.5rem 1.6rem;
  }
  .concept-body::before {
    top: 0.8rem;
    left: 0.8rem;
    right: -0.8rem;
    bottom: -0.8rem;
  }
  .project-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .units-table {
    min-width: 44rem;
  }
  .footer-inner { gap: 2rem; }
  .over-section { padding: 3.5rem 0 4.5rem; }
  .over-shell { width: min(100%, calc(100% - 3rem)); }
  .over-composition {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .over-copy {
    max-width: none;
    margin: -3.3rem 0 0 2rem;
    padding: 2.35rem 2.15rem 2.1rem;
  }
  .over-intro-main,
  .intro-text,
  .over-intro .section-heading { max-width: none; }
  .over-image-panel {
    position: relative;
    top: auto;
    padding: 1.2rem 1.5rem 0 0;
    margin-left: 0;
  }
  .over-image-panel::before {
    left: 0;
    right: 3rem;
    bottom: 2rem;
  }
  .over-image-panel:hover::before {
    transform: translate(-0.35rem, -0.35rem) scale(1.01);
  }
  .over-image-panel:hover img {
    transform: translate(0.15rem, 0.2rem) scale(1.012);
  }
  .over-index {
    margin-top: 2.6rem;
    padding: 2rem 1.8rem 1.9rem;
  }
  .kernpunten-grid {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .kernpunt:nth-child(2) { border-top: 1px solid var(--accent); }
  .locaties-section { padding: 3.5rem 0 2rem; }
  .locaties-shell { width: min(100%, calc(100% - 3rem)); }
  .locaties-composition {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .locaties-info {
    max-width: none;
    padding-top: 0;
  }
  .locaties-intro,
  .locaties-body { max-width: none; }
}
@media (max-width: 799px) {
  .project-grid { grid-template-columns: 1fr; }
  .project-card { width: 100%; }
}
@media (max-width: 600px) {
  .home-shell { width: min(100%, calc(100% - 2rem)); }
  .home-hero-section { padding: 3rem 0 1.5rem; }
  .project-card {
    width: 100%;
  }
  .footer-inner { gap: 1.5rem; }
  .project-hero-shell,
  .project-shell {
    width: min(100%, calc(100% - 2rem));
  }
  .project-hero-section {
    padding-top: 1rem;
  }
  .project-hero-media {
    padding: 0;
  }
  .project-hero-overlay {
    padding: 0 1rem 1.05rem;
  }
  .project-kicker {
    margin-bottom: 0.7rem;
  }
  .project-hero-media img {
    aspect-ratio: 4 / 4.8;
  }
  .project-shell {
    padding-bottom: 4rem;
  }
  .project-title {
    max-width: none;
  }
  .concept-body {
    padding: 1.35rem 1rem 1.25rem;
  }
  .concept-body::before {
    top: 0.55rem;
    left: 0.55rem;
    right: -0.55rem;
    bottom: -0.55rem;
  }
  .concept-text {
    font-size: var(--size-100);
    line-height: var(--lh-180);
  }
  .project-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .project-gallery-item::before {
    inset: 0.7rem -0.7rem -0.7rem 0.7rem;
  }
  .units-table-wrap {
    overflow: visible;
    padding-bottom: 0;
  }
  .units-table {
    min-width: 0;
    margin-top: 1rem;
  }
  .units-table thead {
    display: none;
  }
  .units-table tbody {
    display: grid;
    gap: 0.9rem;
  }
  .units-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
    padding: 1.05rem 1rem 1rem;
    background: var(--surface);
    border: 1px solid var(--accent);
  }
  .units-table td {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0.8rem;
    align-items: baseline;
    padding: 0;
    border-bottom: none;
    font-size: var(--size-100);
  }
  .units-table td::before {
    content: attr(data-label);
    font-size: var(--size-060);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .units-table td.unit-name-cell {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0.2rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid var(--accent);
  }
  .units-table td.unit-name-cell::before {
    display: none;
  }
  .units-table td.unit-name-cell {
    font-size: var(--size-100);
    letter-spacing: var(--ls-soft);
    color: var(--ink);
  }
  .units-table td.unit-link {
    display: block;
    margin-top: 0.25rem;
    text-align: right;
  }
  .units-table td.unit-link::before {
    display: none;
  }
  .units-table td.unit-link a {
    padding: 0.72rem 1.1rem;
    min-height: 2.4rem;
  }
  .project-card-body {
    padding: 1.1rem 1.1rem 1.4rem;
  }
  .cookie-banner {
    left: 0.75rem;
    right: auto;
    bottom: 0.75rem;
    max-width: min(18.5rem, calc(100vw - 1.5rem));
    padding: 1rem 1.1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .cookie-text { width: 100%; flex: none; }
  .cookie-text a {
    display: inline-block;
    margin-top: 0.45rem;
  }
  .cookie-banner .btn { align-self: flex-start; }
  .home-locaties-section { padding: 1.75rem 0 2rem; }
  .home-locaties-grid {
    gap: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .home-locaties-heading {
    line-height: var(--lh-150);
  }
  .home-locaties-text {
    font-size: var(--size-100);
    line-height: var(--lh-180);
  }
  .home-locaties-cta {
    margin-top: 1.2rem;
  }
  .home-contact-section { padding: 0 0 4rem; }
  .home-contact-image-panel {
    padding: 0;
  }
  .home-contact-image-panel img {
    aspect-ratio: 4 / 4.8;
  }
  .home-contact-card {
    margin: -1.7rem 0 0 1rem;
    padding: 1.9rem 1.35rem 1.7rem;
    background: var(--bg);
  }
  .home-contact-heading,
  .home-contact-text { max-width: none; }
  .contact-section { padding: 3rem 0 4rem; }
  .contact-shell { width: min(100%, calc(100% - 2rem)); }
  .contact-intro { font-size: var(--size-100); line-height: var(--lh-180); }
  .contact-body,
  .contact-detail-row p,
  .contact-detail-row a { font-size: var(--size-100); line-height: var(--lh-180); }
  .contact-form-frame {
    padding: 1.9rem 1.35rem 1.7rem;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-span-2 {
    grid-column: auto;
  }
  .over-section { padding: 3rem 0 4rem; }
  .over-shell { width: min(100%, calc(100% - 2rem)); }
  .over-copy {
    margin: -2.6rem 0 0 1rem;
    padding: 1.95rem 1.4rem 1.7rem;
  }
  .intro-text { font-size: var(--size-100); line-height: var(--lh-180); }
  .over-image-panel {
    margin-left: 0;
    padding: 0.9rem 0.9rem 0 0;
  }
  .over-image-panel::before {
    left: 0;
    right: 2rem;
    bottom: 1.4rem;
  }
  .over-index {
    margin-top: 2.2rem;
    padding: 1.7rem 1.3rem 1.55rem;
  }
  .over-index-label { margin-bottom: 0.65rem; }
  .kernpunt p { max-width: none; }
  .locaties-section { padding: 3rem 0 1.5rem; }
  .locaties-shell { width: min(100%, calc(100% - 2rem)); }
  .locaties-cta-frame {
    padding: 2rem 1.4rem 1.8rem;
  }
  .locaties-cta { margin-top: 1.6rem; }
}
