:root {
  --ink: #111318;
  --muted: #5e6470;
  --paper: #f7f4ee;
  --white: #ffffff;
  --bronze: #c9964e;
  --bronze-dark: #8d683c;
  --logo-taupe: #756a58;
  --forest: #26352f;
  --steel: #d9dee2;
  --line: rgba(17, 19, 24, 0.13);
  --shadow: 0 22px 70px rgba(17, 19, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(35, 31, 25, 0.88), rgba(35, 31, 25, 0.22));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(226, 190, 112, 0.62);
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.ghost-link,
.primary-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 3px;
  font-weight: 800;
}

.ghost-link {
  color: rgba(255, 255, 255, 0.86);
}

.primary-link,
.button-light,
.button-submit {
  color: var(--white);
  background: var(--bronze);
  box-shadow: 0 12px 24px rgba(134, 91, 52, 0.22);
}

.primary-link {
  padding: 0 18px;
}

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font-size: 15px;
}

.button-dark {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(35, 31, 25, 0.62);
}

.button-dark-solid {
  color: var(--white);
  background: var(--logo-taupe);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 140px clamp(22px, 6vw, 78px) 96px;
  color: var(--white);
  background: url("assets/hero-renovatie.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.84) 0%, rgba(8, 11, 12, 0.64) 38%, rgba(8, 11, 12, 0.14) 75%),
    linear-gradient(180deg, rgba(8, 11, 12, 0.48), rgba(8, 11, 12, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy {
  width: min(650px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(640px, 100%);
  margin: 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  padding: 18px;
  background: rgba(17, 19, 24, 0.56);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin-bottom: 5px;
  font-size: 28px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.quick-contact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -44px auto 0;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-contact a {
  display: grid;
  gap: 6px;
  min-height: 96px;
  align-content: center;
  padding: 20px 24px;
  background: var(--white);
}

.quick-contact a:nth-child(2) {
  color: var(--white);
  background: var(--bronze);
}

.quick-contact strong {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.1;
}

.quick-contact span {
  color: var(--muted);
  line-height: 1.35;
}

.quick-contact a:nth-child(2) span {
  color: rgba(255, 255, 255, 0.82);
}

.service-strip,
.process,
.request-band,
.intro-band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(840px, 100%);
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
}

.service-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 19, 24, 0.04), rgba(17, 19, 24, 0.72));
}

.service-tile span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.05;
}

.service-tile:hover img {
  opacity: 0.92;
  transform: scale(1.06);
}

.service-tile.is-active {
  outline: 4px solid var(--bronze);
  outline-offset: -4px;
}

.service-tile.is-active img {
  transform: scale(1.04);
}

.portfolio-panel {
  margin-top: 28px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.portfolio-panel[hidden] {
  display: none;
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.portfolio-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.portfolio-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

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

.portfolio-item {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-item figcaption {
  min-height: 54px;
  margin: 0;
  padding: 12px 14px;
  color: #30343a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.28;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 6vw, 84px);
  background: var(--white);
}

.intro-copy p,
.request-copy p,
.process article p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.proof-list div,
.process article,
.contact-panel,
.request-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.proof-list div {
  padding: 22px;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-list span {
  color: var(--muted);
  line-height: 1.55;
}

.process {
  background: var(--forest);
  color: var(--white);
}

.process .eyebrow {
  color: #e2be70;
}

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

.process article {
  min-height: 260px;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.process article span {
  display: block;
  margin-bottom: 54px;
  color: #e2be70;
  font-weight: 900;
}

.process article p {
  color: rgba(255, 255, 255, 0.72);
}

.request-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.request-copy a {
  color: var(--bronze-dark);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 30px);
  overflow: hidden;
  position: relative;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--bronze), #e2be70);
}

.contact-panel-head {
  display: grid;
  gap: 4px;
}

.contact-kicker {
  color: var(--bronze-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-panel strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.contact-panel-head span:last-child {
  color: var(--muted);
  font-size: 17px;
}

.contact-details {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.contact-details div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.88);
}

.contact-details dt {
  color: var(--bronze-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: #3a3f49;
  font-weight: 750;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-details a {
  color: var(--ink);
  font-weight: 850;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #2a2e35;
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 19, 24, 0.18);
  border-radius: 2px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 138px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 130, 74, 0.24);
  border-color: var(--bronze);
}

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

.button-submit {
  min-height: 54px;
}

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding: 28px 18px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  font-size: 14px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .quick-contact,
  .service-grid,
  .portfolio-gallery,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px 18px;
  }

  .brand-logo {
    width: 74px;
    height: 74px;
  }

  .header-actions {
    width: 100%;
  }

  .ghost-link,
  .primary-link {
    flex: 1;
    min-width: 0;
    font-size: 13px;
  }

  .hero {
    min-height: 98vh;
    padding: 176px 18px 72px;
  }

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

  .quick-contact,
  .service-grid,
  .portfolio-heading,
  .portfolio-gallery,
  .process-grid,
  .intro-band,
  .request-band,
  .request-form {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 210px;
  }

  .portfolio-actions {
    justify-content: stretch;
  }

  .portfolio-actions .button {
    width: 100%;
  }

  .contact-details div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 0;
  }

  .process article {
    min-height: auto;
  }

  .process article span {
    margin-bottom: 26px;
  }
}
