/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  --bg: #0b0b0d;
  --bg-2: #111114;
  --card: #17171b;
  --card-2: #1d1d22;
  --border: #2a2a30;
  --text: #f4f4f5;
  --muted: #9a9aa2;
  --orange: #f26a1b;
  --orange-2: #ff8130;
  --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Barlow", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange-2); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Image placeholders (swapped for real photos later) */
.img-placeholder {
  width: 100%; height: 100%;
  background-color: #16161a;
  background-image: repeating-linear-gradient(135deg, #1c1c22 0 14px, #141418 14px 28px);
  position: relative;
}
.img-placeholder::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  color: #6b6b74;
}
.img-placeholder.voor { background-image: repeating-linear-gradient(135deg, #26262c 0 14px, #1c1c22 14px 28px); }
.img-placeholder.na { background-image: repeating-linear-gradient(135deg, rgba(242,106,27,.28) 0 14px, rgba(242,106,27,.16) 14px 28px); background-color:#20160e; }
.img-placeholder.na::after { color: #b9814f; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,13,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px;
}
.logo { display: block; line-height: 1; }
.logo img { height: 56px; width: auto; display: block; }
.footer-logo img { height: 68px; margin-top: 8px; }
.logo-main {
  display: block;
  font-family: "Oswald", sans-serif; font-weight: 700; font-style: italic;
  font-size: 30px; letter-spacing: .02em; color: var(--orange);
  -webkit-text-stroke: 1px #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,.6);
}
.logo-sub {
  display: block; margin-top: 4px;
  font-family: "Barlow", sans-serif; font-style: italic; font-weight: 600;
  font-size: 12px; letter-spacing: .06em; color: #fff;
}

.main-nav { display: flex; gap: 34px; margin-left: auto; }
.main-nav a {
  font-family: "Oswald", sans-serif; font-weight: 500;
  font-size: 15px; letter-spacing: .08em; color: var(--text);
  padding: 6px 0; position: relative;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a.active { color: var(--text); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; background: var(--orange);
}

.header-socials { display: flex; align-items: center; gap: 12px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-size: 18px;
  transition: background .2s ease, transform .2s ease;
}
.social-btn:hover { background: var(--orange-2); color: #fff; transform: translateY(-2px); }

.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 22px; cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background: #000;
  min-height: 560px; display: flex; align-items: center;
}
.hero-media { position: absolute; inset: 0; }
.hero-media .img-placeholder {
  position: absolute; top: 0; right: 0; width: 66%; height: 100%;
}
.hero-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #000 0%, #000 28%, rgba(0,0,0,.55) 48%, rgba(0,0,0,0) 72%),
    linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,0) 40%);
}
.hero-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-title {
  font-family: "Oswald", sans-serif; font-weight: 700;
  font-size: clamp(48px, 6.5vw, 92px); line-height: .96;
  letter-spacing: .01em; text-transform: uppercase;
}
.hero-title .accent { color: var(--orange); }
.hero-sub {
  margin-top: 22px; max-width: 420px;
  font-size: 19px; color: #d5d5da;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Oswald", sans-serif; font-weight: 600; letter-spacing: .06em;
  padding: 14px 26px; border-radius: var(--radius);
  cursor: pointer; transition: all .2s ease; border: 2px solid transparent;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-2); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--orange); color: #fff; background: rgba(242,106,27,.12); }
.btn-lg { padding: 16px 28px; }
.btn-icon { font-size: 20px; }
.btn-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.btn-text strong { font-size: 16px; font-weight: 700; letter-spacing: .07em; }
.btn-text em { font-style: normal; font-weight: 400; font-size: 12.5px; opacity: .82; letter-spacing: .02em; font-family: "Barlow", sans-serif; }

/* ============ SECTIONS ============ */
.section { padding: 84px 0; }
.eyebrow {
  text-align: center;
  font-family: "Oswald", sans-serif; font-weight: 600;
  color: var(--orange); letter-spacing: .22em; font-size: 15px;
  text-transform: uppercase;
}
.section-title {
  text-align: center; margin-top: 8px; margin-bottom: 48px;
  font-family: "Oswald", sans-serif; font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px); letter-spacing: .02em;
  text-transform: uppercase;
}
.section-title.left { text-align: left; }

/* ============ DIENSTEN ============ */
.diensten { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
}
.service-card {
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 30px 20px; text-align: center;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.service-card:hover {
  transform: translateY(-4px); border-color: var(--orange);
  box-shadow: 0 14px 34px -18px rgba(242,106,27,.65);
}
.service-icon {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; margin-bottom: 16px;
  font-size: 30px; color: var(--orange);
}
.service-card h3 {
  font-family: "Oswald", sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* ============ VOOR & NA ============ */
.ba-carousel { position: relative; }
.ba-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 4px;
  scrollbar-width: none;
}
.ba-track::-webkit-scrollbar { display: none; }
.ba-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4/3;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  user-select: none; touch-action: none;
}
.ba-img { position: absolute; inset: 0; }
.ba-img .img-placeholder,
.ba-img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; user-select: none; }
.ba-before { clip-path: inset(0 50% 0 0); z-index: 2; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4;
  width: 3px; background: #fff; transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle i {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-size: 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,.5);
}
.ba-range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize;
}
.ba-caption {
  margin-top: 14px; font-family: "Oswald", sans-serif; font-weight: 500;
  font-size: 15px; letter-spacing: .04em; color: var(--text); text-transform: uppercase;
}
.ba-labels {
  display: flex; justify-content: space-between; margin-top: 6px;
  font-family: "Oswald", sans-serif; font-weight: 600;
  color: var(--orange); letter-spacing: .12em; font-size: 15px;
}
.ba-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.ba-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: #3a3a42; cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease;
}
.ba-dots button.active { background: var(--orange); transform: scale(1.15); }

/* ============ OVER ONS ============ */
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.over-media { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.over-text .eyebrow, .over-text .section-title { text-align: left; }
.over-text .section-title { margin-bottom: 22px; }
.over-text p { color: var(--muted); margin-bottom: 16px; }
.over-points { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.over-points li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text); }
.over-points i { color: var(--orange); }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-2); border-top: 3px solid var(--orange); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1fr; gap: 40px;
  padding: 62px 24px 46px;
}
.footer-col h4 {
  font-family: "Oswald", sans-serif; font-weight: 600;
  color: var(--orange); letter-spacing: .1em; font-size: 16px;
  text-transform: uppercase; margin-bottom: 22px;
}
.footer-col p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.footer-logo .logo-main { font-size: 24px; }
.footer-logo .logo-sub { font-size: 10px; }

.hours { list-style: none; display: grid; gap: 16px; }
.hours li { display: flex; flex-direction: column; gap: 2px; }
.hours .day { font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.hours .day i { color: var(--orange); }
.hours .time { color: var(--muted); font-size: 14px; padding-left: 24px; }
.hours .time.closed { color: #7a7a82; }

.contact-list { list-style: none; display: grid; gap: 18px; }
.contact-list li, .contact-list a { display: flex; align-items: flex-start; gap: 14px; color: var(--text); }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--orange); }
.contact-list i { color: var(--orange); font-size: 16px; width: 18px; margin-top: 4px; flex-shrink: 0; }
.contact-list span { font-size: 14.5px; line-height: 1.45; word-break: break-word; }

.follow-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; color: var(--text); }
.follow-item:hover { color: var(--text); }
.follow-item:hover .follow-icon { transform: translateY(-2px); }
.follow-icon { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 20px; flex-shrink: 0; transition: transform .2s ease; }
.follow-icon.fb { background: #1877f2; }
.follow-icon.wa { background: #25d366; }
.follow-text { display: flex; flex-direction: column; line-height: 1.2; }
.follow-text strong { font-weight: 700; font-size: 15px; }
.follow-text em { font-style: normal; color: var(--muted); font-size: 13px; }

.footer-map { height: 320px; border-top: 1px solid var(--border); }
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.9) contrast(.85); }

.footer-bar { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bar .container { display: flex; justify-content: center; }
.footer-bar span { color: #70707a; font-size: 13px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: grid; place-items: center; }
  .main-nav {
    position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; gap: 0; margin-left: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a { padding: 16px 24px; border-bottom: 1px solid var(--border); width: 100%; }
  .main-nav a.active::after { display: none; }
  .hero-media .img-placeholder { width: 100%; }
  .hero-fade { background: linear-gradient(0deg, #000 8%, rgba(0,0,0,.6) 45%, rgba(0,0,0,.35)); }
  .ba-track { gap: 0; }
  .ba-card { flex-basis: 100%; }
  .over-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}
