:root {
  --orange: #e08a32;
  --orange-hover: #f09a42;
  --wood: #c4783a;
  --brown: #5c3a22;
  --brown-deep: #3a2416;
  --ink: #12100e;
  --paper: #f6f1ea;
  --muted: #d8cfc4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--ink);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--orange);
  color: var(--ink);
  padding: 8px 14px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
}

.topbar {
  background: var(--brown-deep);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar__inner,
.nav__inner,
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: flex-end;
  padding: 10px 0;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar a:hover {
  color: var(--orange);
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav {
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 18px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  width: min(340px, 72vw);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(224, 138, 50, 0.55);
  background: rgba(18, 16, 14, 0.55);
  color: var(--orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(224, 138, 50, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(224, 138, 50, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(224, 138, 50, 0);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.55) 0%, rgba(18, 16, 14, 0.72) 48%, rgba(18, 16, 14, 0.92) 100%),
    url("../assets/images/hero.jpg") center / cover no-repeat;
  z-index: -1;
  transform: scale(1.04);
}

.hero__content {
  width: min(840px, calc(100% - 32px));
  text-align: center;
  padding: 160px 0 80px;
}

.hero h1 {
  font-family: Poppins, "Open Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.08;
  margin: 22px 0 16px;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: 1.08rem;
  color: var(--muted);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.btn--primary {
  background: var(--orange);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(var(--max), calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
}

.usp {
  background: rgba(90, 58, 34, 0.92);
  color: var(--white);
  padding: 24px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.usp h2 {
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.usp p {
  margin: 0;
  color: #efe6da;
  font-size: 0.94rem;
}

.section {
  padding: 88px 0;
}

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

.section--tight {
  padding-top: 0;
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.kicker {
  color: var(--wood);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 10px;
}

.section h2 {
  font-family: Poppins, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
  margin: 0 0 14px;
}

.lead {
  max-width: 68ch;
  margin: 0 0 36px;
  color: #4a4138;
}

.section--dark .lead {
  color: var(--muted);
}

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

.dienst {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.dienst img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.dienst::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 16, 14, 0.05), rgba(18, 16, 14, 0.78));
  z-index: -1;
}

.dienst h3 {
  font-family: Poppins, sans-serif;
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.dienst p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

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

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery img:first-child,
.gallery img:nth-child(6) {
  grid-column: span 2;
  height: 240px;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.info-list {
  background: #1b1815;
  border: 1px solid rgba(224, 138, 50, 0.18);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-card h3,
.info-list h3 {
  font-family: Poppins, sans-serif;
  margin: 0 0 16px;
}

.info-list dl {
  margin: 0;
}

.info-list dt {
  color: var(--orange);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 14px;
}

.info-list dt:first-child {
  margin-top: 0;
}

.info-list dd {
  margin: 2px 0 0;
}

.info-list a {
  color: var(--white);
  text-decoration: none;
}

.info-list a:hover {
  color: var(--orange);
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.areas span {
  background: rgba(224, 138, 50, 0.12);
  color: var(--orange);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
}

.footer {
  background: #0b0a09;
  color: #b7aea4;
  padding: 22px 0;
  font-size: 0.92rem;
}

.footer__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .usps,
  .diensten,
  .contact,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img:first-child,
  .gallery img:nth-child(6) {
    grid-column: span 1;
    height: 180px;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    justify-content: center;
  }

  .nav {
    top: 72px;
  }

  .hero__content {
    padding-top: 190px;
  }

  .usps,
  .diensten,
  .contact,
  .gallery {
    grid-template-columns: 1fr;
  }

  .actions,
  .footer__inner {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
