/* ==========================================================================
   Propernette — hand-authored stylesheet, matched to the live Webflow design.
   Palette: black header/footer, white page, #101828 headings, orange notice.
   Headings: MarlinGeoSQ (hero light 300, sections semi-bold 600). Body: Arial.
   ========================================================================== */

@font-face {
  font-family: "MarlinGeoSQ";
  src: url("/fonts/MarlinGeoSQ-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "MarlinGeoSQ";
  src: url("/fonts/MarlinGeoSQ-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "MarlinGeoSQ";
  src: url("/fonts/MarlinGeoSQ-Bold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
:root {
  --black: #000;
  --white: #fff;
  --heading: #101828;
  --ink: #333;
  --muted: #666;
  --grey-bg: #f7f7f7;
  --border: #e4e4e4;
  --notice: #f30c0c;
  --dark-tile: #232323;
  --radius: 12px;
  --radius-lg: 24px;
  --container: 1180px;
  --font-head: "MarlinGeoSQ", "Arial", sans-serif;
  --font-body: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.5em; color: var(--heading); }
h2 { font-size: 48px; font-weight: 600; }
@media (max-width: 767px) { h2 { font-size: 28px; } }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--heading); }
img { max-width: 100%; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Striped divider band (texture from the original site) ------------------ */
.band {
  height: 58px;
  background: url("/images/band.avif") center/cover repeat-x;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: background-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--white); color: var(--black); }
.btn-invert { background: var(--white); color: var(--black); }
.btn-invert:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--black); color: var(--white);
}
.header-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 84px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 44px; width: auto; display: block; }

.nav-burger {
  cursor: pointer; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.nav-burger svg { width: 28px; height: 28px; }

.menu-list {
  position: absolute; right: 0; top: calc(100% + 14px);
  background: var(--black); border: 1px solid #222;
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 0.75rem; min-width: 220px; border-radius: 8px; z-index: 30;
}
.nav-toggle:checked ~ .menu-list { display: flex; }
.menu-list a { font-family: var(--font-head); color: var(--white); text-decoration: none; padding: 0.5rem 0.75rem; border-radius: 6px; font-size: 14px; }
.menu-list a:hover { background: #1a1a1a; }
.menu-list .btn { margin-top: 0.5rem; text-align: center; }
.menu-list a.btn-invert { color: var(--black); }
.menu-list a.btn-invert:hover { background: transparent; color: var(--white); }

@media (min-width: 900px) {
  .nav-burger { display: none; }
  .menu-list {
    display: flex; position: static; flex-direction: row; align-items: center;
    background: transparent; border: 0; padding: 0; gap: 2rem; min-width: 0;
  }
  .menu-list .btn { margin-top: 0; padding: 0.6rem 1.3rem; }
}

/* Hero: inset photo box with centered copy ------------------------------- */
.hero { padding: 1rem 0 0; }
.hero-box {
  min-height: clamp(460px, 65vh, 660px);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%),
    #111 url("/images/hero.avif") left top/cover no-repeat;
  background-blend-mode: normal;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 3.5rem 1rem;
  border-radius: var(--radius-lg);
}
@media (max-width: 479px) { .hero-box { border-radius: var(--radius); } }
.hero-box .btn { font-size: 18px; padding: 11px 22px; }
.hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: 58px;
  line-height: 1.1;
  max-width: none;
  margin: 0 auto 1.75rem;
}
@media (min-width: 1920px) { .hero h1 { font-size: 60px; } }
@media (max-width: 767px) { .hero h1 { font-size: 40px; } }
@media (max-width: 479px) { .hero h1 { font-size: 34px; } }
.notice {
  color: var(--notice);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto 2rem;
}

/* Opening hours ---------------------------------------------------------- */
.hours { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.hours h2 { text-align: center; margin-bottom: 2.5rem; }
.hours-list {
  margin: 0 auto 2rem; padding: 0; max-width: 820px;
  display: grid; grid-template-columns: 1fr; gap: 1rem 2rem;
}
@media (min-width: 640px) { .hours-list { grid-template-columns: 1fr 1fr; } }
.hours-list > div {
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; background: var(--white);
}
.hours-list dt { margin: 0; font-weight: 400; display: flex; align-items: center; gap: 1rem; }
.hours-list dt img { width: 22px; height: 22px; }
.hours-list dd { margin: 0; }

/* Services carousel ------------------------------------------------------ */
.services { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.services h2 { margin-bottom: 0.25rem; }
.subtitle { margin-bottom: 2rem; }
.carousel { position: relative; }
.carousel-track {
  list-style: none; margin: 0; padding: 0 0 0.5rem;
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3rem) / 1.15);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .carousel-track { grid-auto-columns: calc((100% - 3rem) / 2); } }
@media (min-width: 960px) { .carousel-track { grid-auto-columns: calc((100% - 3rem) / 3); } }
.card { scroll-snap-align: start; }
.card-img {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 5 / 4; background: var(--grey-bg);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-badge {
  position: absolute; top: 0.9rem; left: 0.9rem;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.card-badge svg { width: 18px; height: 18px; }
.card p {
  margin: 0.9rem 0 0;
  font-family: var(--font-head); font-size: 1.05rem; color: var(--heading);
}
.carousel-nav { display: flex; gap: 0.6rem; justify-content: flex-end; margin-top: 1.25rem; }
.carousel-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white); color: var(--heading);
  font-size: 1.1rem; cursor: pointer; transition: background-color 0.15s ease;
}
.carousel-nav button:hover { background: var(--grey-bg); }

/* Reinigingsdiensten: dark textured showcase ------------------------------ */
.showcase {
  background: #1c1c1c url("/images/dark-texture.avif") center/cover;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.showcase-inner { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .showcase-inner { grid-template-columns: 1fr 1.1fr; } }
.showcase-img { border-radius: var(--radius); overflow: hidden; }
.showcase-img img { display: block; width: 100%; height: auto; }
.showcase h2 { color: var(--white); }
.valueprops { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.valueprops li { display: flex; align-items: center; gap: 0.8rem; color: var(--white); font-family: var(--font-head); font-size: 1.125rem; }
.valueprops img { width: 26px; height: 26px; }

/* Wat ons uniek maakt: photo tile grid ------------------------------------ */
.unique { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.unique h2 { text-align: center; margin-bottom: 2.25rem; }
.tile-grid { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) { .tile-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 767px) { .tile-grid { grid-template-columns: 1fr; } }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 34vh; background: var(--dark-tile);
}
@media (min-width: 1920px) { .tile { height: 24vh; } }
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.62);
}

.tile > span {
  position: absolute; left: 2rem; top: 16%;
  color: var(--white); font-family: var(--font-head); font-size: 1.375rem; font-weight: 400;
}
.tile-cta {
  aspect-ratio: auto; grid-column: span 2;
  background: var(--dark-tile);
  padding: 1.75rem; display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 767px) { .tile-cta { grid-column: span 1; } }
.tile-cta h3 { color: var(--white); font-size: 1.375rem; font-weight: 400; margin-bottom: 0.5rem; }
.tile-cta p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.tile-cta a { color: var(--white); font-family: var(--font-head); text-decoration: none; }
.tile-cta a:hover { text-decoration: underline; }

/* Agentschap: pin map ----------------------------------------------------- */
.agentschap { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.agentschap-inner { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .agentschap-inner { grid-template-columns: 1.1fr 1fr; } }
.map-wrap { position: relative; }
.map-img { display: block; width: 100%; height: auto; border-radius: var(--radius); }
.pin { position: absolute; transform: translate(-50%, -100%); display: block; }
.pin > img { width: 30px; height: auto; display: block; transition: transform 0.15s ease; }
.pin:hover > img { transform: scale(1.15); }
.pin-tip {
  position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%);
  background: var(--white); color: var(--ink);
  border-radius: 8px; box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  padding: 0.6rem 0.9rem; width: max-content; max-width: 240px;
  font-size: 0.85rem; line-height: 1.45;
  opacity: 0; visibility: hidden; transition: opacity 0.15s ease;
  pointer-events: none; z-index: 5;
}
.pin-tip strong { display: block; font-family: var(--font-head); color: var(--heading); }
.pin:hover .pin-tip, .pin:focus .pin-tip { opacity: 1; visibility: visible; }
.agentschap p { font-family: var(--font-head); font-size: 1.1rem; color: var(--heading); max-width: 46ch; }

/* Ons Proces (video) ------------------------------------------------------ */
.proces { padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; text-align: center; }
.proces h2 { margin-bottom: 2rem; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9;
  overflow: hidden; background: var(--grey-bg);
  border-radius: var(--radius);
}
.video-frame iframe,
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }

/* Contact: grey card with cutout photo contained inside it -------------- */
.contact {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
}
.contact-card {
  position: relative;
  background: var(--grey-bg); border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
  min-height: clamp(360px, 40vw, 470px);
  display: flex; align-items: center;
  overflow: hidden;
}
.contact-copy { max-width: 55%; }
.contact-copy h2 { margin-bottom: 0.5rem; }
.contact-copy p { margin: 0 0 1.5rem; }
.contact-details { display: grid; gap: 1.1rem; margin: 0; }
.contact-details h3, .contact-details dt {
  color: #6b7280; font-size: 13px; margin: 0 0 0.15rem;
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
}
.contact-details dd { margin: 0; font-size: 1rem; }
.contact-cutout {
  position: absolute; right: 5%; bottom: 0;
  height: 100%; max-height: 470px; width: auto;
  z-index: 2;
}
@media (max-width: 720px) {
  .contact-card { flex-direction: column; align-items: flex-start; gap: 1.5rem; overflow: visible; }
  .contact-copy { max-width: none; }
  .contact-cutout { position: static; height: auto; max-height: 320px; align-self: center; }
}

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--black); color: rgba(255,255,255,0.75); padding: clamp(4rem, 8vw, 7rem) 0 2.5rem; }
.footer-logo { display: block; margin: 0 auto clamp(2.5rem, 5vw, 4rem); height: 64px; width: auto; }
.footer-bottom { border-top: 1px solid #1c1c1c; padding-top: 2rem; margin-top: 2.5rem; }
.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
