/* =========================================================
   Greveling Adviesgroep – homepage
   Layout based on reference build (1703px viewport)
   ========================================================= */

:root {
  /* Huisstijl */
  --brand: #721c3c;            /* bordeaux – primaire kleur */
  --brand-dark: #5a1530;       /* hover */
  --brand-soft: #f6eef1;       /* zeer lichte bordeaux-tint */
  --gold: #bca602;             /* accent – spaarzaam */
  --gold-dark: #8f7f02;        /* goud op licht vlak (leesbaar) */
  --sand: #efe6dd;             /* warm zand – vlakken */
  --sand-dark: #e2d6c9;        /* lijnen / randen */
  --blue: #9fc5e8;             /* lichtblauw – alleen als subtiel accent */

  --text: #2b2225;             /* warm antraciet */
  --text-soft: #5a5054;
  --heading: #2b2225;
  --dark-card: #2a1a20;
  --white: #ffffff;
  --container-pad: 60px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.container { width: 100%; padding-left: var(--container-pad); padding-right: var(--container-pad); }

.eyebrow {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-brand { background: var(--brand); color: var(--white); }
.btn-brand:hover { background: var(--brand-dark); }
.btn-white { background: var(--white); color: #2c2c2c; }
.btn-white:hover { background: #f3efeb; }
.btn-outline { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.btn-outline:hover { background: var(--brand-soft); }
.btn-sm { padding: 12px 22px; }
.btn .arrow { font-size: 15px; line-height: 1; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  background: transparent;
  transform: translateY(0);
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease, transform .32s ease;
}
.site-header.is-hidden { transform: translateY(-110%); }
.site-header.is-scrolled {
  padding: 14px 60px;
  background: var(--white);
  box-shadow: 0 0 10px 0 rgba(43, 34, 37, .18);
}
.header-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 46px; width: auto; transition: filter .25s ease; }
.site-header.transparent:not(.is-scrolled) .logo-img { filter: brightness(0) invert(1); }

/* Center nav pill */
.header-center-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(114, 28, 60, .72);
  backdrop-filter: blur(6px);
  transition: background-color .25s ease;
}
.header-center-nav a {
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 18px;
  transition: color .25s ease;
}
.site-header.is-scrolled .header-center-nav { background: var(--white); }
.site-header.is-scrolled .header-center-nav a { color: #2b2225; }
.site-header.is-scrolled .header-center-nav a:hover { color: var(--brand); }
.nav-burger { display: flex; flex-direction: column; gap: 5px; padding: 10px 6px 10px 14px; }
.nav-burger span {
  display: block; width: 18px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: background-color .25s ease;
}
.site-header.is-scrolled .nav-burger span { background: #2b2225; }

/* Right cluster */
.header-right { display: flex; align-items: center; gap: 22px; }
.icon-btn { color: var(--white); display: inline-flex; padding: 6px; transition: color .25s ease; }
.site-header.is-scrolled .icon-btn { color: #2b2225; }
.my-pages { padding: 12px 22px; border-radius: 8px; font-weight: 500; color: var(--brand); gap: 8px; }
.site-header.is-scrolled .my-pages { border: 1px solid var(--sand-dark); }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; color: var(--white);
  transition: color .25s ease;
}
.site-header.is-scrolled .header-phone { color: var(--brand); }

/* Hamburger (mobiel) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, background-color .25s ease;
}
.site-header.is-scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span { background: #2b2225; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header in "menu open"-stand: wit, donkere iconen */
.site-header.menu-open {
  background: var(--white);
  transform: translateY(0);
}
.site-header.transparent:not(.is-scrolled).menu-open .logo-img,
.site-header.menu-open .logo-img { filter: none; }
.site-header.menu-open .icon-btn { color: #2b2225; }
.site-header.menu-open .header-phone { color: var(--brand); }

/* =========================================================
   MOBIEL MENU
   ========================================================= */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  display: flex; flex-direction: column; gap: 28px;
  padding: 104px 24px 32px;
  background: var(--white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__nav a {
  padding: 15px 2px;
  font-size: 19px; line-height: 24px; font-weight: 600;
  color: var(--heading);
  border-bottom: 1px solid var(--sand-dark);
  transition: color .2s ease;
}
.mobile-menu__nav a:first-child { border-top: 1px solid var(--sand-dark); }
.mobile-menu__nav a:active, .mobile-menu__nav a:hover { color: var(--brand); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 10px; }
.mobile-menu__actions .btn { width: 100%; }
.mobile-menu__foot { font-size: 13px; line-height: 20px; color: var(--text-soft); margin-top: auto; }

body.menu-is-open { overflow: hidden; }

/* =========================================================
   HERO
   ========================================================= */
.hero-row { padding: 0 0 20px; }
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 540px;
  max-height: 1248px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  background: #2b2225;
}
.hero__thumbnail { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(43, 34, 37, .18) 0%, rgba(43, 34, 37, .30) 55%, rgba(43, 34, 37, .68) 100%);
}
.hero__content {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 36px;
  padding: 0 var(--container-pad) 84px;
  color: var(--white);
}
.hero__copy { max-width: 1000px; }
.hero h1 {
  font-size: 65px; line-height: 78px; font-weight: 600; letter-spacing: -1.3px;
  margin-bottom: 24px;
}
.hero__copy p:not(.eyebrow) { font-size: 20px; line-height: 29px; font-weight: 400; max-width: 820px; }
.hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  padding: 10px 16px 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-size: 14px; line-height: 18px;
  box-shadow: 0 6px 24px rgba(43, 34, 37, .18);
  transition: transform .2s ease;
}
.hero__rating:hover { transform: translateY(-2px); }
.hero__rating strong { font-size: 16px; font-weight: 600; color: var(--brand); }
.hero__rating-text { color: var(--text-soft); }
.hero__actions { display: flex; flex-direction: column; gap: 10px; flex: 0 0 auto; padding-right: 8px; }
.hero__actions .btn { width: 200px; padding: 12px 22px; border-radius: 9px; font-weight: 500; justify-content: center; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  color: var(--white); display: inline-flex; padding: 6px;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* =========================================================
   USP'S
   ========================================================= */
.usps { padding: 70px var(--container-pad) 180px; }
.usps__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.usp {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 6px 40px;
  max-width: 480px;
}
.usp + .usp { border-left: 1px solid var(--sand-dark); }
.usp__icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--brand);
}
.usp__text h3 { font-size: 17px; line-height: 22px; font-weight: 600; color: var(--heading); margin-bottom: 6px; }
.usp__text p { font-size: 14px; line-height: 21px; color: var(--text-soft); }

/* =========================================================
   DIENSTEN
   ========================================================= */
.services { padding: 90px 0 0; }
.services__inner {
  background: var(--sand);
  border-radius: 0 120px 0 0;
  padding: 90px var(--container-pad) 100px;
}
.services__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.services__head h2 { font-size: 40px; line-height: 44px; font-weight: 600; letter-spacing: 2.07px; }
.services__nav { display: flex; gap: 10px; }
.services__arrow {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--brand);
  box-shadow: 0 4px 16px rgba(43, 34, 37, .10);
  transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}
.services__arrow:hover { background: var(--brand); color: var(--white); }
.services__arrow[disabled] { opacity: .35; pointer-events: none; }

.services__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.services__track::-webkit-scrollbar { display: none; }
.service {
  flex: 0 0 calc((100% - 3 * 24px) / 4);
  min-width: 260px;
}
.service__link { display: block; color: inherit; }
.service__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--sand-dark);
}
.service__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .6s ease; }
.service__link:hover .service__media img { transform: scale(1.04); }
.service__chip {
  position: absolute; top: 14px; left: 14px;
  padding: 7px 12px; border-radius: 6px;
  background: var(--white); color: var(--text);
  font-size: 13px; line-height: 16px; font-weight: 600;
}
.service h3 { font-size: 19px; line-height: 26px; font-weight: 600; color: var(--heading); margin-bottom: 6px; transition: color .2s ease; }
.service__link:hover h3 { color: var(--brand); }
.service p { font-size: 14px; line-height: 21px; color: var(--text-soft); }

/* =========================================================
   AANBOD
   ========================================================= */
.showcase { padding: 110px var(--container-pad) 110px; }

.showcase__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.showcase__head h2 { font-size: 40px; line-height: 44px; font-weight: 600; letter-spacing: 2.07px; }
.showcase__head p { max-width: 640px; color: var(--text-soft); }
.showcase__head .btn { flex: 0 0 auto; margin-bottom: 4px; }

.showcase__filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.showcase-filter {
  padding: 10px 16px; border-radius: 8px;
  border: 1px solid var(--sand-dark); background: var(--white);
  color: var(--text-soft); font-size: 14px; line-height: 16.8px; font-weight: 400;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
.showcase-filter:hover { border-color: var(--brand); color: var(--brand); }
.showcase-filter.is-active { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }

.showcase__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px 20px; }
.card { position: relative; }
.card__link {
  position: relative; display: block;
  aspect-ratio: 544 / 726; border-radius: 8px; overflow: hidden;
  background: var(--dark-card); color: var(--white);
}
.card__image-wrap { position: absolute; inset: 0; background: var(--sand); }
.card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card__link:hover .card__image-wrap img { transform: scale(1.04); }
.card__image-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(43, 34, 37, .06) 0%, rgba(43, 34, 37, .12) 45%, rgba(43, 34, 37, .78) 100%);
}
.card__status {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  padding: 9px 16px; border-radius: 4px;
  background: var(--brand); color: var(--white);
  font-size: 13px; line-height: 16px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase;
}
.card__status--new { background: var(--gold); color: #2b2225; }
.card__body { position: absolute; left: 26px; right: 26px; bottom: 25px; z-index: 2; }
.card__title { font-size: 24px; line-height: 1.08; font-weight: 500; margin-bottom: 8px; }
.card__location {
  font-size: 14px; line-height: 17.5px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
}
.card__meta { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 14px; line-height: 16.8px; }

.card--cta { display: flex; align-items: center; border-radius: 8px; background: var(--sand); aspect-ratio: 544 / 726; }
.card__cta { padding: 22px 26px; }
.card__cta h2 { font-size: 32px; line-height: 1.12; font-weight: 500; color: var(--heading); letter-spacing: -.4px; margin-bottom: 14px; }
.card__cta p:not(.eyebrow) { font-size: 14px; line-height: 21px; color: var(--text-soft); margin-bottom: 24px; max-width: 360px; }

.showcase__more { display: flex; justify-content: center; margin-top: 36px; }

/* =========================================================
   ALLES ONDER ÉÉN DAK
   ========================================================= */
.support { padding: 0 var(--container-pad); }
.support__inner { display: flex; align-items: center; gap: 56px; padding: 22px; border-radius: 14px; background: var(--sand); }
.support__media { flex: 0 0 auto; width: calc(42% - 16px); max-width: 720px; }
.support__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; }
.support__content { flex: 1 1 auto; max-width: 640px; padding-right: 20px; }
.support__content h2 { font-size: 42px; line-height: 1.12; font-weight: 500; color: var(--heading); letter-spacing: -.84px; margin-bottom: 18px; }
.support__text p { font-size: 16px; line-height: 25px; color: var(--text-soft); }
.support__btn { margin-top: 26px; }

/* =========================================================
   OVER ONS
   ========================================================= */
.about { margin-top: 140px; padding: 0; }
.about__inner { display: flex; padding: 0 calc(var(--container-pad) - 17.5px); }
.about__col { padding: 17.5px; }
.about__col--text { width: 33.3333%; }
.about__col--spacer { width: 16.6667%; }
.about__col--quote { width: 50%; }
.about h2 { font-size: 40px; line-height: 44px; font-weight: 600; letter-spacing: 2.07px; margin-bottom: 45px; }
.about p { margin-bottom: 18px; }
.about .btn { margin-top: 18px; }
.about h3 { font-size: 35px; line-height: 45px; font-weight: 500; color: var(--heading); }

.stats { display: flex; gap: 48px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--sand-dark); }
.stats li { display: flex; flex-direction: column; gap: 4px; }
.stats strong { font-size: 34px; line-height: 1; font-weight: 600; color: var(--brand); }
.stats li > span { font-size: 14px; line-height: 20px; color: var(--text-soft); }

/* =========================================================
   TEAM
   ========================================================= */
.team { padding: 140px var(--container-pad) 0; }
.team__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.team h2 { font-size: 40px; line-height: 44px; font-weight: 600; letter-spacing: 2.07px; margin-bottom: 15px; }
.team__head p { max-width: 640px; color: var(--text-soft); }
.team__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.member { padding: 20px; border-radius: 12px; background: var(--sand); }
.member__photo { aspect-ratio: 4 / 5; border-radius: 8px; overflow: hidden; background: var(--sand-dark); margin-bottom: 20px; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.member__photo--initials { display: flex; align-items: center; justify-content: center; background: var(--white); }
.member__photo--initials span { font-size: 56px; font-weight: 500; letter-spacing: 3px; color: var(--brand); }
.member h3 { font-size: 22px; line-height: 1.2; font-weight: 600; margin-bottom: 4px; }
.member__role { font-size: 14px; color: var(--gold-dark); font-weight: 600; letter-spacing: .4px; margin-bottom: 14px; }
.member__contact { display: flex; flex-direction: column; gap: 4px; font-size: 14px; line-height: 20px; color: var(--text-soft); }
.member__contact a:hover { color: var(--brand); }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { padding: 140px var(--container-pad) 0; }
.reviews__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 3fr;
  gap: 20px;
}
.reviews__summary {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 30px 34px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--sand-dark);
}
.reviews__score { font-size: 64px; line-height: 1; font-weight: 600; color: var(--brand); letter-spacing: -2px; margin-bottom: 12px; }
.reviews__meta { font-size: 14px; line-height: 21px; color: var(--text-soft); margin: 14px 0 18px; }
.reviews__link { font-size: 14px; font-weight: 600; color: var(--brand); }
.reviews__link:hover { text-decoration: underline; }

.stars { display: inline-flex; gap: 3px; }
.stars span {
  width: 20px; height: 20px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.stars--sm span { width: 14px; height: 14px; }

.reviews__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.review {
  position: relative;
  display: flex; flex-direction: column;
  padding: 30px 30px 28px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--sand-dark);
}
/* puntje van de tekstballon, rechtsonder */
.review::after {
  content: "";
  position: absolute;
  right: 30px; bottom: -10px;
  width: 18px; height: 18px;
  background: var(--white);
  border-right: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
  border-radius: 0 0 3px 0;
  transform: rotate(45deg);
}
.review__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.review__grade { font-size: 14px; font-weight: 600; color: var(--brand); padding: 4px 10px; border-radius: 6px; background: var(--brand-soft); }
.review__text { flex: 1 1 auto; font-size: 15px; line-height: 24px; color: var(--text); margin-bottom: 18px; }
.review__who { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--text-soft); }
.review__funda { height: 18px; width: auto; }
.reviews__summary-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.reviews__funda { height: 20px; width: auto; margin-top: -2px; }

/* =========================================================
   PARTNERS / KEURMERKEN
   ========================================================= */
.partners { padding: 90px var(--container-pad) 0; }
.partners__label {
  font-size: 12px; line-height: 16px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-soft); text-align: center; margin-bottom: 28px;
}
.partners__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 64px; }
.partners__list a { display: inline-flex; align-items: center; gap: 12px; color: var(--text); font-size: 15px; font-weight: 600; letter-spacing: .5px; transition: opacity .25s ease; }
.partners__list a:hover { opacity: .8; }
.partners__list img {
  height: 27px; width: auto;


}

.partners__list img.partners__img--wide { height: 50px; }
.partners__list img.partners__img--tall { height: 54px; }

/* =========================================================
   KANTOOR
   ========================================================= */
.offices { padding: 140px var(--container-pad) 140px; }
.offices__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.offices__text { max-width: 822px; }
.offices__cta { flex: 0 0 auto; padding-bottom: 4px; }
.offices h2 { font-size: 40px; line-height: 44px; font-weight: 600; letter-spacing: 2.07px; margin-bottom: 15px; }
.offices p { font-size: 16px; line-height: 24px; max-width: 822px; color: var(--text-soft); }
.offices__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.offices__image { border-radius: 14px; overflow: hidden; }
.offices__image img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; object-position: center 45%; }
.offices__map { position: relative; border-radius: 14px; overflow: hidden; background: var(--sand); min-height: 460px; }
.offices__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.85); }
.offices__map-link {
  position: absolute; left: 20px; bottom: 20px;
  padding: 10px 16px; border-radius: 8px;
  background: var(--white); color: var(--brand);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 6px 20px rgba(43, 34, 37, .18);
}
.offices__map-link:hover { background: var(--brand); color: var(--white); }

/* =========================================================
   BLOG / KENNIS
   ========================================================= */
.blog { padding: 0 0 0; }
.blog__inner {
  background: var(--sand);
  border-radius: 120px 0 0 0;
  padding: 90px var(--container-pad) 100px;
}
.blog__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.blog__head h2 { font-size: 40px; line-height: 44px; font-weight: 600; letter-spacing: 2.07px; }
.blog__head .btn { flex: 0 0 auto; margin-bottom: 4px; }
.blog__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.post__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.post__media { position: relative; aspect-ratio: 16 / 10; border-radius: 10px; overflow: hidden; margin-bottom: 18px; background: var(--sand-dark); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post__link:hover .post__media img { transform: scale(1.04); }
.post__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 7px 12px; border-radius: 6px;
  background: var(--white); color: var(--text);
  font-size: 13px; line-height: 16px; font-weight: 600;
}
.post__meta { font-size: 13px; color: var(--text-soft); margin-bottom: 8px; }
.post h3 { font-size: 20px; line-height: 27px; font-weight: 600; color: var(--heading); margin-bottom: 8px; transition: color .2s ease; }
.post__link:hover h3 { color: var(--brand); }
.post p { font-size: 14px; line-height: 22px; color: var(--text-soft); flex: 1 1 auto; }
.post__more { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--brand); }

.magazine {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  margin-top: 48px;
  padding: 34px 40px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--sand-dark);
}
.magazine__text h3 { font-size: 26px; line-height: 1.2; font-weight: 600; margin-bottom: 10px; }
.magazine__text p:not(.eyebrow) { font-size: 15px; line-height: 24px; color: var(--text-soft); max-width: 760px; }
.magazine .btn { flex: 0 0 auto; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 140px var(--container-pad) 140px; }
.faq__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.faq__intro h2 { font-size: 40px; line-height: 44px; font-weight: 600; letter-spacing: 2.07px; margin-bottom: 18px; }
.faq__intro p:not(.eyebrow) { color: var(--text-soft); max-width: 380px; }
.faq__intro a { color: var(--brand); font-weight: 600; }
.faq__intro a:hover { text-decoration: underline; }

.faq__item { border-bottom: 1px solid var(--sand-dark); }
.faq__item:first-child { border-top: 1px solid var(--sand-dark); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  font-size: 18px; line-height: 26px; font-weight: 600; color: var(--heading);
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--brand); }
.faq__icon {
  position: relative; flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sand);
  transition: background-color .2s ease, transform .25s ease;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 14px; height: 2px; background: var(--brand);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--brand); }
.faq__item[open] .faq__icon::before, .faq__item[open] .faq__icon::after { background: var(--white); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__answer { padding: 0 60px 24px 4px; }
.faq__answer p { font-size: 15px; line-height: 25px; color: var(--text-soft); }

/* =========================================================
   CONTACT / TERUGBELLEN
   ========================================================= */
.contact-cta { padding: 0 var(--container-pad) 130px; }
.contact-cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 70px;
  border-radius: 14px;
  background: var(--brand);
  color: var(--white);
}
.contact-cta__text h2 { font-size: 42px; line-height: 1.12; font-weight: 600; letter-spacing: -.5px; margin-bottom: 18px; }
.contact-cta__text > p { font-size: 16px; line-height: 26px; color: rgba(255, 255, 255, .85); max-width: 520px; }
.contact-cta__list { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.contact-cta__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.contact-cta__list svg { color: var(--gold); flex: 0 0 auto; }
.contact-cta__list a:hover { text-decoration: underline; }

.contact-cta__form {
  background: var(--white);
  color: var(--text);
  border-radius: 12px;
  padding: 32px 34px 28px;
}
.contact-cta__form h3 { font-size: 22px; line-height: 1.2; font-weight: 600; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: .3px; color: var(--text-soft); }
.field input, .field select {
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.field input.is-invalid { border-color: #b3261e; }
.contact-cta__submit { width: 100%; margin-top: 6px; font-weight: 500; }
.contact-cta__privacy { margin-top: 14px; font-size: 12px; line-height: 18px; color: var(--text-soft); }
.contact-cta__privacy a { text-decoration: underline; }
.contact-cta__done { margin-top: 14px; padding: 12px 14px; border-radius: 8px; background: var(--brand-soft); color: var(--brand); font-size: 14px; font-weight: 600; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { padding: 90px 10px 0; background: var(--white); border-top: 1px solid var(--sand-dark); }
.footer__inner { display: flex; margin: 0 auto; padding: 0 calc(var(--container-pad) - 20px); }
.footer__col { width: 33.3333%; padding: 0 10px 10px; }

.logo--footer { margin-bottom: 26px; }
.logo--footer .logo-img { height: 64px; }

.footer__contact li { display: flex; align-items: center; gap: 8px; padding: 0 0 5px; font-size: 13px; line-height: 19.5px; color: #4a4044; min-height: 29px; }
.footer__contact svg { color: var(--brand); flex: 0 0 auto; }
.footer__contact a { color: var(--text); }
.footer__contact a:hover { text-decoration: underline; }

.footer__social { display: flex; gap: 6px; margin-top: 22px; }
.footer__social a {
  width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px; background: var(--brand); color: var(--white);
  transition: background-color .2s ease;
}
.footer__social a:hover { background: var(--brand-dark); }

.site-footer h4 { font-size: 16px; line-height: 25px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--heading); margin-bottom: 18px; }
.footer__links li { margin-bottom: 4px; }
.footer__links a { font-size: 14px; line-height: 22.5px; color: var(--text); }
.footer__links a:hover { color: var(--brand); text-decoration: underline; }
.site-footer p { font-size: 13px; line-height: 22.5px; color: #4a4044; margin-bottom: 22px; }
.footer__strong-link { font-size: 14px; font-weight: 700; letter-spacing: -.45px; color: var(--brand); }
.footer__strong-link:hover { text-decoration: underline; }

.footer__bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin: 30px auto 0; padding: 18px calc(var(--container-pad) - 10px) 70px;
  border-top: 1px solid var(--sand-dark);
  font-size: 12px; line-height: 18px; color: #6b6065;
}
.footer__bottom a:hover { color: var(--brand); }

/* =========================================================
   STICKY CTA / ACTIEBALK
   ========================================================= */
.sticky-cta {
  position: fixed; right: 65px; bottom: 0; z-index: 90;
  padding: 12px 18px; border-radius: 4px 4px 0 0;
  background: var(--brand); color: var(--white);
  font-size: 13px; line-height: 19.5px; letter-spacing: .39px; text-transform: uppercase;
  box-shadow: 0 -2px 10px rgba(43, 34, 37, .15);
}
.sticky-cta:hover { background: var(--brand-dark); }
.sticky-bar__call { display: none; }

@media (max-width: 680px) {
  .sticky-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: flex; align-items: stretch;
    box-shadow: 0 -4px 16px rgba(43, 34, 37, .18);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--white);
  }
  .sticky-bar__call {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    flex: 0 0 auto;
    padding: 15px 20px;
    background: var(--white); color: var(--brand);
    font-size: 14px; font-weight: 600;
    border-top: 1px solid var(--sand-dark);
  }
  .sticky-cta {
    position: static;
    flex: 1 1 auto;
    display: flex; align-items: center; justify-content: center;
    border-radius: 0;
    padding: 15px 12px;
    font-size: 13px;
    box-shadow: none;
  }
  /* ruimte zodat de actiebalk geen content afdekt */
  body { padding-bottom: 54px; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1400px) {
  .hero h1 { font-size: 54px; line-height: 64px; }
  .support__content h2 { font-size: 36px; }
  .card__cta h2 { font-size: 28px; }
  .card__title { font-size: 21px; }
  .header-phone { display: none; }
}

@media (max-width: 1100px) {
  :root { --container-pad: 24px; }
  .site-header, .site-header.is-scrolled { padding-left: 24px; padding-right: 24px; }
  .header-center-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero h1 { font-size: 44px; line-height: 52px; letter-spacing: -.8px; }
  .hero__content { flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 24px; padding-bottom: 72px; }
  .hero__actions { flex-direction: row; }
  .showcase__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card__cta h2 { font-size: 34px; }
  .card__title { font-size: 24px; }
  .usps__list { flex-direction: column; align-items: flex-start; gap: 18px; }
  .usp, .usp + .usp { padding: 0; border-left: 0; max-width: none; }
  .showcase__head { flex-direction: column; align-items: flex-start; }
  .showcase__head h2 { font-size: 34px; line-height: 40px; }
  .support__inner { flex-direction: column; align-items: stretch; }
  .support__media { width: 100%; max-width: none; }
  .support__content { max-width: none; padding: 10px 6px 14px; }
  .about__inner { flex-wrap: wrap; }
  .about__col--text, .about__col--quote { width: 100%; }
  .about__col--spacer { display: none; }
  .about h2, .offices h2, .team h2 { font-size: 34px; line-height: 40px; }
  .about h3 { font-size: 28px; line-height: 38px; }
  .team__head { flex-direction: column; }
  .reviews__inner { grid-template-columns: 1fr; }
  .reviews__list { grid-template-columns: 1fr; }
  .partners__list { gap: 20px 36px; }
  .team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offices__head { flex-direction: column; gap: 20px; }
  .offices__grid { grid-template-columns: 1fr; }
  .blog__inner { border-radius: 60px 0 0 0; padding: 60px var(--container-pad) 70px; }
  .blog__head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .blog__head h2, .faq__intro h2 { font-size: 34px; line-height: 40px; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .magazine { flex-direction: column; align-items: flex-start; }
  .faq__inner { grid-template-columns: 1fr; gap: 30px; }
  .contact-cta__inner { grid-template-columns: 1fr; gap: 36px; padding: 44px 36px; }
  .contact-cta__text h2 { font-size: 34px; }
  .services__inner { border-radius: 0 60px 0 0; padding: 60px var(--container-pad) 70px; }
  .services__head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services__head h2 { font-size: 34px; line-height: 40px; }
  .service { flex-basis: calc((100% - 24px) / 2); }
  .offices__image img, .offices__map { min-height: 340px; }
  .offices__text, .offices__cta { width: 100%; }
  .footer__inner { flex-wrap: wrap; }
  .footer__col { width: 50%; }
  .footer__col--brand { width: 100%; margin-bottom: 30px; }
}

@media (max-width: 680px) {
  :root { --container-pad: 16px; }
  .header-right { gap: 10px; }
  .usps { padding: 30px var(--container-pad) 90px; }
  .showcase { padding: 70px var(--container-pad) 80px; }
  .about { margin-top: 90px; }
  .team, .reviews { padding-top: 90px; }
  .offices { padding: 90px var(--container-pad) 90px; }
  .partners { padding-top: 56px; }
  .site-header, .site-header.is-scrolled { padding-left: 16px; padding-right: 16px; }
  .about__inner { padding: 0 var(--container-pad); }
  .blog__grid { grid-template-columns: 1fr; }
  .faq { padding: 90px var(--container-pad); }
  .faq__item summary { font-size: 16px; line-height: 24px; padding: 18px 0; }
  .faq__answer { padding-right: 0; }
  .contact-cta { padding: 90px var(--container-pad) 90px; }
  .contact-cta__inner { padding: 32px 22px; }
  .contact-cta__form { padding: 24px 20px; }
  .service { flex-basis: 82%; }
  .services { padding-top: 56px; }
  .footer__inner { padding: 0 var(--container-pad); }
  .my-pages { display: none; }

  /* Hero: volledige hoogte zonder botsing met de header */
  .hero { min-height: 560px; aspect-ratio: auto; height: 90vh; height: 90svh; }
  .hero h1 { font-size: 32px; line-height: 38px; letter-spacing: -.5px; margin-bottom: 14px; }
  .hero__copy p:not(.eyebrow) { font-size: 16px; line-height: 24px; }
  .hero__content { padding-bottom: 64px; gap: 22px; }
  .hero__rating { flex-wrap: wrap; margin-top: 20px; row-gap: 4px; }
  .hero__actions { flex-direction: column; width: 100%; gap: 8px; padding-right: 0; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  /* Koppen: max. 2 regels op 390px */
  .services__head h2, .showcase__head h2,
  .about h2, .offices h2, .team h2,
  .blog__head h2, .faq__intro h2 { font-size: 27px; line-height: 34px; letter-spacing: .5px; }
  .about h3 { font-size: 23px; line-height: 32px; }
  .contact-cta__text h2 { font-size: 28px; }
  .eyebrow { letter-spacing: 1.5px; }

  /* Filters: één horizontaal scrollbare rij */
  .showcase__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin: 0 calc(-1 * var(--container-pad)) 24px;
    padding: 2px var(--container-pad) 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .showcase__filters::-webkit-scrollbar { display: none; }
  .showcase-filter { flex: 0 0 auto; white-space: nowrap; }

  .showcase__grid, .team__grid { grid-template-columns: 1fr; }
  .card__cta h2 { font-size: 28px; }
  .support__content h2 { font-size: 26px; }
  .about__col { padding: 12px 0; }
  .stats { flex-wrap: wrap; gap: 24px; }
  .magazine { padding: 26px 22px; }
  .magazine .btn { width: 100%; }
  .footer__col { width: 100%; }
  .footer__bottom { padding-bottom: 84px; }
}

/* =========================================================
   CHIP-KLEUREN PER DIENST (diensten + blog)
   ========================================================= */
.chip--verkopen      { background: var(--brand) !important; color: var(--white) !important; }
.chip--aankoop       { background: var(--gold) !important; color: #2b2225 !important; }
.chip--hypotheek     { background: var(--blue) !important; color: #1f2b3a !important; }
.chip--taxatie       { background: #d9c7b3 !important; color: #2b2225 !important; }
.chip--verzekeringen { background: #f3dfe6 !important; color: var(--brand) !important; }
