/* =============================================================
   ASF BOUW ALKMAAR — DPS Media style
   ============================================================= */

/* ===================== DESIGN TOKENS ===================== */
:root {
  /* Strict 3-color palette + derived */
  --bg:          #F7F5F2;
  --brand-dark:  #252A2D;
  --bronze:      #C5A55A;
  --bronze-light: rgba(220,197,145,1);  /* = #DCC591 */
  --bronze-dark:  #9d8246;
  --bg-alt:      #E5D9BF;
  --bg-dark:     #1A1D1F;
  --bg-card:     #FAFAF7;
  --text:        #3D4145;
  --text-soft:   #4a4543;
  --text-muted:  #7a716a;
  --border:      #e8e1d4;
  --border-soft: #f0e9dc;
  --cream:       #F7F5F2;

  /* Typography */
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  /* Radii */
  --r-sm:   8px;
  --r:      14px;
  --r-lg:   20px;
  --r-pill: 999px;

  /* Shadows */
  --shadow:    0 4px 14px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.18);

  /* Layout */
  --container-max: 1200px;
  --container-pad: 24px;
  --section-pad:   110px;
  --transition:    .25s cubic-bezier(.4,0,.2,1);
}

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

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-dark);
  margin: 0 0 0.5em;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  paint-order: stroke fill;
}

h1, h2 {
  -webkit-text-stroke: 0.6px currentColor;
}

.hp-svc-card h3,
.hp-tips-card h3,
.bento-tile h3 {
  -webkit-text-stroke: 0.4px currentColor;
}

p { margin: 0 0 1em; }

/* Layout-safe (i18n long words) */
h1, h2, h3, h4, h5, h6, .hp-svc-card h3, .hp-tips-card h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}
.nav-links a, .mobile-menu a { overflow-wrap: anywhere; }
.btn, .calc-cta-v2, .tip-modal-cta { max-width: 100%; }

html[data-lang]:not([data-lang="nl"]) .hero-title,
html[data-lang]:not([data-lang="nl"]) .section-head h2,
html[data-lang]:not([data-lang="nl"]) .calc-head h2 {
  letter-spacing: -.045em;
  line-height: .96;
}

/* ===================== CONTAINER ===================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ===================== EYEBROW LABEL ===================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  font-weight: 700;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--bronze);
}

.eyebrow-light {
  color: var(--bronze-light);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-gold {
  background: var(--bronze);
  color: var(--brand-dark);
  box-shadow: 0 6px 20px rgba(197,165,90,.32);
}

.btn-gold:hover {
  background: #b89248;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197,165,90,.42);
}

.btn-outline-dark {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--brand-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 32px;
  font-size: 0.98rem;
}

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .35s ease, backdrop-filter .35s ease;
}

.nav.scrolled {
  background: rgba(37,42,45,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  flex-shrink: 0;
  display: inline-flex;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: opacity .35s ease;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(247,245,242,.86);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}

.nav-link:hover { color: var(--cream); }

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--bronze);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(247,245,242,.92);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--bronze);
}

.nav-phone:hover { color: var(--cream); }

.lang-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(220,197,145,.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  transition: all var(--transition);
}

.lang-btn svg {
  width: 22px;
  height: 18px;
  border-radius: 2px;
}

.lang-btn:hover { transform: scale(1.08); border-color: var(--bronze); }

/* Show opposite-language flag */
.lang-btn .flag-nl { display: none; }
html[data-lang="en"] .lang-btn .flag-nl { display: block; }
html[data-lang="en"] .lang-btn .flag-gb { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 6px 0;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}

.mobile-menu.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,17,19,.6);
  backdrop-filter: blur(4px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--brand-dark);
  padding: 80px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-panel a {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-menu-panel a:hover { color: var(--bronze); }

.mobile-menu-cta {
  margin-top: auto;
  border-bottom: 0 !important;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close svg { width: 20px; height: 20px; }

/* ===================== 1. HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--cream);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1);
  animation: kenburns 13s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.hero-slide.is-active {
  opacity: 1;
  animation-play-state: running;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.78) 35%,
    rgba(0,0,0,0.50) 55%,
    rgba(0,0,0,0.22) 78%,
    rgba(0,0,0,0.10) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--cream);
  margin: 12px 0 20px;
  max-width: 760px;
  line-height: 1.05;
  -webkit-text-stroke: 0.85px currentColor;
}

.hero-title em {
  font-style: normal;
  color: var(--bronze-light);
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(247,245,242,.88);
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bronze-light);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(247,245,242,.76);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===================== GENERIC SECTION HEAD ===================== */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--bronze);
}
.section-head .eyebrow::before { display: inline-block; }

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.section-head .intro,
.section-head p {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ===================== 2. OVER ONS ===================== */
.hp-overons {
  padding: var(--section-pad) 0;
}

.hp-overons-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: 80px;
  align-items: center;
}

.hp-overons-photo {
  display: flex;
  justify-content: center;
}

.photo-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 8px rgba(197,165,90,.18), 0 25px 60px rgba(0,0,0,.16);
  border: 3px solid var(--bronze);
}

.photo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-overons-text h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 22px;
}

.hp-overons-text .lead {
  font-size: 1.18rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: 500;
}

.hp-overons-text p {
  color: var(--text);
  margin-bottom: 18px;
}

.hp-overons-text .btn {
  margin-top: 18px;
}

/* ===================== 3. WAT MAAKT ONS UNIEK ===================== */
.hp-vakwerk {
  padding: var(--section-pad) 0;
}

.hp-vakwerk-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 80px;
}

.vw-point {
  text-align: left;
}

.vw-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--bronze);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bronze-dark);
  margin-bottom: 24px;
  background: rgba(255,255,255,.4);
}

.vw-point h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.vw-point p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hp-vakwerk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 50px;
  border-top: 1px solid rgba(157,130,70,.22);
}

.vw-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vw-stat span:first-child,
.vw-stat .count-up {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bronze-dark);
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -.02em;
}

.vw-stat small {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===================== 4. ONZE DIENSTEN ===================== */
.hp-services {
  padding: var(--section-pad) 0;
}

.hp-svc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.hp-svc-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.hp-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hp-svc-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.hp-svc-feature .hp-svc-img {
  height: 280px;
}

.hp-svc-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hp-svc-body h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hp-svc-body > p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.hp-svc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hp-svc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text);
}

.hp-svc-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A55A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

.hp-svc-body .btn {
  align-self: flex-start;
}

.hp-svc-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--bronze);
  color: var(--brand-dark);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(197,165,90,.42);
}

/* ===================== 5. ONZE WERKWIJZE ===================== */
.hp-werkwijze {
  padding: var(--section-pad) 0;
}

.hp-werk-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}

.ww-step {
  text-align: center;
  padding: 0 12px;
}

.ww-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(197,165,90,.36);
  position: relative;
  z-index: 2;
}

.ww-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.ww-step p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.ww-connector {
  height: 2px;
  background: linear-gradient(90deg, var(--bronze) 0%, rgba(197,165,90,.4) 50%, var(--bronze) 100%);
  margin-top: 32px;
  position: relative;
}

/* ===================== 6. PORTFOLIO BENTO ===================== */
.hp-portfolio {
  padding: var(--section-pad) 0;
}

.hp-port-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 220px;
  gap: 18px;
}

.bento-tile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: block;
  transition: transform var(--transition);
  cursor: pointer;
}

.bento-tile:hover {
  transform: translateY(-4px);
}

.bento-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.78) 100%);
  transition: opacity var(--transition);
}

.bento-overlay {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  color: #fff;
  z-index: 2;
}

.bento-overlay h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 4px;
  -webkit-text-stroke: 0.4px currentColor;
}

.bento-overlay span {
  font-size: 0.82rem;
  color: var(--bronze-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.tile-1 { grid-column: span 2; grid-row: span 1; }
.tile-2 { grid-column: span 1; grid-row: span 1; }
.tile-3 { grid-column: span 1; grid-row: span 1; }
.tile-4 { grid-column: span 1; grid-row: span 1; }
.tile-5 { grid-column: span 1; grid-row: span 1; }
.tile-6 { grid-column: span 2; grid-row: span 1; }

/* ===================== 7. TIPS & NIEUWS ===================== */
.hp-tips {
  padding: var(--section-pad) 0 calc(var(--section-pad) - 20px);
  overflow: hidden;
}

.hp-tips-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: 16px 0 32px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: none;
}

.hp-tips-marquee::-webkit-scrollbar { display: none; }
.hp-tips-marquee.is-dragging { cursor: grabbing; user-select: none; }

.hp-tips-track {
  display: flex;
  gap: 24px;
  padding: 0 max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  width: max-content;
}

.hp-tips-card {
  flex-shrink: 0;
  width: 360px;
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-soft);
  color: inherit;
}

.hp-tips-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tip-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.tip-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tag-pill {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  border: 1.5px solid;
}

.tag-tip {
  background: rgba(197,165,90,.18);
  border-color: rgba(197,165,90,.65);
  color: var(--bronze-dark);
}

.tag-nieuws {
  background: rgba(46,160,67,.16);
  border-color: rgba(46,160,67,.55);
  color: #1F7F33;
}

.hp-tips-card h3 {
  font-size: 1.15rem;
  margin: 4px 0 6px;
  line-height: 1.25;
}

.hp-tips-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}

.tip-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: auto;
}

.tip-meta span { color: var(--bronze-dark); font-weight: 600; }

/* ===================== 8. GOOGLE REVIEWS ===================== */
.hp-greviews {
  padding: var(--section-pad) 0 calc(var(--section-pad) - 20px);
  overflow: hidden;
}

.hpgr-head {
  text-align: center;
  margin-bottom: 50px;
}

.hpgr-google {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 0.96rem;
  color: var(--text);
}

.hpgr-google strong { color: var(--brand-dark); font-weight: 700; }

.hp-rev-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  padding: 16px 0 32px;
  -webkit-overflow-scrolling: touch;
}

.hp-rev-marquee::-webkit-scrollbar { display: none; }
.hp-rev-marquee.is-dragging { cursor: grabbing; user-select: none; }

.hp-rev-track {
  display: flex;
  gap: 22px;
  padding: 0 max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  width: max-content;
}

.hpgr-card {
  flex-shrink: 0;
  width: 380px;
  background: #fff;
  border-radius: var(--r);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hpgr-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hpgr-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hpgr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.hpgr-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.hpgr-name { font-weight: 700; color: var(--brand-dark); font-size: 0.96rem; }
.hpgr-when { font-size: 0.78rem; color: var(--text-muted); }

.hpgr-stars { color: #fbbc04; font-size: 0.9rem; letter-spacing: 1px; }

.hpgr-service-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  background: rgba(26,115,232,.08);
  border: 1.5px solid rgba(26,115,232,.55);
  color: #1a73e8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hpgr-text {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===================== 9. CALCULATOR ===================== */
.hp-contact {
  padding: var(--section-pad) 0;
  color: var(--cream);
}

.calc-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.calc-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 14px;
}

.calc-head p { color: rgba(247,245,242,.7); }

.calc-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(220,197,145,.18);
  border-radius: var(--r-lg);
  padding: 36px 36px 40px;
  backdrop-filter: blur(4px);
}

.calc-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(220,197,145,.18);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.calc-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  color: rgba(247,245,242,.5);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}

.calc-tab svg {
  width: 22px;
  height: 22px;
  color: rgba(220,197,145,.5);
  transition: color var(--transition);
}

.calc-tab:hover { color: rgba(247,245,242,.85); }
.calc-tab:hover svg { color: var(--bronze-light); }

.calc-tab.is-active {
  color: var(--cream);
  border-bottom-color: var(--bronze);
}

.calc-tab.is-active svg { color: var(--bronze); }

.calc-body { margin-bottom: 32px; }
.calc-pane { display: none; }
.calc-pane.is-active { display: block; }

.calc-field { margin-bottom: 26px; }

.calc-field label,
.calc-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(247,245,242,.85);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.calc-field label strong {
  color: var(--bronze-light);
  font-weight: 700;
}

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--r-pill);
  background: rgba(220,197,145,.2);
  outline: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bronze);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(197,165,90,.42);
  border: 3px solid #1a1d1f;
}

.calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bronze);
  cursor: pointer;
  border: 3px solid #1a1d1f;
}

.calc-radios,
.calc-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-radios label,
.calc-checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid rgba(220,197,145,.25);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  color: rgba(247,245,242,.8);
  cursor: pointer;
  transition: all var(--transition);
  margin: 0;
}

.calc-radios label:hover,
.calc-checks label:hover {
  border-color: var(--bronze);
  color: var(--cream);
}

.calc-radios input,
.calc-checks input { accent-color: var(--bronze); }

.calc-radios label:has(input:checked) {
  border-color: var(--bronze);
  background: rgba(197,165,90,.14);
  color: var(--cream);
}

.calc-checks label:has(input:checked) {
  border-color: var(--bronze);
  background: rgba(197,165,90,.14);
  color: var(--cream);
}

.calc-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.calc-tile {
  padding: 0;
  border: 0;
}

.calc-tile input { display: none; }

.tile-inner {
  display: block;
  padding: 22px 18px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(220,197,145,.22);
  border-radius: var(--r);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.calc-tile:hover .tile-inner { border-color: var(--bronze); }

.calc-tile input:checked + .tile-inner {
  border-color: var(--bronze);
  background: rgba(197,165,90,.14);
  box-shadow: 0 0 0 1px var(--bronze);
}

.tile-inner strong {
  display: block;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.tile-inner small {
  display: block;
  font-size: 0.78rem;
  color: rgba(247,245,242,.6);
  margin-bottom: 10px;
}

.tile-inner em {
  font-style: normal;
  font-size: 1.15rem;
  color: var(--bronze-light);
  font-weight: 700;
}

.calc-result {
  background: linear-gradient(135deg, rgba(197,165,90,.16), rgba(220,197,145,.08));
  border: 1px solid rgba(220,197,145,.3);
  border-radius: var(--r);
  padding: 28px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-result-label {
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-light);
  font-weight: 700;
}

.calc-result-price {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.02em;
  font-family: var(--font-heading);
}

.calc-cta-v2 { align-self: center; margin-top: 6px; }

.calc-disclaimer {
  font-size: 0.78rem;
  color: rgba(247,245,242,.5);
  margin-top: 4px;
}

/* Contact form below calculator */
.calc-contact {
  max-width: 720px;
  margin: 60px auto 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(220,197,145,.18);
  border-radius: var(--r-lg);
  padding: 32px;
}

.calc-contact h3 {
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.calc-contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.calc-contact input,
.calc-contact textarea {
  padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(220,197,145,.18);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color var(--transition);
}

.calc-contact input::placeholder,
.calc-contact textarea::placeholder { color: rgba(247,245,242,.42); }

.calc-contact input:focus,
.calc-contact textarea:focus {
  outline: none;
  border-color: var(--bronze);
}

.calc-contact textarea {
  grid-column: span 2;
  resize: vertical;
  min-height: 92px;
}

.calc-contact button {
  grid-column: span 2;
  justify-self: start;
  margin-top: 4px;
}

.form-status {
  grid-column: span 2;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form-status.is-success { color: #6fd58a; }
.form-status.is-error { color: #ef6e6e; }

/* ===================== FOOTER ===================== */
.footer {
  color: rgba(247,245,242,.86);
  padding: 80px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 68px;
  width: auto;
  margin-bottom: 22px;
}

.footer-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-perks svg {
  width: 18px;
  height: 18px;
  color: var(--bronze);
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 20px;
  -webkit-text-stroke: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(247,245,242,.7);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--bronze-light); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--bronze);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(220,197,145,.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--bronze);
  color: #0A0B0C;
  transform: translateY(-2px);
}

.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
  border-top: 1px solid rgba(220,197,145,.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(247,245,242,.5);
}

.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(247,245,242,.5); }
.footer-bottom-links a:hover { color: var(--bronze-light); }

/* ===================== WHATSAPP FLOATING ===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn svg {
  width: 42px;
  height: 42px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.32);
}

/* ===================== TIP MODAL ===================== */
.tip-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}

.tip-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.tip-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,17,19,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tip-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: 85vw;
  max-width: 900px;
  max-height: 85vh;
  background: #fff;
  border-radius: var(--r-lg);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--bronze);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.tip-modal.is-open .tip-modal-panel {
  transform: translate(-50%, -50%) scale(1);
}

.tip-modal-panel.is-news {
  border-top-color: #2EA043;
}

.tip-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(197,165,90,.45);
  transition: transform var(--transition);
}

.tip-modal-close:hover {
  transform: rotate(90deg) scale(1.05);
}

.tip-modal-close svg { width: 20px; height: 20px; }

.tip-modal-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}

.tip-modal-body {
  padding: 32px 40px 40px;
}

.tip-modal-body .tip-modal-tag {
  margin-bottom: 16px;
}

.tip-modal-body h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 18px;
}

.tip-modal-body #tipModalDesc p {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 1rem;
}

.tip-modal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 20px 0 26px;
}

/* ===================== ANIMATIONS ===================== */
.reveal-x, .reveal-x-r {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}

.reveal-x   { transform: translateX(-30px); }
.reveal-x-r { transform: translateX(30px); }

.reveal-x.is-visible,
.reveal-x-r.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .12s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .24s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .36s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .48s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .60s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: .72s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-x, .reveal-x-r, .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-slide { animation: none !important; }
}

/* ===================== FAQ ===================== */
.hp-faq {
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(197,165,90,.4);
}

.faq-item.is-open {
  border-color: var(--bronze);
  box-shadow: 0 8px 24px rgba(197,165,90,.12);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -.01em;
  line-height: 1.35;
  cursor: pointer;
  -webkit-text-stroke: 0.3px currentColor;
  paint-order: stroke fill;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--bronze-dark); }
.faq-q:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: -2px;
  border-radius: var(--r);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--bronze);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

/* Smooth open/close via grid-template-rows trick (modern CSS) */
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.4,0,.2,1);
}

.faq-item.is-open .faq-a-wrap {
  grid-template-rows: 1fr;
}

.faq-a-wrap > .faq-a {
  overflow: hidden;
  min-height: 0;
}

.faq-a {
  padding: 0 26px 4px;
}

.faq-item.is-open .faq-a {
  padding: 0 26px 22px;
}

.faq-a p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* =============================================================
   SECTION-BACKGROUND CASCADE (single source of truth, !important)
   ============================================================= */
.hp-overons   { background: var(--bg) !important; }
.hp-vakwerk   { background: var(--bg-alt) !important; }
.hp-services  { background: var(--bg) !important; }
.hp-werkwijze { background: var(--bg-alt) !important; }
.hp-portfolio { background: var(--bg) !important; }
.hp-tips      { background: var(--bg-alt) !important; }
.hp-greviews  { background: var(--bg) !important; }
.hp-contact   { background: var(--bg-dark) !important; }
.hp-faq       { background: var(--bg) !important; }
.footer       { background: #0A0B0C !important; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 88px; }

  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .nav-phone span { display: none; }

  .hp-overons-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hp-overons-text .eyebrow { justify-content: center; }
  .hp-overons-text .eyebrow::after { content: ''; width: 32px; height: 1.5px; background: var(--bronze); }

  .hp-svc-grid { grid-template-columns: 1fr 1fr; }
  .hp-svc-feature { grid-column: span 2; }
  .hp-svc-feature .hp-svc-img { height: 320px; }

  .hp-werk-steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .ww-connector { display: none; }

  .hp-port-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .tile-1 { grid-column: span 2; }
  .tile-6 { grid-column: span 2; }
  .bento-tile { min-height: 220px; }

  .hp-vakwerk-points { grid-template-columns: 1fr; gap: 24px; }
  .hp-vakwerk-stats { grid-template-columns: 1fr 1fr 1fr; }

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

@media (max-width: 768px) {
  :root { --section-pad: 68px; --container-pad: 18px; }

  .nav-inner { padding: 14px 18px; }
  .nav-logo img { height: 44px; }
  .nav-actions .btn { display: none; }
  .nav-phone { display: none; }

  h1 { font-size: 2.2rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc { font-size: 1rem; }
  .hero-stats { gap: 22px; }
  .hero-stat strong { font-size: 1.25rem; }

  .photo-ring { width: 240px; height: 240px; }

  .hp-svc-grid { grid-template-columns: 1fr; }
  .hp-svc-feature { grid-column: auto; }

  .hp-werk-steps { grid-template-columns: 1fr; }

  .hp-port-bento { grid-template-columns: 1fr; }
  .tile-1, .tile-6 { grid-column: auto; }
  .bento-tile { min-height: 240px; }

  .hp-vakwerk-stats { grid-template-columns: 1fr; gap: 32px; }

  .calc-wrap { padding: 24px 20px 28px; }
  .calc-tabs { gap: 4px; }
  .calc-tab { padding: 11px 14px; font-size: 0.85rem; }
  .calc-tab svg { width: 18px; height: 18px; }
  .calc-tiles { grid-template-columns: 1fr; }

  .calc-contact form { grid-template-columns: 1fr; }
  .calc-contact textarea,
  .calc-contact button,
  .form-status { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hp-tips-card { width: 290px; }
  .hpgr-card { width: 320px; }

  .tip-modal-panel { width: 92vw; max-height: 88vh; }
  .tip-modal-img { height: 200px; }
  .tip-modal-body { padding: 24px 22px 28px; }

  .whatsapp-btn { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .whatsapp-btn svg { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 12px 14px; gap: 8px; }
  .nav-logo img { height: 38px; }
  .lang-btn { width: 32px; height: 32px; }
  .lang-btn svg { width: 18px; height: 14px; }
}
