:root {
  --red: #e00000;
  --red-dark: #b80000;
  --black: #000000;
  --white: #ffffff;
  --offwhite: #f7f7f7;
  --soft: #f2f2f2;
  --text: #111111;
  --muted: #555555;
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.22);
  --line-white: rgba(255, 255, 255, 0.22);
  --max: 1220px;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  --soft-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

p {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 22px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: -0.055em;
  color: inherit;
}

h1 {
  font-size: clamp(46px, 7.2vw, 104px);
  font-weight: 950;
}

h2 {
  font-size: clamp(34px, 4.7vw, 68px);
  font-weight: 950;
}

h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 950;
}

ul,
ol {
  margin-top: 0;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--red);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 950;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
  flex: 0 0 auto;
}

.eyebrow.light {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 2px solid var(--black);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-black {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-black:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--black);
}

.topbar {
  background: var(--black);
  color: var(--white);
  border-bottom: 4px solid var(--red);
}

.topbar-inner {
  min-height: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.topbar-inner span:nth-child(2) {
  text-align: center;
}

.topbar-inner a {
  justify-self: end;
  color: var(--white);
}

.nav-shell {
  background: var(--white);
}

.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 214px;
  width: 214px;
  background: transparent;
}

.brand img {
  width: 214px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-left: auto;
  min-width: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--black);
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
  border: 2px solid var(--red);
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.nav-cta:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: var(--black);
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  padding: 13px;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 10px;
}

.section {
  padding: 96px 0;
}

.hero {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--red);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(224, 0, 0, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(224, 0, 0, 0.18), rgba(0, 0, 0, 0) 48%, rgba(224, 0, 0, 0.12));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  gap: 58px;
  align-items: center;
  min-height: 730px;
  padding: 76px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-content p {
  max-width: 760px;
  color: var(--white);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 34px;
}

.hero-trust div {
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.hero-trust strong {
  display: block;
  color: var(--red);
  font-size: 14px;
  margin-bottom: 6px;
}

.hero-trust span {
  display: block;
  color: var(--white);
  font-weight: 950;
  line-height: 1.25;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-photo-large {
  grid-row: 1 / 3;
  min-height: 620px;
  border-radius: var(--radius-lg);
}

.hero-photo:not(.hero-photo-large) {
  min-height: 303px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section {
  border-bottom: 3px solid var(--black);
  background: var(--white);
}

.intro-grid,
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}

.section-head {
  align-items: start;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 660px;
}

.intro-text p {
  font-size: 18px;
}

.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.service-card-large {
  grid-column: span 2;
}

.service-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  border-bottom: 3px solid var(--black);
  background: var(--offwhite);
}

.service-card div {
  padding: 24px;
  background: var(--white);
  color: var(--black);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 950;
  color: var(--red);
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--black);
  font-size: clamp(23px, 2.2vw, 31px);
}

.service-card p {
  color: var(--black);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.black-section {
  background: var(--black);
  color: var(--white);
  border-top: 8px solid var(--red);
  border-bottom: 8px solid var(--red);
}

.black-section h2,
.black-section h3,
.black-section p {
  color: var(--white);
}

.black-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.black-copy {
  position: sticky;
  top: 150px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.steps article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  border-radius: 30px;
  border: 3px solid var(--white);
  padding: 22px;
  min-height: 420px;
  box-shadow: var(--soft-shadow);
}

.steps article img {
  width: calc(100% + 44px);
  height: 185px;
  object-fit: cover;
  margin: -22px -22px 20px;
  border-bottom: 3px solid var(--black);
  flex: 0 0 auto;
}

.steps strong {
  display: inline-flex;
  background: var(--red);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 20px;
  margin-bottom: 16px;
}

.steps article h3,
.steps article p {
  color: var(--black);
}

.steps article p {
  font-size: 16px;
  line-height: 1.65;
}

.seo-section {
  background: var(--white);
  border-bottom: 3px solid var(--black);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.seo-grid article {
  border: 3px solid var(--black);
  border-left: 8px solid var(--red);
  padding: 34px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.seo-grid h2 {
  font-size: clamp(30px, 3.6vw, 52px);
}

.seo-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red);
  font-weight: 950;
}

.project-preview {
  background: var(--black);
  color: var(--white);
}

.project-preview h2,
.project-preview p {
  color: var(--white);
}

.photo-grid-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-grid-large figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid var(--white);
  background: var(--white);
}

.photo-grid-large figure:nth-child(1),
.photo-grid-large figure:nth-child(8),
.photo-grid-large figure:nth-child(17),
.photo-grid-large figure:nth-child(22) {
  grid-column: span 2;
}

.photo-grid-large img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  background: var(--offwhite);
}

.photo-grid-large figure:nth-child(1) img,
.photo-grid-large figure:nth-child(8) img,
.photo-grid-large figure:nth-child(17) img,
.photo-grid-large figure:nth-child(22) img {
  height: 330px;
}

.photo-grid-large figcaption {
  display: block;
  padding: 12px 14px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 950;
  border-top: 2px solid var(--black);
}

.knowledge-section {
  background: var(--white);
  color: var(--black);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.knowledge-grid a {
  display: block;
  min-height: 260px;
  border: 3px solid var(--black);
  border-radius: 28px;
  padding: 28px;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.knowledge-grid a:hover {
  transform: translateY(-4px);
  background: var(--black);
  color: var(--white);
}

.knowledge-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 950;
}

.knowledge-grid h3 {
  font-size: clamp(22px, 2.2vw, 30px);
}

.knowledge-grid p {
  font-size: 16px;
}

.faq-section {
  background: var(--offwhite);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 3px solid var(--black);
  border-radius: 22px;
  padding: 20px 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
  font-size: 18px;
}

.faq-list p {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 16px;
}

.workarea-section {
  background: var(--white);
}

.workarea-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  border: 3px solid var(--black);
  border-radius: 36px;
  padding: 42px;
  box-shadow: var(--soft-shadow);
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.area-links a {
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 950;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.area-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.social-proof-section {
  background: var(--white);
  border-top: 3px solid var(--black);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.social-cards a {
  display: block;
  border: 3px solid var(--black);
  border-radius: 26px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.social-cards a:hover {
  transform: translateY(-4px);
  background: var(--black);
  color: var(--white);
}

.social-cards strong,
.social-cards span {
  display: block;
}

.social-cards strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.social-cards span {
  margin-top: 7px;
  color: var(--red);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.final-cta {
  background: var(--red);
  color: var(--white);
  padding: 76px 0;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 76px 0 28px;
  border-top: 8px solid var(--red);
}

.site-footer h3,
.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 38px;
}

.footer-logo {
  display: inline-flex;
  background: var(--white);
  border-radius: 22px;
  padding: 14px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 230px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: background 0.22s ease, transform 0.22s ease;
}

.floating-whatsapp:hover {
  background: var(--black);
  transform: translateY(-2px);
}

.is-image-missing {
  position: relative;
  min-height: 180px;
}

.is-image-missing img {
  display: none !important;
}

.is-image-missing::after {
  content: "Foto ontbreekt: " attr(data-missing);
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--white);
  color: var(--red);
  border: 4px solid var(--red);
  font-weight: 950;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 1220px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.is-open {
    display: grid;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    z-index: 200;
    background: var(--black);
    border: 3px solid var(--red);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    color: var(--white);
    width: 100%;
    justify-content: flex-start;
    padding: 16px 18px;
  }

  .main-nav.is-open a:hover,
  .main-nav.is-open a.is-active {
    background: var(--red);
  }

  .hero-grid,
  .intro-grid,
  .section-head,
  .black-grid,
  .seo-grid,
  .faq-grid,
  .workarea-box,
  .social-proof-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-media {
    max-width: 820px;
  }

  .black-copy {
    position: static;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-large {
    grid-column: span 1;
  }

  .steps,
  .knowledge-grid,
  .photo-grid-large,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid-large figure:nth-child(1),
  .photo-grid-large figure:nth-child(8),
  .photo-grid-large figure:nth-child(17),
  .photo-grid-large figure:nth-child(22) {
    grid-column: span 1;
  }

  .photo-grid-large figure:nth-child(1) img,
  .photo-grid-large figure:nth-child(8) img,
  .photo-grid-large figure:nth-child(17) img,
  .photo-grid-large figure:nth-child(22) img {
    height: 265px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  p {
    font-size: 16px;
    line-height: 1.7;
  }

  h1 {
    font-size: clamp(39px, 11vw, 62px);
    letter-spacing: -0.06em;
  }

  h2 {
    font-size: clamp(31px, 9vw, 48px);
  }

  h3 {
    font-size: 24px;
  }

  .topbar-inner {
    min-height: 38px;
    grid-template-columns: 1fr auto;
    font-size: 12px;
  }

  .topbar-inner span:nth-child(2) {
    display: none;
  }

  .nav-inner {
    min-height: 78px;
  }

  .brand {
    flex-basis: 178px;
    width: 178px;
  }

  .brand img {
    width: 178px;
  }

  .hero-grid {
    padding: 48px 0;
    gap: 34px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-actions,
  .final-actions,
  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-photo-large,
  .hero-photo:not(.hero-photo-large) {
    min-height: 255px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 28px;
  }

  .service-grid,
  .steps,
  .knowledge-grid,
  .photo-grid-large,
  .faq-list,
  .social-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }

  .steps article {
    min-height: auto;
  }

  .seo-grid article {
    padding: 24px;
  }

  .photo-grid-large img,
  .photo-grid-large figure:nth-child(1) img,
  .photo-grid-large figure:nth-child(8) img,
  .photo-grid-large figure:nth-child(17) img,
  .photo-grid-large figure:nth-child(22) img {
    height: 260px;
  }

  .workarea-box {
    padding: 24px;
    border-radius: 26px;
  }

  .area-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .footer-logo img {
    width: 210px;
  }
}
/* Offerte aanvraag pagina - modern formulier */

.quote-hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-hero-media figure {
  margin: 0;
  overflow: hidden;
  border: 3px solid #ffffff;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  min-height: 230px;
}

.quote-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-form-section {
  background: #ffffff;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.72fr);
  gap: 52px;
  align-items: start;
}

.quote-info {
  min-width: 0;
}

.checklist-box,
.quote-note {
  border: 3px solid #000000;
  border-radius: 30px;
  padding: 28px;
  margin-top: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.checklist-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist-box li {
  position: relative;
  padding-left: 26px;
  font-weight: 800;
}

.checklist-box li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e00000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.72em;
}

.quote-mini-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.quote-mini-gallery figure {
  margin: 0;
  border: 3px solid #000000;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
}

.quote-mini-gallery img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.quote-mini-gallery figcaption {
  padding: 9px 10px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.quote-form-card {
  position: sticky;
  top: 124px;
  border: 3px solid #000000;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-heading {
  background: #000000;
  color: #ffffff;
  padding: 30px;
  border-bottom: 6px solid #e00000;
}

.form-heading span {
  display: inline-flex;
  color: #e00000;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 12px;
}

.form-heading h2,
.form-heading p {
  color: #ffffff;
}

.form-heading h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}

.quote-form {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: #000000;
  font-size: 14px;
  font-weight: 950;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 2px solid #000000;
  border-radius: 16px;
  background: #ffffff;
  color: #000000;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #e00000;
  box-shadow: 0 0 0 4px rgba(224, 0, 0, 0.14);
}

.quote-form textarea {
  min-height: 150px;
  resize: vertical;
}

.upload-box {
  display: grid !important;
  place-items: center;
  text-align: center;
  border: 3px dashed #e00000;
  border-radius: 24px;
  padding: 28px;
  background: #fff7f7;
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  left: -9999px;
}

.upload-box strong {
  display: block;
  color: #e00000;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.upload-box span {
  display: block;
  color: #000000;
  font-size: 15px;
  margin-top: 4px;
}

.upload-box small {
  display: block;
  color: #555555;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.file-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.file-list div {
  border: 2px solid #000000;
  border-radius: 14px;
  padding: 10px 12px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.honeypot {
  position: absolute !important;
  left: -99999px !important;
  opacity: 0 !important;
}

.privacy-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.privacy-check input {
  width: auto;
  margin-top: 5px;
  flex: 0 0 auto;
}

@media (max-width: 1220px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-form-card {
    position: static;
  }

  .quote-mini-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .quote-hero-media figure {
    min-height: 240px;
  }

  .form-heading,
  .quote-form {
    padding: 22px;
  }

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

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

  .quote-mini-gallery img {
    height: 220px;
  }

  .quote-form-card {
    border-radius: 26px;
  }

  .privacy-check {
    font-size: 13px;
  }
}
/* Contactpagina - modern formulier */

.contact-hero-photo {
  margin: 0;
  overflow: hidden;
  border: 3px solid #ffffff;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: var(--shadow);
  min-height: 520px;
}

.contact-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page-section {
  background: #ffffff;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
  gap: 52px;
  align-items: start;
}

.contact-info-panel {
  min-width: 0;
}

.modern-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.modern-contact-cards > * {
  border: 3px solid #000000;
  border-radius: 24px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.modern-contact-cards strong,
.modern-contact-cards span {
  display: block;
}

.modern-contact-cards span {
  color: #e00000;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact-help-box {
  border: 3px solid #000000;
  border-radius: 30px;
  padding: 28px;
  margin-top: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.contact-help-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-help-box li {
  position: relative;
  padding-left: 26px;
  font-weight: 800;
}

.contact-help-box li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #e00000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.72em;
}

.contact-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.contact-mini-gallery figure {
  margin: 0;
  border: 3px solid #000000;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
}

.contact-mini-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.contact-mini-gallery figcaption {
  padding: 10px 12px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.contact-form-card {
  position: sticky;
  top: 124px;
  border: 3px solid #000000;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-form {
  padding: 30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 2px solid #000000;
  border-radius: 16px;
  background: #ffffff;
  color: #000000;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #e00000;
  box-shadow: 0 0 0 4px rgba(224, 0, 0, 0.14);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

@media (max-width: 1220px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .contact-hero-photo {
    min-height: 260px;
    border-radius: 28px;
  }

  .modern-contact-cards,
  .contact-mini-gallery {
    grid-template-columns: 1fr;
  }

  .contact-mini-gallery img {
    height: 220px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-form-card {
    border-radius: 26px;
  }
}
/* =========================================================
   FIX: checkbox en privacytekst contact/offerte formulier
   ========================================================= */

.privacy-check {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 22px 0 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.55 !important;
  color: #000000 !important;
}

.privacy-check input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  flex: 0 0 18px !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  accent-color: #e00000;
}

.privacy-check span {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  flex: 1 1 auto !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  color: #000000 !important;
}

/* Zorg dat gewone checkboxes nooit meer 100% breed worden */
.quote-form input[type="checkbox"],
.contact-form input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
}

/* Button netjes onder formulier */
.quote-form button[type="submit"],
.contact-form button[type="submit"] {
  margin-top: 8px;
}