:root {
  --navy: #081525;
  --navy-2: #0e2136;
  --navy-3: #16324d;
  --red: #e31b23;
  --red-dark: #b4141b;
  --white: #ffffff;
  --cream: #f4efe6;
  --wood: #efe6d6;
  --muted: #c5d0da;
  --ink: #1a2430;
  --shadow: 0 18px 40px rgba(8, 21, 37, 0.28);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --script: "Caveat Brush", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--red);
  color: var(--white);
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.eyebrow.red {
  color: var(--red);
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.04em;
}

.section-intro {
  max-width: 42rem;
  color: #4b5a68;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 21, 37, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  flex: 0 0 52px;
}

.brand-mark img {
  width: 100%;
  height: 170%;
  object-fit: cover;
  object-position: 50% 6%;
}

.brand span {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  line-height: 0.9;
}

.brand small {
  font-family: var(--font);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--white);
  font-weight: 600;
}

.nav a:hover {
  color: #ffd4d6;
}

.nav-call {
  background: var(--red);
  padding: 8px 14px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 48px 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(227, 27, 35, 0.18), transparent 28%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #06101c 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
}

.hero-logo-wrap {
  filter: drop-shadow(0 18px 28px rgba(8, 21, 37, 0.4));
}

.paint-splash {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.paint-splash img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.hero-copy .script {
  display: block;
  font-family: var(--script);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.hero-copy .script em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.service-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  background: #06101c;
  border-top: 3px solid var(--red);
}

.service-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 8px;
  font-family: var(--display);
  letter-spacing: 0.16em;
  font-size: 1.35rem;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.service-strip li:last-child {
  border-right: 0;
}

.strip-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.strip-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.diensten {
  padding: 88px 0 72px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: var(--white);
  padding: 28px 24px 32px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(8, 21, 37, 0.08);
  border-top: 4px solid var(--red);
}

.card h3 {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin: 12px 0 8px;
}

.card p {
  margin: 0;
  color: #4b5a68;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.over {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 520px;
  background: var(--navy);
  color: var(--white);
}

.over-visual {
  position: relative;
  overflow: hidden;
  background: var(--wood);
}

.over-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(2.4);
  transform-origin: 96% 58%;
}

.over-copy {
  padding: clamp(36px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.script-heading {
  font-family: var(--script);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0;
}

.script-heading em {
  color: var(--red);
  font-style: normal;
}

.stars {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
}

.stars li {
  width: 12px;
  height: 12px;
  background: var(--red);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.over-copy p {
  color: var(--muted);
  max-width: 36rem;
}

.promise {
  font-size: 1.2rem;
  color: var(--white) !important;
}

.brush {
  position: relative;
  color: var(--white);
}

.brush::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 8px;
  background: var(--red);
  border-radius: 40% 60% 50% 50%;
  opacity: 0.9;
  z-index: -1;
}

.contact {
  padding: 88px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.contact-list a {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(8, 21, 37, 0.06);
}

.contact-list a:hover {
  outline: 2px solid var(--red);
}

.contact-list small {
  display: block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.contact-form {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  border-radius: 16px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  background: #06101c;
  color: var(--muted);
  padding: 32px 0 96px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

  .hero-grid,
  .cards,
  .over,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .over {
    min-height: 0;
  }

  .over-copy {
    order: 1;
    padding: 40px 24px 32px;
    text-align: center;
    align-items: center;
  }

  .over-copy .eyebrow,
  .over-copy p {
    max-width: 28rem;
  }

  .over-copy .stars {
    justify-content: center;
  }

  .over-copy .btn {
    width: 100%;
    max-width: 320px;
    margin-top: 12px;
  }

  .over-visual {
    order: 2;
    height: 220px;
    border-top: 3px solid var(--red);
  }

  .over-visual img {
    min-height: 0;
    height: 100%;
    transform: scale(1.35);
    transform-origin: 72% 55%;
  }

  .paint-splash {
    max-width: 280px;
    margin-inline: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead,
  .hero-actions {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: var(--navy);
  }

  .mobile-cta a {
    text-align: center;
    color: var(--white);
    font-weight: 700;
    padding: 14px 8px;
  }

  .mobile-cta .whatsapp {
    background: var(--red);
  }
}

@media (max-width: 1100px) {
  .over {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .over-copy {
    order: 1;
    padding: 48px 32px 36px;
    text-align: center;
    align-items: center;
  }

  .over-copy .eyebrow,
  .over-copy p {
    max-width: 32rem;
  }

  .over-copy .stars {
    justify-content: center;
  }

  .over-copy .btn {
    width: 100%;
    max-width: 340px;
    margin-top: 12px;
  }

  .over-visual {
    order: 2;
    height: 260px;
    border-top: 3px solid var(--red);
  }

  .over-visual img {
    min-height: 0;
    height: 100%;
    transform: scale(1.5);
    transform-origin: 78% 52%;
  }
}

@media (max-width: 768px) {
  .over-visual {
    display: none;
  }

  .over-copy {
    padding: 44px 20px 40px;
    border-bottom: 3px solid var(--red);
  }
}

@media (max-width: 600px) {
  .over-copy {
    padding: 36px 20px 32px;
  }

  .script-heading {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }

  .promise {
    font-size: 1.05rem;
  }
}

@media (min-width: 901px) {
  .contact {
    padding-bottom: 88px;
  }

  .site-footer {
    padding-bottom: 32px;
  }
}
