@font-face {
  font-family: "Barlow Condensed";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/barlow-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/barlow-700.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/barlow-800.woff2") format("woff2");
}

:root {
  --bg: #060708;
  --panel: #0d1013;
  --teal: #12a0bb;
  --teal-light: #5fd6ec;
  --white: #f4f7f8;
  --muted: #9aa7ab;
  --border: rgba(255, 255, 255, 0.08);
  --heading-font: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --body-font: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--body-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--heading-font);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  line-height: 1.05;
}

h2 { font-size: clamp(28px, 4vw, 42px); color: var(--white); }
h3 { font-size: 20px; }

p { margin: 0 0 16px; color: var(--muted); }

.kicker {
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-size: 14px;
  margin: 0 0 8px;
}

.center { text-align: center; }
.section { padding: 88px 0; }
.section-alt { background: var(--panel); }
.note { color: var(--muted); font-size: 14px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 7, 8, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 52px; width: auto; }
.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}
.site-nav a { text-decoration: none; color: var(--white); opacity: 0.85; }
.site-nav a:hover { color: var(--teal-light); opacity: 1; }
.header-phone {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}
.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  min-height: min(88svh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,7,8,0.55) 0%, rgba(6,7,8,0.55) 40%, rgba(6,7,8,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.hero-logo {
  width: min(440px, 78vw);
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.55));
}
.hero h1 {
  font-size: clamp(38px, 6.5vw, 72px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  max-width: 520px;
  font-size: 18px;
  color: #d7dee0;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--teal); color: #04151a; }
.btn-primary:hover { background: var(--teal-light); }
.btn-ghost { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-ghost:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-media img {
  border: 1px solid var(--teal);
  padding: 6px;
}
.about-copy .lead { color: var(--teal-light); font-weight: 600; font-size: 15px; }
.credential-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.credential-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-size: 15px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.service-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
}
.service-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { color: var(--white); }
.service-card p { margin: 0; font-size: 15px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.gallery-item { margin: 0; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--teal);
}
.gallery-item figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Werkgebied */
.werkgebied-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}

/* Pricing */
.price-list {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  max-width: 640px;
  border-top: 1px solid var(--border);
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
}
.price-list .price {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--teal-light);
  font-size: 20px;
}

/* Contact */
.section-contact { background: var(--panel); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.contact-label { color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--teal-light); }

/* Footer */
.site-footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-inner img { height: 40px; width: auto; opacity: 0.9; }
.footer-inner p { margin: 0; font-size: 13px; color: var(--muted); }

/* Focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-grid { gap: 20px; }
  .about-grid, .werkgebied-grid, .contact-grid { gap: 40px; }
}

@media (max-width: 860px) {
  .about-grid, .werkgebied-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:last-child { grid-column: 1 / -1; }
  .section { padding: 64px 0; }
  .about-media { max-width: 560px; }
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .gallery-item:last-child { grid-column: auto; }
  .header-phone { display: none; }
  .brand-logo { height: 44px; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--white); }
}

@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .brand-logo { height: 38px; }
  .btn { padding: 12px 20px; }
  .price-list li { font-size: 15px; }
  .price-list .price { font-size: 18px; }
}
