/* =========================================================
   Slagter Techniek — main stylesheet
   Structure:
     1. Tokens (colors, type, spacing)
     2. Reset & base
     3. Typography
     4. Layout primitives (container, grid, section)
     5. Buttons
     6. Site header + mobile menu
     7. Hero
     8. Service cards
     9. Trust / about strips
    10. STORING strip
    11. CTA block
    12. FAQ
    13. Footer
    14. Mobile sticky bar
    15. Forms
    16. Service-page specific blocks
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand colors (from brand-guidelines) */
  --c-primary:        #1A5276;
  --c-primary-light:  #2980B9;
  --c-primary-dark:   #134260;
  --c-secondary:      #1E8449;
  --c-secondary-light:#58D68D;
  --c-accent:         #E67E22;
  --c-accent-dark:    #B8641A;
  --c-ink:            #1C2833;
  --c-mid:            #5D6D7E;
  --c-soft:           #F2F4F4;
  --c-softer:         #FAFBFB;
  --c-line:           #E3E7EA;
  --c-white:          #FFFFFF;
  --c-error:          #C0392B;
  --c-success:        #27AE60;

  /* Type */
  --f-display: "Manrope", system-ui, sans-serif;
  --f-body:    "Figtree", system-ui, sans-serif;

  --fs-50:  0.8125rem;   /* 13 */
  --fs-75:  0.9375rem;   /* 15 */
  --fs-100: 1rem;        /* 16 */
  --fs-200: 1.125rem;    /* 18 */
  --fs-300: 1.25rem;     /* 20 */
  --fs-400: 1.5rem;      /* 24 */
  --fs-500: 1.875rem;    /* 30 */
  --fs-600: 2.25rem;     /* 36 */
  --fs-700: 2.75rem;     /* 44 */
  --fs-800: 3.5rem;      /* 56 */

  /* Spacing — 8px grid */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(28, 40, 51, 0.06), 0 1px 3px rgba(28, 40, 51, 0.04);
  --sh-2: 0 4px 12px rgba(28, 40, 51, 0.08), 0 2px 4px rgba(28, 40, 51, 0.04);
  --sh-3: 0 12px 32px rgba(28, 40, 51, 0.12), 0 4px 8px rgba(28, 40, 51, 0.04);

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-100);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-primary); text-decoration-color: rgba(26, 82, 118, 0.3); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

/* Focus — visible, accessible, brand-tinted */
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-ink); color: #fff; padding: var(--s-3) var(--s-4);
  z-index: 100;
}
.skip-link:focus { left: var(--s-4); top: var(--s-4); }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  line-height: 1.15;
  color: var(--c-ink);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw + 1rem, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.625rem, 2.2vw + 1rem, 2.25rem); font-weight: 700; }
h3 { font-size: var(--fs-300); font-weight: 700; }
h4 { font-size: var(--fs-200); font-weight: 600; }
p  { margin: 0 0 var(--s-4); }
p.lead { font-size: var(--fs-200); color: var(--c-mid); max-width: 62ch; }
.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: var(--fs-50);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-primary);
  margin-bottom: var(--s-3);
}
.eyebrow--light { color: var(--c-secondary-light); }

/* ---------- 4. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--s-9) 0; }
.section--sm { padding: var(--s-7) 0; }
.section--alt { background: var(--c-softer); }
.section--dark { background: var(--c-primary-dark); color: #E8EEF3; }
.section--dark h2, .section--dark h3 { color: #fff; }

main { min-height: 40vh; padding-bottom: var(--s-10); }
@media (max-width: 720px) { main { padding-bottom: calc(var(--s-10) + 80px); } } /* room for sticky bar */

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--c-primary);
  --btn-fg: #fff;
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 12px 20px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--fs-75);
  letter-spacing: 0.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid var(--btn-border);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn--primary { --btn-bg: var(--c-secondary); }
.btn--primary:hover { --btn-bg: #176F3D; }
.btn--phone   { --btn-bg: var(--c-primary); }
.btn--phone:hover { --btn-bg: var(--c-primary-dark); }
.btn--urgent  { --btn-bg: var(--c-accent); }
.btn--urgent:hover { --btn-bg: var(--c-accent-dark); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-primary);
  --btn-border: var(--c-line);
}
.btn--ghost:hover { --btn-bg: var(--c-soft); --btn-border: var(--c-primary); box-shadow: none; }
.btn--on-dark-ghost {
  --btn-bg: transparent; --btn-fg: #fff; --btn-border: rgba(255,255,255,0.3);
}
.btn--on-dark-ghost:hover { --btn-bg: rgba(255,255,255,0.08); --btn-border: rgba(255,255,255,0.6); box-shadow: none; }
.btn--lg { padding: 14px 24px; font-size: var(--fs-100); }
.btn--block { width: 100%; }

/* ---------- 6. Site header + mobile menu ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--s-5);
  min-height: 80px;
}
.site-header__brand {
  display: inline-flex; align-items: center; gap: var(--s-3);
  color: var(--c-ink); text-decoration: none;
}
.site-header__brand img { width: 48px; height: 48px; }
.site-header__wordmark {
  display: flex; flex-direction: column; line-height: 1.1;
  font-family: var(--f-display); font-size: var(--fs-200);
}
.site-header__wordmark strong { font-weight: 800; color: var(--c-primary); }
.site-header__wordmark small { font-size: var(--fs-50); color: var(--c-mid); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

.site-nav ul {
  display: flex; gap: var(--s-5); margin: 0; padding: 0; list-style: none;
}
.site-nav a {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--fs-75);
  color: var(--c-ink);
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
}
.site-nav a:hover { color: var(--c-primary); }
.site-nav a[aria-current="page"] { color: var(--c-primary); }
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--c-accent); border-radius: 2px;
}

.site-header__actions { display: inline-flex; gap: var(--s-3); }
.site-header__actions .btn { padding: 10px 16px; }

.site-header__toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 0;
  position: relative;
}
.site-header__toggle span {
  display: block; position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--c-ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.site-header__toggle span:nth-child(1) { top: 14px; }
.site-header__toggle span:nth-child(2) { top: 21px; }
.site-header__toggle span:nth-child(3) { top: 28px; }
.site-header__toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--c-line);
  background: #fff;
  padding: var(--s-4) var(--s-5) var(--s-6);
}
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-1); }
.mobile-menu a {
  display: block; padding: 12px 0; font-family: var(--f-display); font-weight: 600;
  color: var(--c-ink); text-decoration: none; border-bottom: 1px solid var(--c-line);
}
.mobile-menu__actions { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-5); }

@media (max-width: 980px) {
  .site-nav, .site-header__actions { display: none; }
  .site-header__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header__inner { grid-template-columns: 1fr auto; min-height: 68px; }
  .site-header__brand img { width: 40px; height: 40px; }
  .mobile-menu:not([hidden]) { display: block; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(41, 128, 185, 0.45), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(230, 126, 34, 0.18), transparent 55%),
    linear-gradient(160deg, #0E3A5B 0%, #134260 55%, #1A5276 100%);
  isolation: isolate;
}
/* Subtle grid texture */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 -1px 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
  align-items: center;
  padding: var(--s-9) 0 calc(var(--s-9) + 40px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--f-display); font-size: var(--fs-50); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #A8D8B9;
}
.hero__eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 2px; background: var(--c-secondary-light);
}
.hero h1 { color: #fff; margin-top: var(--s-3); }
.hero h1 em {
  font-style: normal;
  color: var(--c-accent);
  font-family: var(--f-display);
  position: relative;
}
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 10px;
  background: rgba(230, 126, 34, 0.22); z-index: -1;
}
.hero__lead {
  font-size: var(--fs-200);
  color: #D8E3EC;
  max-width: 52ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.14);
  font-family: var(--f-display); font-size: var(--fs-75); font-weight: 600;
}
.hero__trust span { display: inline-flex; align-items: center; gap: var(--s-2); color: #E8EEF3; }
.hero__trust svg { color: var(--c-secondary-light); flex: 0 0 auto; }

.hero__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
  transform: rotate(0.6deg);
  aspect-ratio: 4 / 3;
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero__badge {
  position: absolute; left: -12px; top: 32px;
  background: var(--c-accent); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: var(--fs-75);
  padding: 10px 16px 10px 20px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--sh-2);
  transform: rotate(-1.2deg);
}
.hero__badge small {
  display: block; font-weight: 500; font-size: var(--fs-50); letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.85;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); padding: var(--s-7) 0 var(--s-8); }
  .hero__card { aspect-ratio: 4 / 3; transform: none; }
  .hero__badge { left: 0; }
}

/* ---------- 8. Service cards ---------- */
.services-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.service-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--c-ink);
  transition: transform .18s ease, box-shadow .22s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--c-primary-light); }
.service-card__img { aspect-ratio: 16 / 10; background: var(--c-soft); overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { margin: 0 0 var(--s-2); }
.service-card__body p { color: var(--c-mid); margin: 0 0 var(--s-4); font-size: var(--fs-75); }
.service-card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-weight: 700; font-size: var(--fs-75);
  color: var(--c-primary);
}
.service-card__link::after { content: "→"; transition: transform .18s ease; }
.service-card:hover .service-card__link::after { transform: translateX(3px); }

/* ---------- 9. Trust / about strip ---------- */
.about-strip {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-8); align-items: center;
}
.about-strip__image {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--sh-2);
}
.about-strip__image img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.about-strip__sig {
  position: absolute; right: -12px; bottom: 24px;
  background: #fff; padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md); box-shadow: var(--sh-2);
  font-family: var(--f-display); font-size: var(--fs-50); color: var(--c-mid);
  max-width: 60%;
}
.about-strip__sig strong { color: var(--c-ink); font-weight: 700; }
.about-strip__body h2 { margin-bottom: var(--s-4); }
.signature {
  margin: var(--s-5) 0 0;
  display: flex; align-items: center; gap: var(--s-4);
}
.signature--center {
  justify-content: center;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.signature--center figcaption { text-align: center; }
.signature img {
  width: auto; height: 64px;
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}
.signature figcaption {
  font-family: var(--f-display); font-size: var(--fs-75); color: var(--c-mid);
}
.signature figcaption strong { color: var(--c-ink); font-weight: 700; }

.about-strip__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
}
.about-strip__stat { }
.about-strip__stat strong {
  display: block;
  font-family: var(--f-display); font-size: var(--fs-500); font-weight: 800;
  color: var(--c-primary); letter-spacing: -0.02em;
}
.about-strip__stat span { font-size: var(--fs-50); color: var(--c-mid); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
@media (max-width: 880px) {
  .about-strip { grid-template-columns: 1fr; gap: var(--s-5); }
  .about-strip__image { aspect-ratio: 4 / 3; }
}

/* ---------- 10. STORING strip ---------- */
.storing {
  background: linear-gradient(100deg, var(--c-accent) 0%, #D16A0F 100%);
  color: #fff;
  padding: var(--s-5) 0;
}
.storing__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); flex-wrap: wrap;
}
.storing__text { display: flex; align-items: center; gap: var(--s-4); }
.storing__text p { margin: 0; font-size: var(--fs-200); max-width: 60ch; }
.storing__text strong { font-family: var(--f-display); font-weight: 800; }
.storing__pulse {
  display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; flex: 0 0 14px;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.storing .btn--urgent { background: #fff; color: var(--c-accent-dark); border-color: #fff; }
.storing .btn--urgent:hover { background: #FFF5EB; color: var(--c-accent-dark); }

/* ---------- 11. CTA block ---------- */
.cta-block { padding: var(--s-8) 0; background: var(--c-softer); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.cta-block__inner {
  display: grid; grid-template-columns: 1.2fr auto; gap: var(--s-6); align-items: center;
}
.cta-block__text h2 { margin-bottom: var(--s-2); }
.cta-block__text p { color: var(--c-mid); margin: 0; max-width: 56ch; }
.cta-block__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
@media (max-width: 720px) {
  .cta-block__inner { grid-template-columns: 1fr; }
}

/* ---------- 12. FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: var(--s-2); max-width: 780px; }
.faq details {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq details[open] { border-color: var(--c-primary-light); box-shadow: var(--sh-1); }
.faq summary {
  list-style: none; cursor: pointer;
  font-family: var(--f-display); font-weight: 700; font-size: var(--fs-200);
  display: flex; justify-content: space-between; gap: var(--s-4);
  color: var(--c-ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 700; font-size: 1.5rem; color: var(--c-primary);
  transition: transform .18s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: var(--s-3); color: var(--c-mid); }

/* ---------- 13. Footer ---------- */
.site-footer {
  background: var(--c-primary-dark);
  color: #C3D2DE;
  padding: var(--s-9) 0 var(--s-5);
  margin-top: var(--s-9);
}
.site-footer__grid {
  display: grid; gap: var(--s-6);
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  margin-bottom: var(--s-7);
}
.site-footer__brand img { width: 56px; height: 56px; margin-bottom: var(--s-3); }
.site-footer__name { font-family: var(--f-display); font-size: var(--fs-300); color: #fff; margin: 0 0 var(--s-2); }
.site-footer__name strong { color: var(--c-secondary-light); font-weight: 800; }
.site-footer__tag { color: #C3D2DE; margin: 0; font-size: var(--fs-75); }
.site-footer h3 {
  font-size: var(--fs-75); text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; font-weight: 700; margin: 0 0 var(--s-4);
}
.link-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.link-list a { color: #C3D2DE; text-decoration: none; }
.link-list a:hover { color: #fff; text-decoration: underline; }
.site-footer__bottom {
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #90A4B8;
}
@media (max-width: 820px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ---------- 14. Mobile sticky bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: #fff;
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -8px 24px rgba(28, 40, 51, 0.06);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px;
  border-radius: var(--r-md);
  font-family: var(--f-display); font-weight: 700; font-size: var(--fs-75);
  text-decoration: none;
}
.mobile-bar__btn--call  { background: var(--c-secondary); color: #fff; }
.mobile-bar__btn--quote { background: var(--c-primary);   color: #fff; }
@media (max-width: 720px) { .mobile-bar { display: flex; } }

/* ---------- 15. Forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-4); }
.field label {
  font-family: var(--f-display); font-weight: 600; font-size: var(--fs-75); color: var(--c-ink);
}
.label-opt { color: var(--c-mid); font-weight: 500; font-size: var(--fs-50); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--f-body); font-size: var(--fs-100);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff; color: var(--c-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--c-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.15);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--c-error);
  background: #FDF2F1;
}
.field .helper, .helper { font-size: var(--fs-50); color: var(--c-mid); }
.field-error {
  color: var(--c-error);
  font-size: var(--fs-50); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.field-error::before {
  content: "⚠"; font-size: var(--fs-75); line-height: 1;
}
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4);
}
@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
}

/* Honeypot field — visible to bots, hidden from people */
.hp-field {
  position: absolute !important;
  left: -10000px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* Alerts */
.form-alert {
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  border: 1.5px solid transparent;
}
.form-alert strong { display: block; font-family: var(--f-display); font-weight: 700; margin-bottom: 4px; }
.form-alert p { margin: 0; }
.form-alert--success { background: #E8F6EE; border-color: var(--c-success); color: #1C5E38; }
.form-alert--error   { background: #FDF2F1; border-color: var(--c-error);   color: #7A1F16; }

.form-submit { display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap; margin-top: var(--s-3); }
.form-submit .helper { max-width: 36ch; margin: 0; }

/* Contact page layout */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s-8);
  align-items: start;
}
.contact-info h2, .contact-form h2 {
  margin-top: 0;
}
.contact-info__block {
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--c-line);
}
.contact-info__block:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-info__block h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: var(--fs-50); color: var(--c-primary);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0 0 var(--s-2);
}
.contact-info__block p { margin: 0 0 var(--s-2); }
.contact-info__block p a { font-weight: 600; font-size: var(--fs-200); color: var(--c-ink); text-decoration: none; }
.contact-info__block p a:hover { color: var(--c-primary); text-decoration: underline; }
.contact-info__block .helper { display: block; font-size: var(--fs-50); color: var(--c-mid); margin-top: 2px; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- 16. Service-page specific blocks ---------- */
.page-hero {
  padding: var(--s-7) 0 var(--s-7);
  background:
    linear-gradient(140deg, rgba(19, 66, 96, 0.96) 0%, rgba(26, 82, 118, 0.86) 100%);
  color: #fff;
}
.page-hero__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-7); align-items: center;
}
.breadcrumb {
  display: flex; gap: var(--s-2); font-size: var(--fs-50); color: #B8CAD9;
  margin-bottom: var(--s-4); flex-wrap: wrap;
}
.breadcrumb a { color: #B8CAD9; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span[aria-current] { color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero p.lead { color: #D8E3EC; }
.page-hero__image {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--sh-3);
}
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .page-hero__grid { grid-template-columns: 1fr; }
}

.two-col {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s-8); align-items: start;
}
.two-col--reverse { grid-template-columns: 1fr 1.3fr; }
.two-col__media img { border-radius: var(--r-lg); box-shadow: var(--sh-2); }
@media (max-width: 880px) {
  .two-col, .two-col--reverse { grid-template-columns: 1fr; gap: var(--s-5); }
}

.check-list { list-style: none; padding: 0; margin: var(--s-4) 0; display: grid; gap: var(--s-2); }
.check-list li {
  position: relative; padding-left: 32px; color: var(--c-ink);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-secondary) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
}

.steps {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.step {
  padding: var(--s-5);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-display); font-weight: 800; font-size: var(--fs-500);
  color: var(--c-primary-light); letter-spacing: -0.02em;
  line-height: 1; display: block; margin-bottom: var(--s-3);
}
.step h3 { margin: 0 0 var(--s-2); font-size: var(--fs-200); }
.step p  { margin: 0; color: var(--c-mid); font-size: var(--fs-75); }

.callout {
  border-left: 4px solid var(--c-accent);
  background: #FFF8F0;
  padding: var(--s-4) var(--s-5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--s-5) 0;
}
.callout strong { color: var(--c-accent-dark); }

/* Village chips (werkgebied) */
.village-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--s-2);
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.village-grid li {
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: var(--f-display); font-weight: 600; font-size: var(--fs-75);
  color: var(--c-ink);
  transition: border-color .18s ease, transform .12s ease, box-shadow .18s ease;
  position: relative;
  padding-left: 38px;
}
.village-grid li::before {
  content: ""; position: absolute; left: 14px; top: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-secondary); transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(30, 132, 73, 0.15);
}
.village-grid--secondary li::before {
  background: var(--c-primary-light);
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.15);
}
.village-grid li:hover { border-color: var(--c-primary-light); transform: translateY(-1px); box-shadow: var(--sh-1); }

.price-hint {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: var(--c-soft); color: var(--c-ink);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 600; font-size: var(--fs-50);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .storing__pulse { animation: none; }
}
