:root {
  --navy: #101c26;
  --navy-2: #172633;
  --gold: #c79a45;
  --gold-dark: #a77c2f;
  --paper: #f7f5f0;
  --white: #ffffff;
  --ink: #18222b;
  --muted: #63707a;
  --line: #ded8cc;
  --shadow: 0 14px 40px rgba(16, 28, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 5vw, 42px);
  padding: 9px 18px;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.topbar a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.97);
  box-shadow: 0 8px 22px rgba(16, 28, 38, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 3px;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.quote-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 3px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.quote-link,
.button.primary {
  color: #fff;
  background: var(--gold);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
}

.quote-link:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 64px);
  color: #fff;
  background:
    linear-gradient(100deg, rgba(16, 28, 38, 0.96), rgba(16, 28, 38, 0.86)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.hero-copy {
  max-width: 680px;
}

.hero-image {
  width: 100%;
  height: clamp(320px, 42vw, 540px);
  border: 8px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.tick-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
  font-size: 18px;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
}

.tick-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.tick-list.dark {
  color: var(--ink);
  font-size: 16px;
}

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

.section,
.page-head,
.cta {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

.section-title {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-title p,
.page-head p,
.plain-box p,
.service-list p,
.card p,
.site-footer p {
  color: var(--muted);
}

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

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(16, 28, 38, 0.06);
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

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

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.card h3,
.card p {
  padding-right: 18px;
  padding-left: 18px;
}

.card h3 {
  margin-top: 18px;
}

.card p {
  margin-bottom: 22px;
}

.band {
  color: #fff;
  background: var(--navy);
}

.band p {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefits article,
.plain-box,
.service-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.band .benefits article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.scope-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.scope-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(200px, 1fr);
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.scope-table div:last-child {
  border-bottom: 0;
}

.scope-table strong {
  color: var(--navy);
}

.scope-table span {
  color: var(--muted);
}

.scope-table.large {
  margin-bottom: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.page-head {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.page-head p {
  max-width: 820px;
  font-size: 19px;
}

.page-head-photo {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--navy);
}

.page-head-photo::before,
.page-head-photo::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-head-photo::before {
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 800ms ease;
}

.page-head-photo:hover::before {
  transform: scale(1.07);
}

.page-head-photo::after {
  background:
    linear-gradient(90deg, rgba(16, 28, 38, 0.92), rgba(16, 28, 38, 0.62), rgba(16, 28, 38, 0.24)),
    linear-gradient(0deg, rgba(16, 28, 38, 0.82), rgba(16, 28, 38, 0.1));
}

.page-head-photo > div {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-head-photo p {
  color: rgba(255, 255, 255, 0.82);
}

.services-head::before {
  background-image: url("https://primary.jwwb.nl/pexels/80/8082324.jpeg?crop=1.8897%3A1&enable=upscale&enable-io=true&width=1400");
}

.work-head::before {
  background-image: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1400&q=80");
}

.quote-head::before {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80");
}

.process-head::before {
  background-image: url("https://primary.jwwb.nl/pexels/76/7601262.jpeg?crop=1.7811%3A1&enable=upscale&enable-io=true&width=1400");
}

.service-list {
  display: grid;
  gap: 16px;
}

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

.feature-list article {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-list article::after {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border: 22px solid rgba(199, 154, 69, 0.12);
  border-radius: 50%;
  content: "";
}

.feature-list article:hover {
  border-color: rgba(199, 154, 69, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-list svg {
  width: 34px;
  height: 34px;
  margin-bottom: 36px;
  color: var(--gold);
}

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  background: #fff;
}

.stats-row article {
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 24px;
}

.stats-row span {
  color: var(--muted);
}

.gallery figure {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

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

.gallery figcaption {
  padding: 16px 18px;
  color: var(--muted);
}

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

.process-steps article {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-steps article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.process-steps svg {
  width: 34px;
  height: 34px;
  margin: 30px 0 44px;
  color: var(--gold);
}

.steps article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  gap: 24px;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.quote-layout {
  align-items: start;
}

.contact-card-live {
  position: sticky;
  top: 120px;
  border-color: rgba(199, 154, 69, 0.42);
  box-shadow: var(--shadow);
}

.contact-card-live a {
  color: var(--gold-dark);
  font-weight: 800;
}

.mini-checks {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.mini-checks span {
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
}

.dark-box {
  color: var(--ink);
}

label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(199, 154, 69, 0.2);
}

.cta {
  color: #fff;
  text-align: center;
  background: var(--navy-2);
}

.cta p {
  color: rgba(255, 255, 255, 0.76);
}

.cta .actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--navy);
}

.site-footer a {
  display: block;
  color: #fff;
  text-decoration: none;
  overflow-wrap: anywhere;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 460ms ease, transform 460ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .quote-link {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards.four,
  .gallery,
  .steps,
  .feature-list,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 660px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero {
    padding-top: 34px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .cards.four,
  .gallery,
  .steps,
  .feature-list,
  .stats-row,
  .scope-table div {
    grid-template-columns: 1fr;
  }

  .page-head-photo {
    min-height: 390px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
