/* ============================================================
   SCHILDERSBEDRIJF LEEN MEURS — STYLESHEET
   Merk: #CC1517 rood, #1A1A1A donker, #F2F2F2 lichtgrijs
   Typografie: Oswald (headings) + Inter (body)
   ============================================================ */

/* ── RESET & BASIS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #CC1517;
  --red-dark: #a81113;
  --dark: #1A1A1A;
  --mid: #333333;
  --light: #F2F2F2;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --transition: 0.25s ease;
  --header-h: 68px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 0; /* hero fills viewport, sections below trust-bar */
}

/* ── MEDIA / IMAGE FILL SAFEGUARD ── */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__bg,
.card__img-wrap > img, .over__img-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-weight: 600; }

.section__label {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}

.section__title {
  margin-bottom: 1rem;
}

.section__intro {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ── SECTION SPACING ── */
.section {
  padding: 72px 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  line-height: 1.2;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn--lg { padding: 1rem 2.4rem; font-size: 1.1rem; }

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #1A1A1A;
  height: var(--header-h);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.mascot-svg {
  width: 44px;
  height: 44px;
}
.mascot-svg--sm {
  width: 38px;
  height: 38px;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: .02em;
}
.logo-text small {
  font-size: .72rem;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.desktop-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color var(--transition);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.desktop-nav a:hover {
  color: var(--white);
  border-bottom-color: var(--red);
  text-decoration: none;
}

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: var(--red);
  padding: .45rem 1rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background var(--transition);
}
.header-phone:hover { background: var(--red-dark); text-decoration: none; }
.header-phone svg { width: 16px; height: 16px; }

/* Hamburger trigger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger → X when open */
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU OVERLAY (fullscreen kit) ── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--dark);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 2rem;
  align-self: flex-end;
}
.mobile-menu__close svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.mobile-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  padding: .6rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover {
  color: var(--red);
  padding-left: 8px;
  text-decoration: none;
}

.mobile-menu__item svg { width: 20px; height: 20px; flex-shrink: 0; }

.mobile-menu__cta {
  margin-top: 2rem;
  background: var(--red);
  border-radius: var(--radius);
  padding: .8rem 1.2rem;
  font-size: 1.4rem;
  border-bottom: none;
}
.mobile-menu__cta:hover {
  background: var(--red-dark);
  padding-left: 1.2rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: calc(100svh - var(--header-h));
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.2) 40%, rgba(0,0,0,.5) 100%),
    linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--red);
}

.hero__headline {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  justify-content: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--mid);
}

.trust-bar__item svg { width: 22px; height: 22px; flex-shrink: 0; }
.trust-bar__item strong { color: var(--dark); }

/* ── DIENSTEN ── */
.diensten {
  background: var(--light);
}

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

.card--service {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}
.card--service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card--featured {
  border-top-color: var(--red);
}

.card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card__body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(204,21,23,.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  flex-shrink: 0;
}

.card__title {
  font-size: 1.3rem;
  margin-bottom: .6rem;
  color: var(--dark);
}

.card__text {
  color: var(--mid);
  font-size: .95rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.card__list li {
  font-size: .88rem;
  color: var(--mid);
  padding-left: 1.2rem;
  position: relative;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* ── OVER LEEN ── */
.over { background: var(--white); }

.over__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.over__img-col {
  position: relative;
}

.over__img-frame {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.over__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(204,21,23,.35);
}

.badge__num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.badge__label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

.over__text-col { padding-left: 0; }

.over__text-col p {
  margin-bottom: 1rem;
  color: var(--mid);
}

.over__kwaliteiten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.8rem 0 2rem;
}

.kwaliteit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.4;
}
.kwaliteit svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── SOCIAL PROOF / CTA BAND ── */
.social-proof.cta-band {
  background: var(--dark);
  padding: 64px 0;
  text-align: center;
}

.social-proof .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  align-items: center;
  justify-content: center;
}

.social-proof__reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stars {
  display: flex;
  gap: 4px;
}
.stars svg { width: 22px; height: 22px; }

.social-proof__quote {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 460px;
  text-align: center;
}
.social-proof__quote strong { color: var(--white); }

.social-proof__areas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.social-proof__areas-label {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.area-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section__title { margin-bottom: 1rem; }
.contact-info > p { color: var(--mid); margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(204,21,23,.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
}

.contact-detail strong {
  display: block;
  font-size: .8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 2px;
}
.contact-detail a, .contact-detail span {
  color: var(--dark);
  font-size: 1rem;
}
.contact-detail a:hover { color: var(--red); text-decoration: underline; }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
label span { color: var(--red); }

input, textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,21,23,.12);
}

textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER KIT ── */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr .8fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  font-size: .95rem;
}

.footer-tagline {
  font-size: .9rem;
  line-height: 1.6;
  max-width: 260px;
  color: rgba(255,255,255,.6);
}

.footer-kit h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-contact ul,
.footer-areas ul,
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
}
.footer-contact svg { width: 16px; height: 16px; stroke: var(--red); flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--white); text-decoration: underline; }

.footer-areas li, .footer-links li {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}

.footer-links a { color: rgba(255,255,255,.6); }
.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-bottom {
  padding: 16px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .over__grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .section { padding: 64px 0; }

  /* Header: hide desktop nav + phone link */
  .desktop-nav { display: none; }
  .header-phone { display: none; }
  .mobile-menu__trigger { display: flex; }

  .card-grid--3 { grid-template-columns: 1fr; }
  .card__img-wrap { height: 220px; aspect-ratio: unset; }
  .card__img-wrap > img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .over__grid { grid-template-columns: 1fr; gap: 48px; }
  .over__badge { right: 16px; bottom: -16px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 20px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .social-proof .container { flex-direction: column; }

  .over__kwaliteiten { grid-template-columns: 1fr; }

  .trust-bar__inner { gap: 14px 24px; }
}

@media (max-width: 480px) {
  .hero__content { padding-top: 2rem; }
  .hero__sub { font-size: 1rem; }

  .footer-inner { grid-template-columns: 1fr; }

  .over__badge { position: static; margin-top: 16px; display: inline-flex; gap: 8px; align-items: center; }
  .badge__num { font-size: 2rem; }
}


/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 28px 32px;
  text-align: left;
}

.testimonial-card .stars { margin-bottom: 12px; }
.testimonial-card .stars svg { width: 16px; height: 16px; }

.testimonial-text {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-author {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .testimonials { grid-template-columns: 1fr; }
  .card__img-wrap { min-height: 200px; }
}

/* sr-only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
