:root {
  --graphite: #0d0e10;
  --graphite-2: #15181b;
  --plaster: #f3f2ef;
  --paper: #ffffff;
  --orange: #f37021;
  --orange-dark: #c4572a;
  --whatsapp: #25d366;
  --cool: #6e747a;
  --cool-2: #c8ccd0;
  --line: rgba(243, 242, 239, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --font: Inter, "Neue Haas Grotesk Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--graphite);
  color: var(--plaster);
  font-family: var(--font);
  line-height: 1.5;
}

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

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

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(243, 112, 33, .09), transparent 24%),
    linear-gradient(90deg, rgba(243, 242, 239, .045) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--graphite);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 56px;
  background: rgba(13, 14, 16, .96);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  width: 228px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d9d8d4;
  font-size: 14px;
  font-weight: 520;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(243, 242, 239, .42);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 690;
  background: transparent;
  color: var(--plaster);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(243, 112, 33, .78);
  outline-offset: 4px;
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--paper);
}

.button.primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button.whatsapp {
  border-color: rgba(37, 211, 102, .62);
  color: #e9fff0;
}

.button.whatsapp:hover {
  background: rgba(37, 211, 102, .12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: calc(100dvh - 84px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, var(--graphite) 0 48%, var(--graphite-2) 48% 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px 56px 76px;
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "PRECISE AFWERKING. DUURZAAM RESULTAAT.";
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 790;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 790;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  margin: 28px 0 0;
  max-width: 560px;
  color: #d3d4d4;
  font-size: 19px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
  max-width: 680px;
}

.proof-item {
  border-left: 2px solid var(--orange);
  border-top: 0;
  padding-top: 16px;
  padding-left: 16px;
}

.proof-item strong {
  display: block;
  font-size: 15px;
  font-weight: 760;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: #bfc2c4;
  font-size: 13px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--graphite-2);
}

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

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13, 14, 16, .18) 0, rgba(13, 14, 16, .04) 42%, transparent 70%);
  pointer-events: none;
}

.edge-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 7px;
  background: var(--orange);
}

.section {
  padding: 92px 56px;
}

.section.dark {
  background: var(--graphite);
  color: var(--plaster);
}

.section {
  background: var(--graphite);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.section-title h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 780;
  letter-spacing: 0;
}

.section-title p {
  margin: 0;
  color: #c9c9c7;
  font-size: 17px;
}

.dark .section-title p {
  color: #c8ccd0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 100%;
  border: 1px solid rgba(243, 242, 239, .12);
  border-radius: 6px;
  background: #101215;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1d20;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 14, 16, .05), rgba(13, 14, 16, .62)),
    linear-gradient(135deg, transparent 0 70%, rgba(243, 112, 33, .3) 70% 100%);
  pointer-events: none;
}

.service-media span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  padding: 7px 10px;
  background: var(--orange);
  color: var(--paper);
  font-size: 11px;
  font-weight: 790;
  text-transform: uppercase;
}

.service-body {
  position: relative;
  padding: 26px;
  border-top: 1px solid rgba(243, 112, 33, .34);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 18px;
  border: 1px solid rgba(243, 112, 33, .52);
  color: var(--orange);
  font-size: 12px;
  font-weight: 790;
}

.service-card h3 {
  margin: 0;
  color: var(--paper);
  font-size: 22px;
  line-height: 1.12;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.service-card p {
  margin: 14px 0 0;
  color: #e0e1df;
  font-size: 15px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  color: #f0efeb;
  font-size: 14px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  background: var(--orange);
}

.service-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid rgba(243, 112, 33, .38);
  background: rgba(243, 112, 33, .38);
}

.service-trust div {
  min-height: 118px;
  padding: 22px;
  background: #0f1113;
}

.service-trust strong {
  display: block;
  color: var(--orange);
  font-size: 15px;
  font-weight: 790;
}

.service-trust span {
  display: block;
  margin-top: 8px;
  color: #e3e2df;
  font-size: 14px;
}

.projects-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(243, 242, 239, .035) 1px, transparent 1px) 0 0 / 72px 72px,
    #090a0b;
}

.projects-title {
  align-items: start;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 790;
  text-transform: uppercase;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.compare-card,
.project-copy,
.project-card {
  border: 1px solid rgba(243, 242, 239, .13);
  border-radius: 6px;
  background: rgba(255, 255, 255, .045);
}

.compare-card {
  overflow: hidden;
  contain: paint;
}

.compare-stage {
  --label-bg: rgba(13, 14, 16, .86);
  position: relative;
  min-height: 430px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1b1d1f;
}

.compare-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.compare-image span,
.project-thumb::after {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 8px;
  background: rgba(13, 14, 16, .86);
  color: var(--paper);
  font-size: 11px;
  font-weight: 790;
  text-transform: uppercase;
}

.compare-after {
  clip-path: polygon(var(--split) 0, 100% 0, 100% 100%, var(--split) 100%);
}

.compare-after span {
  left: auto;
  right: 16px;
  background: var(--orange);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 3px;
  transform: translateX(-50%);
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .26);
}

.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .36);
}

.compare-control {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  color: #c8ccd0;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  overflow: hidden;
}

.compare-control input {
  width: 100%;
  accent-color: var(--orange);
}

.project-fireplace-before {
  background-color: #121416;
  background-image: url("assets/projects/featured-fireplace-before.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.project-fireplace-after {
  background-color: #121416;
  background-image: url("assets/projects/featured-fireplace-after.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-copy h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
}

.project-copy p {
  margin: 18px 0 0;
  color: #c7c9c9;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  background: rgba(243, 242, 239, .12);
  border: 1px solid rgba(243, 242, 239, .12);
}

.project-specs div {
  min-height: 84px;
  padding: 14px;
  background: #111417;
}

.project-specs dt {
  color: var(--orange);
  font-size: 11px;
  font-weight: 790;
  text-transform: uppercase;
}

.project-specs dd {
  margin: 8px 0 0;
  font-size: 14px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.project-card {
  overflow: hidden;
}

.project-thumb {
  position: relative;
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.project-thumb::after {
  content: "Project";
}

.project-card h3 {
  margin: 22px 22px 0;
  font-size: 20px;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.project-card p {
  margin: 10px 22px 24px;
  color: #c3c6c8;
  font-size: 14px;
}

.project-window {
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, .18), transparent 52%),
    url("assets/projects/window-radiator-thumb.jpg");
  background-size: 100% 100%, cover;
}

.project-corridor {
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, .2), transparent 54%),
    url("assets/projects/corridor-door-thumb.jpg");
  background-size: 100% 100%, cover;
}

.project-stairwell {
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, .22), transparent 54%),
    url("assets/projects/stairwell-thumb.jpg");
  background-size: 100% 100%, cover;
}

.recent-proof {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(243, 242, 239, .13);
  border-radius: 6px;
  background: rgba(255, 255, 255, .045);
}

.recent-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-proof-copy h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.recent-proof-copy p {
  margin: 14px 0 0;
  color: #c7c9c9;
  font-size: 15px;
}

.recent-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.recent-proof figure {
  margin: 0;
  background: #101215;
  border: 1px solid rgba(243, 242, 239, .1);
  overflow: hidden;
}

.recent-proof img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.recent-proof figcaption {
  min-height: 58px;
  padding: 12px;
  color: #e7e6e2;
  font-size: 13px;
  font-weight: 650;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(247, 245, 242, .18);
  border: 1px solid rgba(247, 245, 242, .18);
}

.process-step {
  min-height: 178px;
  padding: 26px;
  background: #111417;
}

.process-step span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 760;
}

.process-step h3 {
  margin: 18px 0 0;
  font-size: 19px;
}

.process-step p {
  margin: 12px 0 0;
  color: #c8ccd0;
  font-size: 14px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 48px;
  align-items: center;
}

.contact-band h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
}

.contact-lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: #c7c9c9;
  font-size: 18px;
}

.contact-card {
  border-radius: 6px;
  background: #111417;
  border: 1px solid rgba(243, 242, 239, .14);
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-card p {
  margin: 0 0 16px;
  color: #c3c6c8;
}

.contact-whatsapp {
  width: 100%;
  margin-bottom: 8px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 620;
}

.brand-board {
  padding: 54px;
}

.board-header {
  max-width: 1180px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
  border-bottom: 1px solid rgba(243, 242, 239, .14);
  padding-bottom: 26px;
}

.board-header h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
}

.board-header p {
  margin: 10px 0 0;
  max-width: 700px;
  color: #c3c6c8;
}

.board-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.board-panel {
  border: 1px solid rgba(243, 242, 239, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  padding: 28px;
  overflow: hidden;
}

.board-panel h2 {
  margin: 0 0 22px;
  font-size: 18px;
}

.logo-panel img {
  width: 470px;
}

.palette {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.swatch {
  min-height: 118px;
  border-radius: 6px;
  padding: 12px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  font-size: 13px;
  font-weight: 690;
}

.swatch.light {
  color: var(--graphite);
  border: 1px solid rgba(243, 242, 239, .16);
}

.cards {
  display: grid;
  gap: 18px;
}

.cards img {
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.site-preview {
  grid-column: 1 / -1;
  padding: 0;
}

.site-preview iframe {
  width: 100%;
  height: 760px;
  border: 0;
  display: block;
  background: var(--paper);
}

.notes {
  display: grid;
  gap: 12px;
}

.notes p {
  margin: 0;
  color: #c3c6c8;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1120px) {
  .nav {
    padding: 0 34px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-logo {
    width: 206px;
  }

  .hero h1 {
    font-size: 58px;
  }

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

  .project-copy {
    min-height: 0;
  }
}

@media (max-width: 920px) {
  .nav {
    height: auto;
    padding: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .nav-links .button {
    display: none;
  }

  .nav-logo {
    width: 206px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 54px 22px 42px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-proof,
  .project-grid,
  .process,
  .recent-proof,
  .contact-band,
  .section-title,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 390px;
  }

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

  .section,
  .brand-board {
    padding: 58px 22px;
  }

  .section-title h2,
  .contact-band h2 {
    font-size: 34px;
  }

  .compare-stage {
    min-height: 360px;
  }

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

  .board-header {
    display: block;
  }

  .site-preview iframe {
    height: 680px;
  }
}

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

@media (max-width: 520px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy::before {
    font-size: 11px;
  }

  .hero-proof {
    gap: 14px;
    margin-top: 40px;
  }

  .proof-item {
    min-height: 78px;
  }

  .button {
    width: 100%;
  }

  .compare-stage {
    min-height: 300px;
    aspect-ratio: 4 / 5;
  }

  .project-copy,
  .service-body,
  .contact-card {
    padding: 24px;
  }

  .service-media {
    aspect-ratio: 16 / 10;
  }

  .service-trust,
  .recent-proof-grid {
    grid-template-columns: 1fr;
  }

  .recent-proof {
    padding: 18px;
  }

  .project-copy h3 {
    font-size: 28px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(243, 242, 239, .18);
    background: rgba(13, 14, 16, .96);
    backdrop-filter: blur(12px);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-action-bar a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 760;
  }

  .mobile-action-bar a:first-child {
    background: var(--orange);
    color: var(--paper);
  }

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