:root {
  --blue-950: #05284d;
  --blue-900: #063b6f;
  --blue-800: #07508f;
  --blue-700: #0874c7;
  --blue-600: #0b8fe7;
  --blue-100: #e9f5ff;
  --blue-050: #f5faff;
  --yellow: #ffbf2f;
  --green: #1dbf9b;
  --ink: #111827;
  --text: #415164;
  --muted: #748397;
  --line: #d8e8f5;
  --white: #ffffff;
  --soft: #f3f8fd;
  --shadow: 0 24px 64px rgba(5, 40, 77, 0.16);
  --shadow-sm: 0 14px 34px rgba(5, 40, 77, 0.1);
  --radius: 8px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 10px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: var(--white);
  font-weight: 900;
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

p {
  margin: 0 0 18px;
}

.site-shell {
  min-height: 100vh;
  overflow: visible;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-top: 6px solid #27313b;
  border-bottom: 1px solid rgba(17, 24, 39, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.brand img {
  width: 218px;
}

.main-nav {
  display: flex;
  gap: clamp(10px, 1.15vw, 22px);
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.mobile-nav-actions,
.mobile-actions {
  display: none;
}

.nav-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #30343a;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-700);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.phone-card {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #252a31;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.phone-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-700);
}

.phone-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: var(--white);
  clip-path: polygon(21% 0, 43% 0, 51% 25%, 42% 34%, 52% 50%, 66% 59%, 77% 50%, 100% 61%, 100% 82%, 91% 100%, 72% 100%, 48% 88%, 25% 66%, 8% 42%, 0 20%, 6% 6%);
}

.quote-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #15a8ef, var(--blue-700));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(8, 116, 199, 0.22);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-050);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--blue-800);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  min-height: clamp(600px, calc(100vh - 118px), 760px);
  background: var(--blue-950);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 110px) clamp(36px, 6vw, 84px);
  background:
    linear-gradient(135deg, rgba(29, 191, 155, 0.12), transparent 34%),
    linear-gradient(180deg, var(--blue-900), var(--blue-950));
  color: var(--white);
}

.hero-copy .eyebrow,
.page-hero .eyebrow {
  color: #dff7ff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--blue-700);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
}

.eyebrow::before {
  content: "";
  width: 58px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--yellow);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 68px;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.hero-proof {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
}

.hero-photo {
  min-height: 100%;
  overflow: hidden;
  background: #dbe9f5;
}

.hero-photo img,
.owner-photo img,
.bento-card img,
.featured-photo img,
.mini-project img,
.hero-media img,
.project-card img,
.image-tint img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.hero-photo img {
  min-height: 100%;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #15a8ef, var(--blue-700));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(8, 116, 199, 0.24);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(8, 116, 199, 0.28);
}

.btn-light {
  background: var(--white);
  color: var(--blue-800);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  box-shadow: none;
}

.text-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-700);
  font-weight: 950;
  line-height: 1;
}

.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.trust-strip {
  position: relative;
  z-index: 3;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(5, 40, 77, 0.08);
}

.trust-strip-inner {
  min-height: 76px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.trust-strip span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--yellow);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, #f6fbff 0%, #edf6ff 100%);
}

.section-head {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-700);
  font-size: 32px;
  font-weight: 950;
  line-height: 1.05;
}

.section-title,
.page-title h1,
.page-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-copy {
  margin-top: 18px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.owner-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.owner-photo {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-100);
  box-shadow: var(--shadow);
}

.owner-photo figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(5, 40, 77, 0.9);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.content-panel {
  max-width: 650px;
}

.content-panel h2,
.content h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.08;
}

.content-panel p,
.content p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
}

.content {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.intro-content {
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.content h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 46px;
  font-weight: 950;
  line-height: 1.08;
}

.content h2 {
  margin-top: 34px;
}

.content a {
  color: var(--blue-700);
  font-weight: 900;
}

.content .btn {
  color: var(--white);
}

.content .btn-light {
  color: var(--blue-800);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
  font-weight: 850;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 3px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 191, 47, 0.18);
}

.bento-services {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 22px;
}

.bento-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-900);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.bento-large {
  grid-row: span 2;
  min-height: 522px;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 40, 77, 0.02) 20%, rgba(5, 40, 77, 0.82) 100%);
}

.bento-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.bento-label strong {
  font-size: 36px;
  font-weight: 950;
  line-height: 1.04;
}

.bento-label em {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.5;
}

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

.featured-project {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.featured-photo {
  min-height: 560px;
  background: var(--blue-100);
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.featured-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 950;
  line-height: 1.04;
}

.featured-copy p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}

.featured-copy dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 30px;
}

.featured-copy dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.featured-copy dt {
  color: var(--muted);
  font-weight: 850;
}

.featured-copy dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.timeline-section {
  background:
    linear-gradient(135deg, rgba(29, 191, 155, 0.12), transparent 34%),
    linear-gradient(180deg, var(--blue-900), var(--blue-950));
  color: var(--white);
}

.timeline-section .section-kicker,
.timeline-section .section-title {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline article {
  position: relative;
  min-height: 205px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.timeline article::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

.timeline article:last-child::after {
  display: none;
}

.timeline span,
.process-step span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--blue-950);
  font-weight: 950;
}

.timeline h3,
.process-step h3 {
  margin: 0 0 8px;
  color: inherit;
  font-size: 20px;
  font-weight: 950;
}

.timeline p,
.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.mini-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mini-project {
  display: grid;
  grid-template-rows: 230px auto auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.mini-project img {
  min-height: 230px;
}

.mini-project strong {
  padding: 24px 24px 7px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.mini-project span {
  padding: 0 24px 24px;
  color: var(--text);
  line-height: 1.58;
}

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

.reviews-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

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

.reviews-grid blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-050);
  box-shadow: var(--shadow-sm);
}

.reviews-grid blockquote span {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  letter-spacing: 2px;
  font-weight: 950;
}

.reviews-grid p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.reviews-grid cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.cta-section {
  padding-top: 0;
  background: var(--white);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(29, 191, 155, 0.14), transparent 40%),
    linear-gradient(180deg, var(--blue-900), var(--blue-950));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-banner .section-kicker,
.cta-banner h2 {
  color: var(--white);
}

.cta-banner h2 {
  max-width: 760px;
  margin: 0;
  font-size: 46px;
  font-weight: 950;
  line-height: 1.05;
}

.cta-banner p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.cta-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue-950);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after,
.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 22, 40, 0.82), rgba(5, 22, 40, 0.38));
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 96px 0 72px;
}

.page-hero p {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: start;
}

.aside-card {
  position: sticky;
  top: 146px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.aside-card h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.1;
}

.aside-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.aside-card .btn {
  width: 100%;
  margin-top: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}

.contact-info {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: var(--white);
}

.contact-info h2 {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.08;
}

.contact-info p,
.contact-info a {
  color: rgba(255, 255, 255, 0.82);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
}

.Contactformulier-part {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.Contactformulier-part h2,
.Contactformulier-part h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 950;
}

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

.contact-field-item.fullwidth,
.gdpr,
.contact-submit,
.contact-form-status {
  grid-column: 1 / -1;
}

.contact-form-honey {
  display: none !important;
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.form-control:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(11, 143, 231, 0.16);
}

textarea.form-control {
  min-height: 154px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.form-check a {
  color: var(--blue-700);
  font-weight: 900;
}

.contact-submit {
  display: flex;
  justify-content: flex-start;
}

.d-none {
  display: none !important;
}

.contact-form-status {
  padding: 14px 16px;
  border: 1px solid #b8e1c7;
  border-radius: var(--radius);
  background: #ecfdf3;
  color: #166534;
  font-weight: 850;
}

.contact-form-status.error {
  border-color: #f2b8b5;
  background: #fff1f0;
  color: #9b1c1c;
}

.image-tint {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-100);
}

.services-grid,
.process-grid,
.project-grid,
.trust-grid,
.split,
.hero-panels {
  display: none;
}

.project-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-950);
}

.project-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
}

.site-footer {
  padding: 66px 0;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.76);
}

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

.footer-logo {
  width: 190px;
  margin-bottom: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-col h3,
.footer-col h4,
.footer-col h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 17px;
  font-weight: 950;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.not-found {
  min-height: 65vh;
  display: grid;
  align-items: center;
  padding: 90px 0;
  background: var(--blue-050);
}

.not-found h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 64px;
  line-height: 1;
}

.not-found p {
  margin-top: 20px;
  font-size: 18px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-col p,
.footer-col li {
  line-height: 1.7;
}

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

.work-area {
  color: var(--white);
  font-weight: 900;
}

.openingLine {
  display: flex;
  gap: 8px;
  line-height: 1.65;
}

.openingDay {
  min-width: 28px;
  color: var(--white);
  font-weight: 900;
}

.floating-contact {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 30;
  display: grid;
  padding: 0;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  background: var(--blue-700);
  box-shadow: 0 18px 40px rgba(5, 80, 143, 0.2);
  transform: translateY(-50%);
}

.floating-contact a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--blue-700);
  color: var(--white);
  font-size: 0;
  transition: background 0.18s ease, transform 0.18s ease;
}

.floating-contact a:last-child {
  border-bottom: 0;
}

.floating-contact a:hover {
  background: var(--blue-800);
  transform: translateX(-3px);
}

.floating-contact a::before {
  content: "";
  width: 23px;
  height: 23px;
  background: var(--white);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.floating-contact .icon-phone::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.6 3.2 3.4 5 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1.3.4 2.7.7 4.1.7.7 0 1.3.6 1.3 1.3v3.5c0 .7-.6 1.3-1.3 1.3C10.4 21.8 2.2 13.6 2.2 3.3 2.2 2.6 2.8 2 3.5 2H7c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.7 4.1.1.4 0 .8-.3 1.2l-2.1 2.2Z'/%3E%3C/svg%3E");
}

.floating-contact .icon-instagram::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2.1a3.7 3.7 0 0 0-3.7 3.7v8.4a3.7 3.7 0 0 0 3.7 3.7h8.4a3.7 3.7 0 0 0 3.7-3.7V7.8a3.7 3.7 0 0 0-3.7-3.7H7.8ZM12 7.2A4.8 4.8 0 1 1 12 16.8 4.8 4.8 0 0 1 12 7.2Zm0 2.1A2.7 2.7 0 1 0 12 14.7 2.7 2.7 0 0 0 12 9.3Zm5-2.6a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E");
}

.floating-contact .icon-whatsapp::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.1 2.4a9.3 9.3 0 0 0-8 14l-1 5.2 5.3-1a9.4 9.4 0 1 0 3.7-18.2Zm0 16.9c-1.4 0-2.7-.4-3.8-1l-.3-.2-3.1.6.6-3-.2-.3a7.4 7.4 0 1 1 6.8 3.9Zm4-5.5c-.2-.1-1.4-.7-1.6-.8-.2-.1-.4-.1-.6.1-.2.3-.6.8-.8 1-.1.2-.3.2-.5.1-.2-.1-1-.4-1.9-1.2-.7-.6-1.2-1.4-1.3-1.6-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.7-1.7c-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.3-.9.9-.9 2.2s.9 2.5 1.1 2.7c.1.2 1.8 2.8 4.4 3.9.6.3 1.1.4 1.5.5.6.2 1.2.2 1.6.1.5-.1 1.4-.6 1.6-1.1.2-.5.2-1 .1-1.1-.1-.2-.3-.2-.5-.3Z'/%3E%3C/svg%3E");
}

.floating-contact .icon-mail::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h18c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1H3c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1Zm9 8.2L4.7 7H4v.8l8 6.8 8-6.8V7h-.7L12 13.2Z'/%3E%3C/svg%3E");
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 190px 1fr 46px;
    min-height: 88px;
  }

  .brand img {
    width: 188px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 94px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .mobile-nav-actions a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--blue-100);
    color: var(--blue-900);
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-nav-actions a:last-child {
    background: var(--blue-700);
    color: var(--white);
  }

  body.menu-open .main-nav {
    display: grid;
  }

  .nav-link {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 14px 16px;
    font-size: 14px;
  }

  .hero-split,
  .owner-split,
  .featured-project,
  .reviews-layout,
  .contact-layout,
  .content-wrap {
    grid-template-columns: 1fr;
  }

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

  .hero-photo {
    min-height: 420px;
  }

  .owner-photo,
  .featured-photo {
    min-height: 430px;
  }

  .bento-services,
  .timeline,
  .mini-project-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-row: span 1;
  }

  .timeline article::after {
    display: none;
  }

  .aside-card {
    position: static;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 62px;
  }

  .container {
    width: min(100% - 28px, 620px);
  }

  .site-header {
    border-top-width: 4px;
  }

  .header-inner {
    grid-template-columns: 1fr 46px;
    gap: 18px;
    min-height: 78px;
  }

  .brand img {
    width: 150px;
  }

  .main-nav {
    inset: 82px 0 auto;
  }

  .hero-copy {
    padding: 54px 24px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .section-title,
  .page-title h1,
  .page-title h2,
  .featured-copy h2,
  .cta-banner h2 {
    font-size: 36px;
  }

  .section-kicker {
    font-size: 26px;
  }

  .content-panel h2,
  .content h2,
  .Contactformulier-part h2,
  .Contactformulier-part h3 {
    font-size: 30px;
  }

  .hero-photo {
    min-height: 330px;
  }

  .section {
    padding: 70px 0;
  }

  .trust-strip-inner {
    justify-content: flex-start;
    padding: 16px 0;
  }

  .owner-photo,
  .featured-photo {
    min-height: 340px;
  }

  .bento-services,
  .timeline,
  .mini-project-grid,
  .reviews-grid,
  .contactForm {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col a,
  .footer-col p {
    overflow-wrap: anywhere;
  }

  .featured-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-banner {
    display: grid;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .content,
  .Contactformulier-part,
  .contact-info,
  .featured-copy {
    padding: 24px;
  }

  .floating-contact {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 62px;
    box-shadow: 0 -12px 30px rgba(5, 40, 77, 0.18);
  }

  .mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-weight: 950;
  }

  .mobile-call {
    background: var(--white);
    color: var(--blue-900);
  }

  .mobile-quote {
    background: var(--blue-700);
    color: var(--white);
  }

  .footer-bottom {
    display: grid;
  }

  .not-found h1 {
    font-size: 42px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
