:root {
  --primary: #111315;
  --secondary: #f5f5f2;
  --accent: #c6a15b;
  --accent-soft: rgba(198, 161, 91, 0.14);
  --text: #24272a;
  --muted: #73777a;
  --white: #ffffff;
  --line: rgba(17, 19, 21, 0.08);
  --header-h: 5rem;
  --max: 1140px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem + env(safe-area-inset-top, 0px));
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--secondary);
  font-size: 17px;
  line-height: 1.65;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  -webkit-tap-highlight-color: rgba(198, 161, 91, 0.18);
}

@media (min-width: 860px) {
  body {
    padding-bottom: 0;
  }
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  padding: 0.5rem 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

.eyebrow {
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

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

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--primary);
  color: var(--secondary);
}

.btn--primary:hover {
  background: #1c1f22;
}

.btn--light {
  background: var(--secondary);
  color: var(--primary);
}

.btn--light:hover {
  background: #fff;
}

.btn--secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn--secondary:hover {
  border-color: var(--accent);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(245, 245, 242, 0.35);
  color: var(--secondary);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* —— Header —— */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.header--over-hero {
  background: transparent;
}

.header.is-scrolled,
.header.is-open {
  background: rgba(245, 245, 242, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header__inner {
  width: min(100% - 1.25rem, var(--max));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 100%;
  box-sizing: border-box;
}

.header__brand {
  min-width: 0;
  flex: 1 1 auto;
}

.header__brand img {
  width: min(280px, 62vw);
  height: auto;
  max-width: 100%;
}

@media (min-width: 980px) {
  .header__brand img {
    width: min(360px, 32vw);
  }
}

.header__nav {
  display: none;
  gap: 1.5rem;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245, 245, 242, 0.82);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header.is-scrolled .header__nav,
.header.is-open .header__nav {
  color: var(--text);
}

.header__nav a {
  position: relative;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0 0.7rem;
  border: 1px solid rgba(245, 245, 242, 0.28);
  border-radius: 8px;
  color: var(--secondary);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
}

.header__wa {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.45);
}

.header.is-scrolled .header__wa,
.header.is-open .header__wa {
  color: #128c7e;
  border-color: rgba(18, 140, 126, 0.35);
}

.wa-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  display: block;
}

.btn .wa-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.btn--ghost.btn--wa .wa-icon {
  color: #25d366;
}

.contact__wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact__wa-link .wa-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: #25d366;
}

.mobile-bar .wa-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: #25d366;
}

.header.is-scrolled .header__icon-link,
.header.is-open .header__icon-link {
  border-color: var(--line);
  color: var(--text);
}

.header__call {
  display: none;
}

.header__toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 245, 242, 0.28);
  background: transparent;
  border-radius: 8px;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.header.is-scrolled .header__toggle,
.header.is-open .header__toggle {
  border-color: var(--line);
}

.header__toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--secondary);
  transition: transform 0.25s ease, background 0.25s ease;
}

.header.is-scrolled .header__toggle span,
.header.is-open .header__toggle span {
  background: var(--primary);
}

.header.is-open .header__toggle span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.header.is-open .header__toggle span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

@media (max-width: 979px) {
  .header__quote {
    display: none;
  }
}

@media (min-width: 980px) {
  .header__nav {
    display: flex;
  }
  .header__toggle {
    display: none;
  }
  .header__call {
    display: inline-flex;
  }
}

@media (max-width: 979px) {
  .header__nav {
    position: fixed;
    inset: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 auto;
    display: grid;
    background: var(--secondary);
    border-bottom: 1px solid var(--line);
    padding: 0.4rem 1.25rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    color: var(--text);
  }
  .header.is-open .header__nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  color: var(--secondary);
  isolation: isolate;
}

@media (max-width: 759px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    width: 100%;
  }

  .hero__content {
    width: calc(100% - 1.75rem);
    max-width: none;
    padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 2rem) 0 5.25rem;
  }

  .header__inner {
    width: 100%;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .header__brand img {
    width: min(210px, 56vw);
  }

  .wrap {
    width: calc(100% - 1.75rem);
  }

  .service-panels,
  .service-panel,
  .section--services,
  .cta-band,
  .mobile-bar,
  .header,
  .hero {
    max-width: 100%;
  }

  .service-panel img {
    transform: none;
  }

  .service-panel:hover img,
  .service-panel:focus-visible img {
    transform: none;
  }

  .filters {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      105deg,
      rgba(17, 19, 21, 0.88) 0%,
      rgba(17, 19, 21, 0.58) 45%,
      rgba(17, 19, 21, 0.3) 100%
    ),
    url("../assets/hero/buitenunit.jpg") center 42% / cover no-repeat;
  filter: contrast(1.04) saturate(0.96);
}

.hero__content {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 7.5rem 0 4.5rem;
}

.hero__kicker {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--secondary);
  font-size: clamp(2.5rem, 6.5vw, 4.6rem);
  max-width: 10ch;
}

.hero__lead {
  margin-top: 1.25rem;
  max-width: 36ch;
  color: rgba(245, 245, 242, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(245, 245, 242, 0.14);
  color: rgba(245, 245, 242, 0.68);
  font-size: 0.9rem;
  font-family: var(--display);
}

.hero__trust li {
  position: relative;
  padding-left: 0.9rem;
}

.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  background: var(--accent);
}

/* —— Sections —— */
.section,
#top,
#diensten,
#projecten,
#recensies,
#over,
#contact,
#kennismaken,
#offerte,
#cta,
#vertrouwen {
  scroll-margin-top: calc(var(--header-h) + 0.6rem + env(safe-area-inset-top, 0px));
}

/* Contact: minder lege ruimte boven de kop, zodat formulier meekomt in beeld */
#contact.section {
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
}

#contact .section__head {
  margin-bottom: 2rem;
}

.section {
  padding: clamp(4.5rem, 11vw, 8.5rem) 0;
  background: var(--white);
}

.section--soft {
  background: var(--secondary);
}

.section__head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.section__intro {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 42ch;
}

.section__head--wide {
  max-width: 44rem;
}

.section__intro--wide {
  max-width: 58ch;
}

/* —— Services: full-bleed photo panels —— */
.section--services {
  padding-bottom: 0;
}

.service-panels {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.service-panel {
  position: relative;
  display: block;
  min-height: clamp(22rem, 58vh, 34rem);
  overflow: hidden;
  color: var(--secondary);
  isolation: isolate;
}

.service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1.1s var(--ease);
  z-index: 0;
}

.service-panel__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(17, 19, 21, 0.88) 0%,
    rgba(17, 19, 21, 0.55) 42%,
    rgba(17, 19, 21, 0.22) 100%
  );
  transition: opacity 0.6s var(--ease);
}

.service-panel__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  max-width: 34rem;
  padding: clamp(1.75rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
}

.service-panel h3 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.55rem;
  color: var(--secondary);
}

.service-panel__lead {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.service-panel__copy > p:not(.service-panel__lead) {
  color: rgba(245, 245, 242, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 38ch;
  margin-bottom: 1.35rem;
}

.service-panel__more {
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--secondary);
  align-self: flex-start;
  border-bottom: 1px solid rgba(198, 161, 91, 0.7);
  padding-bottom: 0.2rem;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.service-panel:hover img,
.service-panel:focus-visible img {
  transform: scale(1.07);
}

.service-panel:hover .service-panel__veil,
.service-panel:focus-visible .service-panel__veil {
  opacity: 0.92;
}

.service-panel:hover .service-panel__more,
.service-panel:focus-visible .service-panel__more {
  color: var(--accent);
  border-color: var(--accent);
}

.service-panel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

@media (max-width: 700px) {
  .section--services {
    padding-top: clamp(3.25rem, 10vw, 5rem);
  }

  .section--services .section__head {
    margin-bottom: 1.5rem;
  }

  .section--services .section__intro--wide {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: none;
  }

  .service-panels {
    gap: 0.4rem;
    margin-top: 0;
  }

  .service-panel {
    min-height: clamp(17.5rem, 52vh, 22rem);
  }

  .service-panel img {
    object-position: center 35%;
  }

  .service-panel__veil {
    background: linear-gradient(
      180deg,
      rgba(17, 19, 21, 0.15) 0%,
      rgba(17, 19, 21, 0.45) 38%,
      rgba(17, 19, 21, 0.88) 72%,
      rgba(17, 19, 21, 0.96) 100%
    );
  }

  .service-panel__copy {
    max-width: none;
    padding: 1.25rem 1.15rem calc(1.35rem + env(safe-area-inset-bottom, 0px));
    justify-content: flex-end;
  }

  .service-panel h3 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    margin-bottom: 0.35rem;
  }

  .service-panel__lead {
    font-size: 0.98rem;
    margin-bottom: 0.55rem;
  }

  /* Op mobiel alleen titel + korte regel — minder rommel */
  .service-panel__copy > p:not(.service-panel__lead) {
    display: none;
  }

  .service-panel__more {
    font-size: 0.82rem;
    margin-top: 0.15rem;
  }

  .service-panel:active .service-panel__more {
    color: var(--accent);
    border-color: var(--accent);
  }
}

@media (max-width: 380px) {
  .service-panel {
    min-height: 16.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-panel img {
    transition: none;
    transform: none;
  }
  .service-panel:hover img,
  .service-panel:focus-visible img {
    transform: none;
  }
}

/* —— Gallery editorial —— */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

@media (max-width: 759px) {
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0 0.35rem;
    width: 100%;
    max-width: 100%;
  }
  .filters::-webkit-scrollbar {
    display: none;
  }
  .filters button {
    flex: 0 0 auto;
  }
}

.filters button {
  border: 1px solid var(--line);
  background: transparent;
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.filters button:hover,
.filters button.is-active {
  border-color: var(--accent);
  color: var(--primary);
  background: var(--accent-soft);
}

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

@media (max-width: 379px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
}

@media (min-width: 980px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: #d8d8d4;
  border-radius: 2px;
  display: block;
}

.gallery__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease);
  filter: contrast(1.02) saturate(0.96);
}

.gallery__veil {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 21, 0);
  transition: background 0.4s var(--ease);
  pointer-events: none;
}

.gallery__zoom {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(17, 19, 21, 0.55);
  color: var(--secondary);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .gallery__item:hover img {
    transform: scale(1.03);
  }

  .gallery__item:hover .gallery__veil {
    background: rgba(17, 19, 21, 0.28);
  }

  .gallery__item:hover .gallery__zoom {
    opacity: 1;
    transform: none;
  }
}

.gallery-empty,
.reviews-empty {
  color: var(--muted);
}

/* —— Why —— */
.section--why {
  background: var(--white);
}

.why {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .why {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(3.25rem, 5vw, 5.5rem);
    align-items: center;
  }
}

.why__copy h2 {
  max-width: 12ch;
}

.why__intro {
  margin-top: 1.15rem;
  color: var(--muted);
  max-width: 40ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

.why__points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.why__point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.75rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--secondary);
  min-height: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), border-color 0.35s var(--ease);
  transition-delay: calc(0.12s + var(--i, 0) * 0.09s);
}

.why.reveal.is-in .why__point {
  opacity: 1;
  transform: none;
}

.why__point--lead {
  border-color: rgba(198, 161, 91, 0.4);
  background: linear-gradient(160deg, rgba(198, 161, 91, 0.1), var(--secondary) 58%);
}

.why__icon {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  color: var(--accent);
  flex-shrink: 0;
}

.why__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.why__point strong {
  display: block;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.18rem;
}

.why__emph {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.why__point--lead .why__emph {
  color: var(--accent);
}

.why__point span:last-child {
  display: block;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--muted);
}

/* Mobiel: compacte 2x2 zodat alle 4 vakjes in beeld passen */
@media (max-width: 899px) {
  .section--why {
    padding-top: clamp(2.75rem, 8vw, 4rem);
    padding-bottom: clamp(2.75rem, 8vw, 4rem);
  }

  .why {
    gap: 1.35rem;
  }

  .why__copy .eyebrow {
    margin-bottom: 0.55rem;
  }

  .why__copy h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.15rem);
  }

  .why__intro {
    margin-top: 0.7rem;
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: none;
  }

  .why__points {
    gap: 0.45rem;
  }

  .why__point {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.4rem;
    padding: 0.7rem 0.65rem;
    min-height: 5.6rem;
  }

  .why__icon {
    width: 1.55rem;
    height: 1.55rem;
  }

  .why__icon svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .why__point strong {
    font-size: 0.88rem;
  }

  .why__emph {
    font-size: 1.15rem;
  }

  .why__point span:last-child {
    font-size: 0.72rem;
  }
}

/* PC / tablet groot: premium 2x2 naast de tekst */
@media (min-width: 900px) {
  .why__points {
    gap: 0.9rem;
  }

  .why__point {
    padding: 1.35rem 1.25rem;
    gap: 1rem;
    align-items: center;
  }

  .why__icon {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(198, 161, 91, 0.28);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.55);
  }

  .why__icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .why__point strong {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
  }

  .why__emph {
    font-size: 1.75rem;
  }

  .why__point span:last-child {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .why__point:hover {
    border-color: rgba(198, 161, 91, 0.45);
  }
}

/* —— Reviews —— */
.reviews {
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.6rem 1.35rem;
  border-radius: 2px;
}

.review__stars {
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
}

.review blockquote {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--primary);
  margin-bottom: 1.1rem;
}

.review cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
}

.reviews__cta {
  margin-top: 1.75rem;
}

/* —— Over —— */
.over {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .over {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.over__media {
  overflow: hidden;
  border-radius: 2px;
  background: #ddd;
  min-height: 420px;
}

.over__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.94);
}

.over__text p {
  margin-top: 1.1rem;
  color: var(--muted);
  max-width: 40ch;
}

.over__facts {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
}

.over__facts li {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  padding-left: 1rem;
  position: relative;
}

.over__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* —— CTA band —— */
.cta-band {
  background: var(--primary);
  color: var(--secondary);
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.cta-band__inner {
  max-width: 40rem;
}

.cta-band__rule {
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

.cta-band h2 {
  color: var(--secondary);
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
}

.cta-band p {
  margin-top: 1rem;
  color: rgba(245, 245, 242, 0.7);
  max-width: 36ch;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* —— Contact —— */
.contact__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact__list {
  list-style: none;
  display: grid;
  gap: 1.35rem;
}

.contact__list span {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.contact__list a,
.contact__list strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--primary);
}

.contact__list a:hover {
  color: var(--accent);
}

.form {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.75rem 1.4rem;
  display: grid;
  gap: 0.95rem;
  border-radius: 2px;
}

.form__row {
  display: grid;
  gap: 0.95rem;
}

@media (min-width: 560px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.form__title {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  font-family: var(--display);
}

.form input,
.form select,
.form textarea {
  border: 1px solid var(--line);
  background: var(--secondary);
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
}

.form__photo input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
  z-index: 2;
}

.form__photo {
  position: relative;
  cursor: pointer;
  display: grid;
  gap: 0.35rem;
}

.form__photo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--secondary);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  pointer-events: none;
  z-index: 1;
}

.form__photo-hint {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  pointer-events: none;
}

.form__photo-preview {
  margin-top: 0.5rem;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  background: transparent;
}

.form__photo-preview:not([src]),
.form__photo-preview[src=""] {
  display: none !important;
}

.form__hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.form__note {
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.2em;
}

.form__note.is-ok {
  color: #2f6b3a;
}
.form__note.is-err {
  color: #8a2f2f;
}

/* Mobiel: contact + offerte strak binnen scherm */
@media (max-width: 899px) {
  #contact.section {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
    overflow-x: clip;
  }

  #contact .wrap.contact {
    width: calc(100% - 1.25rem);
    max-width: 100%;
    box-sizing: border-box;
  }

  #contact .section__head {
    margin-bottom: 0.85rem;
    max-width: none;
  }

  #contact .section__head .eyebrow {
    margin-bottom: 0.4rem;
  }

  #contact .section__head h2 {
    font-size: clamp(1.4rem, 6vw, 1.75rem);
  }

  #contact .section__intro {
    display: none;
  }

  .contact__grid {
    gap: 0.95rem;
    width: 100%;
    max-width: 100%;
  }

  .contact__info,
  .form,
  .contact__list,
  .contact__list li {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact__list {
    gap: 0.55rem;
  }

  .contact__list span {
    font-size: 0.62rem;
    margin-bottom: 0.1rem;
  }

  .contact__list a,
  .contact__list strong {
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 600;
  }

  .contact__email,
  .contact__list .contact__email,
  #contact .contact__email {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 0.82rem !important;
    line-height: 1.35;
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .contact__wa-link {
    gap: 0.35rem;
    max-width: 100%;
  }

  .contact__wa-link .wa-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
  }

  .contact__quick {
    margin-top: 0.75rem;
    gap: 0.4rem;
  }

  .contact__quick .btn {
    flex: 1 1 calc(50% - 0.2rem);
    min-height: 42px;
    padding: 0 0.55rem;
    font-size: 0.78rem;
  }

  .contact__quick #shareBtn {
    display: none;
  }

  .form {
    padding: 0.85rem 0.75rem;
    gap: 0.45rem;
    border-radius: 2px;
  }

  .form__row {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .form__title {
    font-size: 1.05rem;
    margin-bottom: 0;
  }

  .form label {
    gap: 0.2rem;
    font-size: 0.72rem;
    min-width: 0;
  }

  .form input,
  .form select,
  .form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.55rem 0.6rem;
    min-height: 40px;
    font-size: 16px;
    border-radius: 6px;
  }

  .form textarea {
    min-height: 3.75rem;
    resize: vertical;
  }

  .form__photo-btn {
    min-height: 40px;
    font-size: 0.78rem;
  }

  .form__photo-hint {
    font-size: 0.65rem;
    margin-top: 0.2rem;
  }

  .form__photo-preview {
    max-height: 96px;
    margin-top: 0.4rem;
  }

  .form > .btn {
    min-height: 44px;
    width: 100%;
    margin-top: 0.15rem;
  }

  .form__note {
    font-size: 0.78rem;
    min-height: 1em;
  }
}

/* —— Footer —— */
.footer {
  background: var(--primary);
  color: rgba(245, 245, 242, 0.58);
  padding: 3rem 0 calc(6rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.92rem;
}

@media (min-width: 860px) {
  .footer {
    padding-bottom: 3rem;
  }
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: space-between;
}

.footer__brand {
  color: var(--secondary);
  font-family: var(--display);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer__meta {
  margin-top: 0.85rem;
  font-size: 0.85rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-family: var(--display);
  font-size: 0.88rem;
}

.footer__nav a:hover {
  color: var(--accent);
}

/* —— Mobile bar —— */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 56px;
  padding: 0.55rem 0.3rem 0.45rem;
  color: var(--secondary);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-bar a svg {
  width: 20px;
  height: 20px;
}

.mobile-bar a:last-child {
  border-right: 0;
}

.mobile-bar__cta {
  background: var(--accent);
  color: var(--primary) !important;
}

@media (min-width: 860px) {
  .mobile-bar {
    display: none;
  }
}

@media (max-width: 759px) {
  .hero__cta .btn {
    flex: 1 1 100%;
  }

  .over__media,
  .over__media img {
    min-height: 280px;
  }
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 19, 21, 0.9);
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  -webkit-tap-highlight-color: transparent;
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  margin: 0;
  max-width: min(100%, 1100px);
  width: 100%;
  text-align: center;
}

.lightbox img {
  max-width: 100%;
  max-height: min(82vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.lightbox img.is-in {
  opacity: 1;
  transform: scale(1);
}

.lightbox figcaption {
  margin-top: 0.85rem;
  text-align: center;
  color: rgba(245, 245, 242, 0.68);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox__close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 245, 242, 0.22);
  border-radius: 8px;
  background: rgba(17, 19, 21, 0.35);
  color: var(--secondary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 245, 242, 0.2);
  border-radius: 8px;
  background: rgba(17, 19, 21, 0.45);
  color: var(--secondary);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox__nav--prev {
  left: max(0.65rem, env(safe-area-inset-left));
}

.lightbox__nav--next {
  right: max(0.65rem, env(safe-area-inset-right));
}

@media (max-width: 759px) {
  .lightbox {
    padding: 4.25rem 0.65rem 1.25rem;
  }

  .lightbox img {
    max-height: 72vh;
  }

  .lightbox__nav {
    width: 44px;
    height: 44px;
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom));
    transform: none;
  }

  .lightbox__nav--prev {
    left: 1rem;
  }

  .lightbox__nav--next {
    right: 1rem;
  }
}

@media (hover: none) {
  .btn:hover {
    transform: none;
  }
}
.page-hero {
  background: var(--primary);
  color: var(--secondary);
  padding: 8rem 0 3.5rem;
}

.page-hero h1 {
  color: var(--secondary);
}

.prose {
  padding: 3.5rem 0 5rem;
  background: var(--white);
}

.prose h2 {
  font-size: 1.5rem;
  margin: 1.75rem 0 0.5rem;
}

.prose p {
  color: var(--muted);
  max-width: 65ch;
  margin-bottom: 0.9rem;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .why__point {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
