/* ==========================================================================
   Ceintuur's Gebruikte Goederen — hoofdstylesheet
   Kleuren en maten komen één-op-één uit het goedgekeurde ontwerp.
   ========================================================================== */

/* Inter, zelf gehost: geen extra verbinding met Google en geen bezoekersdata
   naar derden (AVG). Eén variabel lettertype dekt gewicht 400 t/m 700. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #1B2B3F;
  --navy-dark: #16263C;
  --green: #2E7D52;
  --green-light: #7FD3A0;
  --bg: #FBFBF9;
  --border: #D7DDE5;
  --border-light: #E7EBF0;
  --text: #1B2B3F;
  --text-body: #33445A;
  --text-muted: #4C5A6B;
  --text-faint: #8A95A3;
}

/* ---------- Basis ---------- */

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: #CFE3D7; }

@keyframes cgFadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cgLeaf {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}
@keyframes cgSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- USP-balk ---------- */

.usp-bar { background: var(--navy); color: #EAEFF4; }
.usp-bar__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 22px; height: 38px;
  display: flex; align-items: center; justify-content: center;
}
.usp-item { display: flex; align-items: center; gap: 9px; animation: cgFadeUp .5s ease; min-width: 0; }
.usp-item svg { color: var(--green-light); flex-shrink: 0; }
.usp-item span {
  font-size: 13px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #ffffff; border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 22px; height: 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.logo__name { font-weight: 700; font-size: 18px; letter-spacing: 0.01em; color: var(--navy); }
.logo__sub { font-weight: 600; font-size: 9.5px; letter-spacing: 0.22em; color: var(--green); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link { padding: 9px 13px; font-weight: 500; font-size: 15px; color: var(--text-body); }
.nav__link--drop { display: inline-flex; align-items: center; gap: 6px; }

.nav__drop { position: relative; }
.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 10px 26px rgba(27, 43, 63, 0.12);
  padding: 6px; min-width: 250px;
}
.nav__drop:hover .dropdown,
.nav__drop:focus-within .dropdown { display: block; }
.dropdown__item {
  display: block; padding: 9px 12px; border-radius: 6px;
  color: var(--text-body); font-weight: 500; font-size: 14.5px;
}
.dropdown__item:hover { background: #F2F5F8; }

.btn-call {
  margin-left: 10px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; font-weight: 600; font-size: 14.5px;
  padding: 10px 16px; border-radius: 6px;
}
.header-insta {
  margin-left: 4px; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; color: #5B6673;
}

/* Mobiele header-knoppen */
.mobile-ctas { display: none; align-items: center; gap: 9px; }
.mobile-call {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--green); color: #fff; border-radius: 8px;
}
.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: #fff;
  border: 1px solid var(--border); border-radius: 8px; cursor: pointer;
}

@media (max-width: 959px) {
  .nav { display: none; }
  .mobile-ctas { display: flex; }
  .desktop-only { display: none !important; }
}

/* ---------- Mobiel menu ---------- */

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 70;
  background: rgba(27, 43, 63, 0.45);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(84vw, 320px); background: #fff; overflow-y: auto;
  animation: cgSlideIn .24s ease;
}
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #E7EBF0;
}
.mobile-menu__label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint);
}
.mobile-menu__close {
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 8px;
  background: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu__links { padding: 6px 10px; }
.mobile-menu__link {
  display: block; padding: 15px 12px; font-weight: 600; font-size: 16px;
  border-bottom: 1px solid #EEF1F5;
}
.mobile-menu__sub-toggle {
  width: 100%; text-align: left; background: none; border: 0; font: inherit; color: inherit;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 12px; font-weight: 600; font-size: 16px;
  border-bottom: 1px solid #EEF1F5; cursor: pointer;
}
.mobile-menu__sub-toggle svg { transition: transform .18s; }
.mobile-menu__sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-menu__submenu { display: none; border-bottom: 1px solid #EEF1F5; padding: 4px 0 8px; background: #F7F9FB; }
.mobile-menu__submenu.is-open { display: block; }
.mobile-menu__sub-link {
  display: block; padding: 11px 12px 11px 20px;
  font-weight: 500; font-size: 15.5px; color: var(--text-body);
}
.mobile-menu__sub-link--all { font-weight: 600; font-size: 15px; color: var(--green); }
.mobile-menu__footer { padding: 8px 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu__call {
  display: block; text-align: center; background: var(--green); color: #fff;
  font-weight: 600; padding: 14px; border-radius: 6px;
}
.mobile-menu__insta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--text-body); font-weight: 600; font-size: 14.5px;
}

/* ---------- Knoppen & links ---------- */

.btn {
  display: inline-block; background: var(--green); color: #fff;
  font-weight: 600; font-size: 16px; padding: 14px 24px; border-radius: 6px; cursor: pointer;
}
.btn--medium { font-size: inherit; padding: 13px 22px; }
.btn--outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid #C6CDD6; color: var(--navy);
  font-weight: 600; font-size: 16px; padding: 13px 22px; border-radius: 6px;
}
.link-green { color: var(--green); font-weight: 600; font-size: 15px; cursor: pointer; }
.link-green--small { font-size: 14.5px; }
.link-light { color: var(--green-light); font-weight: 600; font-size: 15.5px; cursor: pointer; }

/* ---------- Gedeelde bouwstenen ---------- */

.section-title { font-size: 24px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.title-bar { width: 44px; height: 3px; background: var(--green); border-radius: 2px; margin: 9px 0 6px; }
.title-bar--light { background: var(--green-light); margin: 0 0 16px; }
.title-bar--spaced { margin: 0 0 22px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.eyebrow span {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green);
}

.tick-item { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--text-muted); }
.tick-item svg { flex-shrink: 0; }

/* Foto-placeholder (wordt vervangen door echte foto's) */
.photo-ph {
  width: 100%; background: #E9EDF2; border-bottom: 1px solid #DFE4EA;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: #9AA5B2;
}
.photo-ph span { font-size: 12.5px; font-weight: 500; }
.photo-ph--standalone { border: 1px solid var(--border); border-radius: 8px; }
.photo-ph--bare { border-bottom: none; }

/* Google Maps-embed */
.map-embed {
  position: relative; width: 100%; overflow: hidden;
  background: #E6EAEF; border: 1px solid var(--border); border-radius: 8px;
}
.map-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}

/* Broodkruimelpad */
.breadcrumb { color: var(--text-faint); font-size: 13px; margin-bottom: 12px; }

/* Paginakop */
.page-head { background: #fff; border-bottom: 1px solid var(--border-light); }
.page-title {
  font-size: clamp(26px, 3.6vw, 38px); font-weight: 700;
  letter-spacing: -0.015em; margin: 0 0 14px;
}
.page-lead { font-size: 16.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* ---------- Home: hero ---------- */

.hero { background: #fff; border-bottom: 1px solid var(--border-light); }
.hero__inner {
  max-width: 1180px; margin: 0 auto; padding: 50px 22px 48px;
  display: flex; flex-wrap: wrap; gap: 40px; align-items: center;
}
.hero__copy { flex: 1 1 420px; }
.hero__title {
  font-size: clamp(28px, 4vw, 44px); line-height: 1.12; font-weight: 700;
  letter-spacing: -0.015em; margin: 0 0 18px; color: var(--navy);
}
.hero__lead { font-size: 17px; line-height: 1.6; color: var(--text-muted); max-width: 500px; margin: 0 0 26px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__ticks { display: flex; flex-wrap: wrap; column-gap: 22px; row-gap: 9px; }
.hero__photo { flex: 1 1 380px; }
.hero__img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3.1;
  object-fit: cover; border: 1px solid var(--border); border-radius: 8px;
}

/* ---------- Home/aanbod: categoriekaarten ---------- */

.section-cats { max-width: 1180px; margin: 0 auto; padding: 50px 22px 44px; }
.section-cats__sub { color: var(--text-muted); font-size: 15.5px; max-width: 600px; margin: 0 0 26px; }

.card-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.cat-card {
  display: flex; flex-direction: column; cursor: pointer; overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cat-card:hover {
  border-color: #B4BEC9; transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(27, 43, 63, 0.08);
}
.cat-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.cat-card__title { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.cat-card__desc { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin: 0 0 14px; flex: 1; }
.cat-card__more { color: var(--green); font-weight: 600; font-size: 14.5px; }

/* Op mobiel: aanbod-cards horizontaal swipen i.p.v. lange verticale lijst */
@media (max-width: 640px) {
  .card-grid {
    display: flex; gap: 14px; overflow-x: auto;
    scroll-snap-type: x mandatory; scroll-padding: 22px;
    margin: 0 -22px; padding: 2px 22px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: var(--border) transparent;
  }
  .card-grid::-webkit-scrollbar { height: 6px; }
  .card-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
  .cat-card { flex: 0 0 78%; max-width: 300px; scroll-snap-align: start; }
  .cat-card:hover { transform: none; }
}

.also-links {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid #E1E6EC;
  display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: center;
}
.also-links > span { font-size: 14px; color: #6B7787; }

/* ---------- Instagram-sectie ---------- */

.section-insta { max-width: 1180px; margin: 0 auto; padding: 8px 22px 48px; }
.insta-box {
  border: 1px solid var(--border); border-radius: 8px; background: #fff;
  overflow: hidden; display: flex; flex-wrap: wrap;
}
.insta-box__copy { flex: 1 1 320px; padding: 30px 34px; }
.insta-box__copy h2 { font-size: 21px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
.insta-box__copy p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin: 0 0 20px; max-width: 440px; }
.insta-box__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-insta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; font-weight: 600; font-size: 14.5px;
  padding: 11px 18px; border-radius: 6px;
}
.btn-insta--outline {
  background: #fff; border: 1px solid #C6CDD6; color: var(--navy); padding: 10px 16px;
}

.insta-tiles { flex: 1 1 300px; display: grid; grid-template-columns: repeat(2, 1fr); }
.insta-tile {
  aspect-ratio: 1 / 1; background: #EDF0F4;
  display: flex; align-items: center; justify-content: center; color: #9AA5B2;
}
.insta-tiles--right .insta-tile { border-left: 1px solid var(--border-light); border-top: 1px solid var(--border-light); }
.insta-tiles--left .insta-tile { border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

/* ---------- Duurzaamheid ---------- */

.section-eco { background: #EDF3EE; border-top: 1px solid #D8E5DC; border-bottom: 1px solid #D8E5DC; }
.section-eco__inner {
  max-width: 1180px; margin: 0 auto; padding: 42px 22px;
  display: flex; flex-wrap: wrap; gap: 34px; align-items: center;
}
.section-eco__copy { flex: 1 1 350px; }
.section-eco__copy h2 { font-size: 23px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--navy); }
.section-eco__copy p { color: #3F5847; font-size: 15.5px; line-height: 1.6; margin: 0; max-width: 470px; }
.eco-leaf { display: inline-flex; color: var(--green); animation: cgLeaf 3.4s ease-in-out infinite; transform-origin: bottom center; }
.eco-grid { flex: 1 1 330px; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.eco-card {
  background: #fff; border: 1px solid #CFE0D5; border-radius: 8px; padding: 16px;
  display: flex; flex-direction: column; gap: 7px;
}
.eco-card svg { color: var(--green); }
.eco-card__title { font-weight: 700; font-size: 14.5px; color: var(--navy); line-height: 1.3; }
.eco-card__desc { font-size: 13px; color: #5B7364; line-height: 1.45; }

/* ---------- Service ---------- */

.section-service { max-width: 1180px; margin: 0 auto; padding: 48px 22px; }
.service-box {
  border: 1px solid var(--border); border-radius: 8px; background: #fff;
  overflow: hidden; display: flex; flex-wrap: wrap;
}
.service-box__dark { flex: 1 1 360px; padding: 34px; background: var(--navy); }
.service-box__dark h2 { font-size: 22px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; color: #fff; }
.service-box__dark p { color: #C6CFDA; font-size: 15.5px; line-height: 1.6; margin: 0 0 18px; max-width: 460px; }
.service-box__list {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.service-box__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #EAEFF4; }
.service-box__list svg { flex-shrink: 0; }
.service-box { align-items: stretch; }
.service-box__dark { flex: 1 1 50%; display: flex; flex-direction: column; justify-content: center; }
.service-box__photo { flex: 1 1 50%; background: none; }
.service-box__photo .photo-ph { min-height: 0; background: none; overflow: hidden; }

/* ---------- Reviews ---------- */

.section-reviews { background: var(--navy); border-top: 1px solid var(--navy-dark); border-bottom: 1px solid var(--navy-dark); }
.section-reviews__inner { max-width: 1180px; margin: 0 auto; padding: 46px 22px; }
.section-reviews__head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  justify-content: space-between; margin-bottom: 26px;
}
.section-reviews__head h2 { font-size: 22px; font-weight: 700; margin: 0 0 12px; color: #fff; }
.rating-row { display: flex; align-items: center; gap: 12px; }
.rating-row__score { font-size: 22px; font-weight: 700; color: #fff; }
.rating-row__note { font-size: 13.5px; color: #AEB9C6; }
.stars { display: flex; gap: 2px; }

.review-scroller {
  display: flex; gap: 16px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-padding: 2px;
  padding: 2px 2px 14px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.28) transparent;
}
.review-scroller::-webkit-scrollbar { height: 6px; }
.review-scroller::-webkit-scrollbar-track { background: rgba(255,255,255,.08); border-radius: 3px; }
.review-scroller::-webkit-scrollbar-thumb { background: rgba(255,255,255,.28); border-radius: 3px; }
.review-scroller:focus-visible { outline: 2px solid var(--green-light); outline-offset: 2px; }
.review-nav { display: flex; gap: 10px; }
.review-nav__btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.review-nav__btn:hover:not(:disabled) { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.review-nav__btn:disabled { opacity: .35; cursor: default; }
.review-card {
  background: #fff; border: 1px solid #E1E6EC; border-radius: 8px; padding: 20px;
  flex: 0 0 330px; max-width: 82vw; scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.review-card__head { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.review-card__avatar {
  width: 36px; height: 36px; border-radius: 50%; background: #E9EEF3; color: var(--text-body);
  font-weight: 600; display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.review-card__who { line-height: 1.3; }
.review-card__name { font-weight: 600; font-size: 14.5px; }
.review-card__date { font-size: 12px; color: var(--text-faint); }
.review-card__g { margin-left: auto; display: inline-flex; }
.review-card .stars { margin-bottom: 9px; }
.review-card__text { font-size: 14.5px; line-height: 1.55; color: #3B4859; margin: 0; }
.section-reviews__more { margin-top: 18px; }
.section-reviews__more a { color: var(--green-light); font-weight: 600; font-size: 15px; }

/* ---------- Bezoek/locatie (home) ---------- */

.section-visit { max-width: 1180px; margin: 0 auto; padding: 48px 22px; }
.section-visit__inner { display: flex; flex-wrap: wrap; gap: 32px; }
.section-visit__info { flex: 1 1 320px; }
.section-visit__info h2 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.section-visit__addr { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.section-visit__city { font-size: 15.5px; color: var(--text-muted); margin-bottom: 18px; }
.section-visit__phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 19px; font-weight: 700; color: var(--green); margin-bottom: 22px;
}
.section-visit__map { flex: 1 1 380px; }

.hours-table { border-collapse: collapse; font-size: 15px; color: var(--text-body); margin-bottom: 22px; }
.hours-table td { padding: 5px 0; font-weight: 600; }
.hours-table td:first-child { padding-right: 24px; color: #6B7787; font-weight: 400; }
.hours-table .is-closed { color: var(--text-faint); font-weight: 400; }

/* ---------- Aanbod-pagina ---------- */

.page-head__inner--aanbod { max-width: 1180px; margin: 0 auto; padding: 44px 22px 38px; }
.page-head__inner--aanbod .page-lead { max-width: 680px; }
.section-offer-grid { max-width: 1180px; margin: 0 auto; padding: 40px 22px 40px; }

.section-steps { max-width: 1180px; margin: 0 auto; padding: 34px 22px 8px; }
.steps-box { border: 1px solid var(--border); background: #fff; border-radius: 8px; padding: 30px; }
.steps-box h2 { font-size: 20px; font-weight: 700; margin: 0 0 18px; }
.steps-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.step__head { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; }
.step__num {
  width: 26px; height: 26px; border-radius: 5px; background: #EDF3EF; color: var(--green);
  font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.step__title { font-weight: 700; font-size: 15.5px; }
.step__desc { color: var(--text-muted); font-size: 14px; line-height: 1.5; padding-left: 35px; }

.section-cta { max-width: 1180px; margin: 0 auto; padding: 30px 22px 56px; }
.cta-banner {
  background: var(--navy); color: #fff; border-radius: 8px; padding: 34px;
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
.cta-banner__copy { flex: 1 1 340px; }
.cta-banner h2 { font-size: 21px; font-weight: 700; margin: 0 0 6px; }
.cta-banner p { color: #AEB9C6; font-size: 15px; margin: 0; max-width: 460px; }
.cta-banner .btn { flex-shrink: 0; }

/* ---------- Categoriepagina ---------- */

.cat-hero__inner {
  max-width: 1180px; margin: 0 auto; padding: 40px 22px;
  display: flex; flex-wrap: wrap; gap: 36px; align-items: center;
}
.cat-hero__copy { flex: 1 1 380px; }
.cat-hero__title { font-size: clamp(25px, 3.4vw, 36px); font-weight: 700; letter-spacing: -0.015em; margin: 0 0 14px; }
.cat-hero__intro { font-size: 16px; line-height: 1.6; color: var(--text-muted); max-width: 540px; margin: 0 0 20px; }
.cat-hero__trust {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.cat-hero__trust li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-body); }
.cat-hero__trust svg { flex-shrink: 0; }
.cat-hero__photo { flex: 1 1 320px; }

.section-cat-insta { max-width: 1180px; margin: 0 auto; padding: 40px 22px 80px; }
.cat-insta-box {
  border: 1px solid var(--border); background: #fff; border-radius: 8px;
  overflow: hidden; display: flex; flex-wrap: wrap;
}
.cat-insta-box__copy { flex: 1 1 320px; padding: 28px 30px; }
.cat-insta-box__copy .eyebrow { margin-bottom: 10px; }
.cat-insta-box__copy .eyebrow span { font-size: 12px; }
.cat-insta-box__copy h2 { font-size: 18.5px; font-weight: 700; margin: 0 0 8px; }
.cat-insta-box__copy p { color: var(--text-muted); font-size: 14.5px; line-height: 1.55; margin: 0 0 16px; }
.cat-insta-box__links { display: flex; flex-wrap: wrap; gap: 14px 24px; }

/* ---------- Over ons ---------- */

.page-head__inner--over { max-width: 1180px; margin: 0 auto; padding: 44px 22px 36px; }
.page-head__inner--over .page-title { margin-bottom: 16px; }
.page-head__inner--over .page-lead { font-size: 17px; line-height: 1.65; }

.section-over { max-width: 1180px; margin: 0 auto; padding: 36px 22px; }
.section-over__cols { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 36px; }
.section-over__text { flex: 2 1 380px; }
.section-over__text p { font-size: 16px; line-height: 1.7; color: #3B4859; margin: 0 0 16px; }
.section-over__text p:last-child { margin-bottom: 0; }
.section-over__facts { flex: 1 1 220px; }
.facts-card { border: 1px solid var(--border); border-radius: 8px; background: #fff; overflow: hidden; }
.facts-card__row { padding: 16px 18px; border-bottom: 1px solid #EEF1F5; }
.facts-card__row:last-child { border-bottom: none; }
.facts-card__num { font-size: 28px; font-weight: 700; color: var(--green); line-height: 1; }
.facts-card__label { font-size: 13.5px; color: #6B7787; margin-top: 4px; }

.section-over-cta { max-width: 1180px; margin: 0 auto; padding: 8px 22px 56px; }
.over-cta-box {
  border: 1px solid var(--border); background: #F2F4F7; border-radius: 8px; padding: 28px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.over-cta-box__copy { flex: 1 1 320px; }
.over-cta-box h2 { font-size: 19px; font-weight: 700; margin: 0 0 5px; }
.over-cta-box p { color: var(--text-muted); font-size: 14.5px; margin: 0; }
.over-cta-box .btn { flex-shrink: 0; }

/* ---------- Contact ---------- */

.page-head__inner--contact { max-width: 1180px; margin: 0 auto; padding: 44px 22px 32px; }
.page-head__inner--contact .page-title { margin-bottom: 12px; }
.page-head__inner--contact .page-lead { max-width: 600px; }

.section-contact { max-width: 1180px; margin: 0 auto; padding: 38px 22px 56px; }
.section-contact__inner { display: flex; flex-wrap: wrap; gap: 28px; }
.section-contact__info { flex: 1 1 300px; }
.section-contact__map { flex: 1 1 360px; }

.info-card { border: 1px solid var(--border); background: #fff; border-radius: 8px; overflow: hidden; }
.info-card__block { padding: 20px 22px; border-bottom: 1px solid #EEF1F5; }
.info-card__label {
  font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 6px;
}
.info-card__addr { font-size: 16.5px; font-weight: 700; }
.info-card__city { font-size: 15px; color: var(--text-muted); }
.info-card__phone { font-size: 18px; font-weight: 700; color: var(--green); }
.info-card__links { padding: 18px 22px; display: flex; flex-wrap: wrap; gap: 6px 22px; }
.info-card .hours-table { font-size: 14.5px; margin-bottom: 0; }
.info-card .hours-table td { padding: 3px 0; }
.info-card .hours-table td:first-child { padding-right: 20px; }

/* ---------- Route ---------- */

.page-head__inner--route { max-width: 1180px; margin: 0 auto; padding: 44px 22px 30px; }
.page-head__inner--route .page-title { margin-bottom: 12px; }
.page-head__addr { font-size: 16.5px; color: var(--text-body); }

.section-route { max-width: 1180px; margin: 0 auto; padding: 34px 22px; }
.section-route__cta { margin: 16px 0 40px; }
.route-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.route-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 22px; }
.route-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.route-card__head svg { color: var(--green); flex-shrink: 0; }
.route-card__head h3 { font-size: 16px; font-weight: 700; margin: 0; }
.route-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-dark); color: #B9C3CF; }
.site-footer__grid {
  max-width: 1180px; margin: 0 auto; padding: 46px 22px 26px;
  display: grid; gap: 34px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.site-footer .logo { margin-bottom: 14px; }
.site-footer .logo__name { color: #fff; }
.site-footer .logo__sub { color: var(--green-light); letter-spacing: 0.2em; }
.site-footer__about { font-size: 13.5px; line-height: 1.6; color: #93A0AF; margin: 0 0 14px; max-width: 250px; }
.site-footer__insta {
  display: inline-flex; align-items: center; gap: 7px;
  color: #B9C3CF; font-size: 13.5px; font-weight: 500;
}
.site-footer__col-title { color: #fff; font-weight: 700; font-size: 13.5px; margin-bottom: 14px; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.site-footer__contact { font-size: 13.5px; line-height: 1.75; color: #93A0AF; }
.site-footer__contact a { color: var(--green-light); font-weight: 600; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.site-footer__bottom-inner {
  max-width: 1180px; margin: 0 auto; padding: 16px 22px;
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: space-between;
  font-size: 12px; color: #75828F;
}
.site-footer__bottom-inner a { color: #93A0AF; font-weight: 600; }

/* ==========================================================================
   UI/UX-verfijning: focus, hover, actieve pagina, badges
   ========================================================================== */

/* Zichtbare focus voor toetsenbordgebruikers */
:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; border-radius: 4px; }

/* Skip-link: onzichtbaar tot hij focus krijgt */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; font-weight: 600; font-size: 14px;
  padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
main:focus { outline: none; }

/* Header: subtiele schaduw zodra er gescrold is */
.site-header { transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 2px 12px rgba(27, 43, 63, 0.07); }

/* Navigatie: hover en actieve pagina */
.nav__link { border-radius: 6px; transition: background-color .15s ease, color .15s ease; }
.nav__link:hover { background: #F2F5F8; color: var(--navy); }
.nav__link.is-current { color: var(--green); }
.dropdown { animation: cgFadeUp .16s ease; }
.dropdown__item { transition: background-color .12s ease; }
.dropdown__item.is-current { color: var(--green); background: #F0F6F2; }
.mobile-menu__link.is-current,
.mobile-menu__sub-link.is-current { color: var(--green); }
.hamburger { transition: background-color .15s ease; }
.hamburger:hover { background: #F2F5F8; }

/* Knoppen: hover/active-states */
.btn, .btn-call, .btn-insta, .mobile-call, .mobile-menu__call {
  transition: background-color .15s ease, transform .1s ease;
}
.btn:hover, .btn-call:hover, .mobile-call:hover, .mobile-menu__call:hover,
.btn-insta:not(.btn-insta--outline):hover { background: #276C47; }
.btn:active, .btn-call:active { transform: translateY(1px); }
.btn--outline { transition: background-color .15s ease, border-color .15s ease; }
.btn--outline:hover, .btn-insta--outline:hover { background: #F4F7F5; border-color: #9FBFAD; }

/* Tekstlinks: onderstreping bij hover */
.link-green:hover, .link-light:hover, .breadcrumb a:hover,
.section-reviews__more a:hover, .info-card__phone:hover, .section-visit__phone:hover {
  text-decoration: underline; text-underline-offset: 3px;
}

/* Footer: links lichten op */
.site-footer__links a, .site-footer__insta, .site-footer__bottom-inner a { transition: color .15s ease; }
.site-footer__links a:hover, .site-footer__insta:hover, .site-footer__bottom-inner a:hover { color: #fff; }

/* Instagram-tegels zijn klikbaar */
a.insta-tile { cursor: pointer; transition: background-color .15s ease; }
a.insta-tile svg { transition: transform .15s ease; }
a.insta-tile:hover { background: #E3E9EF; }
a.insta-tile:hover svg { transform: scale(1.12); }
a.insta-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Live openingsstatus (ingevuld door js/main.js) */
.open-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; padding: 5px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.open-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.open-badge.is-open { background: #E7F3EC; color: #256B45; }
.open-badge.is-closed { background: #EEF1F5; color: #5B6673; }
.open-badge[hidden] { display: none; }
.info-card .open-badge { margin: 2px 0 10px; }

/* Reviewfoto's van Google (bij live koppeling) */
.review-card__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }

/* Achtergrond scrolt niet mee als het mobiele menu open is */
body.menu-open { overflow: hidden; }


/* ============================================================
   Foto's vullen de placeholder-vakken netjes op
   ============================================================ */
/* <picture> is alleen een omhulsel voor de WebP-variant; het mag de opmaak niet
   beïnvloeden, dus gedraagt de <img> zich alsof hij er direct in staat. */
picture { display: contents; }

.photo-ph { position: relative; overflow: hidden; }
.photo-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Subtiele zoom op categoriekaart-foto bij hover */
@media (prefers-reduced-motion: no-preference) {
  .cat-card .photo-ph img { transition: transform .5s ease; }
  .cat-card:hover .photo-ph img { transform: scale(1.05); }
}


/* ============================================================
   Over ons - herindeling
   ============================================================ */
.over-grid { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.over-grid__text { flex: 1 1 360px; }
.over-grid__text p { font-size: 16px; line-height: 1.7; color: #3B4859; margin: 0 0 16px; }
.over-grid__text p:last-child { margin-bottom: 0; }
.over-grid__media { flex: 1 1 300px; display: flex; flex-direction: column; gap: 18px; }
.over-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; border: 1px solid var(--border); display: block; }

.section-over-values { max-width: 1180px; margin: 0 auto; padding: 20px 22px 40px; }
.over-values { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); margin-top: 20px; }
.over-value { border: 1px solid var(--border); border-radius: 8px; background: #fff; padding: 22px; }
.over-value svg { color: var(--green); margin-bottom: 12px; }
/* h2 of h3, afhankelijk van de kopstructuur van de pagina. */
.over-value h2, .over-value h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 6px; }
.over-value p { color: var(--text-muted); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ============================================================
   Actueel aanbod - professionele Instagram-feed widget
   ============================================================ */
.insta-pro {
  max-width: 1180px; margin: 0 auto; background: #fff;
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 12px 34px rgba(27, 43, 63, 0.07);
  padding: 22px 22px 24px;
}
.insta-pro__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.insta-pro__id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.insta-pro__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; color: #fff;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.insta-pro__meta { display: flex; flex-direction: column; min-width: 0; }
.insta-pro__handle { font-weight: 700; font-size: 15.5px; color: var(--navy); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.insta-pro__handle:hover { color: var(--green); }
.insta-pro__sub { font-size: 13px; color: var(--text-muted); }
.insta-pro__follow {
  flex-shrink: 0; font-weight: 600; font-size: 14px; color: #fff;
  background: linear-gradient(45deg, #fa7e1e, #d62976, #962fbf);
  padding: 9px 20px; border-radius: 8px; transition: opacity .15s ease, transform .1s ease;
}
.insta-pro__follow:hover { opacity: .92; }
.insta-pro__follow:active { transform: translateY(1px); }

.insta-pro__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (min-width: 620px) { .insta-pro__grid { grid-template-columns: repeat(6, 1fr); } }
.insta-pro__grid .insta-tile {
  position: relative; aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; background: #EDF0F4;
}
.insta-pro__grid .insta-tile img { transition: transform .45s ease; }
.insta-pro__grid .insta-tile::after {
  content: ""; position: absolute; inset: 0; background: rgba(27, 43, 63, 0);
  transition: background .25s ease; pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .insta-pro__grid .insta-tile:hover img { transform: scale(1.07); }
}
.insta-pro__grid .insta-tile:hover::after { background: rgba(27, 43, 63, 0.16); }

.insta-pro__more { display: block; text-align: center; margin-top: 18px; color: var(--green); font-weight: 600; font-size: 14.5px; }
.insta-pro__more:hover { text-decoration: underline; }

/* ============================================================
   Instagram-lightbox (post-info bij klik)
   ============================================================ */
body.ig-lb-open { overflow: hidden; }
.ig-lb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.ig-lb[hidden] { display: none; }
.ig-lb__backdrop { position: absolute; inset: 0; background: rgba(15, 24, 36, 0.72); }
.ig-lb__panel {
  position: relative; z-index: 1; background: #fff; border-radius: 14px; overflow: hidden;
  max-width: 860px; width: 100%; max-height: 88vh; display: flex; flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.ig-lb__media { flex: 1 1 340px; background: #0f1824; display: flex; align-items: center; justify-content: center; }
.ig-lb__img { width: 100%; max-height: 88vh; object-fit: contain; display: block; }
.ig-lb__body { flex: 1 1 260px; padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; max-height: 88vh; overflow-y: auto; }
.ig-lb__head { display: flex; align-items: center; gap: 10px; }
.ig-lb__avatar { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.ig-lb__handle { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.ig-lb__caption { font-size: 14.5px; line-height: 1.6; color: #3B4859; margin: 0; white-space: pre-wrap; }
.ig-lb__link { margin-top: auto; align-self: flex-start; background: var(--green); color: #fff; font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: 8px; }
.ig-lb__link:hover { background: #256a44; }
.ig-lb__close {
  position: absolute; top: 10px; right: 12px; z-index: 2; width: 34px; height: 34px;
  border: none; border-radius: 50%; background: rgba(255, 255, 255, 0.92); color: #1B2B3F;
  font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.ig-lb__close:hover { background: #fff; }
@media (max-width: 620px) {
  .ig-lb__media { flex-basis: 100%; }
  .ig-lb__img { max-height: 46vh; }
}

.ig-lb__caption--muted { color: var(--text-muted); font-style: italic; }

/* ============================================================
   Reparatie - prominent tariefblok
   ============================================================ */
.tarief-card { border: 1px solid var(--border); border-radius: 10px; background: #fff; max-width: 720px; margin-top: 22px; overflow: hidden; }
.tarief-card__main { padding: 22px 24px; border-bottom: 1px solid #EEF1F5; background: #F4F8F5; }
.tarief-card__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; }
.tarief-card__amount { font-size: 32px; font-weight: 700; color: var(--green); letter-spacing: -0.01em; line-height: 1; }
.tarief-card__label { font-size: 16px; font-weight: 600; color: var(--navy); }
.tarief-card__note { margin: 10px 0 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.tarief-card__extra { margin: 0; padding: 18px 24px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   Hero- en servicefoto's vullen hun vak volledig (geen zichtbare achtergrond)
   ============================================================ */
.cat-hero__photo .photo-ph img { object-fit: cover; }
/* Servicefoto: kolom voegt zich naar de foto (volledig in beeld, geen bijsnijden/achtergrond) */
.service-box__photo .photo-ph img {
  position: static; width: 100%; height: auto; display: block; object-fit: initial;
}
@media (max-width: 640px) {
  .service-box__dark { flex-basis: 100%; }
  .service-box__photo { flex-basis: 100%; }
}



.over-grid { align-items: center; }
.over-grid__text { flex: 1.25 1 360px; }

/* ---------- Veelgestelde vragen ---------- */

/* Uitklapbaar via <details>/<summary>: werkt ook zonder JavaScript. */
.section-faq { max-width: 1180px; margin: 0 auto; padding: 6px 22px 58px; }
.section-faq__title {
  font-size: clamp(22px, 2.6vw, 28px); font-weight: 700;
  letter-spacing: -0.015em; margin: 0 0 8px;
}
.section-faq__lead {
  color: var(--text-muted); font-size: 15.5px; line-height: 1.6;
  margin: 0 0 22px; max-width: 620px;
}
.faq-list { max-width: 840px; border-top: 1px solid var(--border-light); }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item__q {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 17px 2px; cursor: pointer; list-style: none;
  font-size: 16.5px; font-weight: 600; line-height: 1.45; color: var(--text);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--green); }
.faq-item__q:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }
.faq-item__icon { flex-shrink: 0; margin-top: 2px; color: var(--green); transition: transform .25s ease; }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  margin: 0; padding: 0 2px 20px; max-width: 720px;
  color: var(--text-muted); font-size: 15.5px; line-height: 1.65;
}
.faq-item__a a { color: var(--green); font-weight: 600; text-underline-offset: 2px; text-decoration: underline; }
