/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
  --green:       #4A5240;
  --green-hover: #5C6652;
  --cream:       #F2EEE4;
  --white:       #FAF8F4;
  --gold:        #B08D5B;
  --gold-light:  #C9A878;
  --dark:        #3A3A35;
  --dark-muted:  rgba(58, 58, 53, 0.72);

  --shadow-xs:   0 2px 8px  rgba(58, 58, 53, 0.06);
  --shadow-sm:   0 4px 20px rgba(58, 58, 53, 0.08);
  --shadow-md:   0 8px 36px rgba(58, 58, 53, 0.13);

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:    0.28s;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --font-body:   'Lora', Georgia, serif;

  --max-w: 1160px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--dark); background: var(--cream); line-height: 1.75; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; }

/* =====================================================
   PAPER / LINNEN TEXTUUR + FIJNE KORREL
   Subtiele, ambachtelijke achtergrond over de hele site
   ===================================================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  /* Boven de content, onder de navbar (z-index 200); klikken gaan eronderdoor */
  z-index: 60;
  pointer-events: none;
  /* fijne linnen-weave via gekruiste lijnen + zachte korrel */
  background-image:
    repeating-linear-gradient(45deg,  rgba(58,58,53,0.016) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-45deg, rgba(58,58,53,0.016) 0 1px, transparent 1px 4px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 5px 5px, 5px 5px, 160px 160px;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

/* =====================================================
   COLOUR HELPERS
   ===================================================== */
.c-green     { color: var(--green); }
.c-gold      { color: var(--gold);  }
.c-gold-light { color: var(--gold-light); }

/* =====================================================
   SHARED LAYOUT
   ===================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section header centred */
.sec-header { text-align: center; margin-bottom: 4rem; }
.sec-overline {
  display: block;
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.2;
}
.sec-rule {
  width: 52px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.7s var(--ease) 0.2s;
}
.sec-rule--left { margin-left: 0; transform-origin: left; }
/* De gouden onderstreping tekent zich uit zodra de kop in beeld komt */
.fade-in.visible .sec-rule { transform: scaleX(1); }

/* Primary button — met gouden randaccent dat inloopt + zachte sheen */
.btn-primary {
  position: relative;
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 0 0 0 rgba(201, 168, 120, 0);
  transition: background var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
/* sierlijke lichtveeg die overheen loopt bij hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease);
}
.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1.5px var(--gold-light);
}
.btn-primary:hover::after { left: 130%; }

/* Script gold helper */
.script-gold {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--gold);
}
.script-gold-md {
  display: block;
  font-family: var(--font-script);
  font-size: 1.65rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

/* =====================================================
   FADE-IN SCROLL ANIMATION
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid rgba(176, 141, 91, 0.18);
  box-shadow: var(--shadow-xs);
  transition: background var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
/* Krimpt subtiel en krijgt een zachte, doorschijnende achtergrond bij scrollen */
.navbar.scrolled {
  background: rgba(250, 248, 244, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 4px 22px rgba(58, 58, 53, 0.1);
  border-color: rgba(176, 141, 91, 0.28);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: height var(--t) var(--ease);
}
.navbar.scrolled .nav-container { height: 58px; }
.logo-script,
.logo-top { transition: font-size var(--t) var(--ease), opacity var(--t) var(--ease); }
.navbar.scrolled .logo-script { font-size: 1.5rem; }
.navbar.scrolled .logo-top { opacity: 0.4; }

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1; gap: 0; }
.logo-top {
  font-family: var(--font-serif);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.55;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 1.75rem;
  line-height: 1;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-link {
  font-size: 0.88rem;
  color: var(--dark);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--t) var(--ease);
}
.nav-link:hover        { color: var(--green); }
.nav-link:hover::after,
.nav-link.active::after { width: 55%; }
.nav-link.active       { color: var(--green); }

/* CTA button */
.nav-cta {
  margin-left: 0.6rem;
  background: var(--green);
  color: var(--white) !important;
  padding: 0.58rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.nav-cta:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1.5px var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: var(--cream);
  padding: 5rem 2rem 4.5rem;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero text */
.hero-overline {
  display: block;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 0;
}
.hero-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.hero-title-script {
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  margin-top: 0.05em;
}

/* Needle decoration */
.needle-deco {
  max-width: 230px;
  margin: 1.1rem 0 1.4rem;
  opacity: 0.95;
  transition: transform 0.5s var(--ease);
}
.needle-deco-img { width: 100%; height: auto; }
/* speels: de naald & draad reageren zacht op hover */
.needle-deco:hover { transform: translateX(5px) rotate(-0.6deg); }

/* De draad "spant zich op" (clip-reveal van links naar rechts),
   alsof het garen vanaf het klosje wordt uitgetrokken */
.needle-deco-img {
  clip-path: inset(0 100% 0 0);
  animation: threadSpan 1.6s var(--ease) 0.95s forwards;
}
@keyframes threadSpan { to { clip-path: inset(0 0 0 0); } }

/* =====================================================
   HERO — SIERLIJKE LAAD-ANIMATIE
   Titel, script-tekst en accenten komen gestaggerd binnen
   ===================================================== */
.hero-overline,
.hero-title-serif,
.hero-title-script,
.hero-sub,
.hero-dm,
.hero-socials {
  opacity: 0;
  animation: heroRise 0.9s var(--ease) both;
}
.hero-overline     { animation-delay: 0.15s; }
.hero-title-serif  { animation-delay: 0.30s; }
.hero-title-script { animation-delay: 0.45s; }
.hero-sub          { animation-delay: 0.85s; }
.hero-dm           { animation-delay: 1.00s; }
.hero-socials      { animation-delay: 1.15s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Needle krijgt alléén een opacity-fade, zodat de transform vrij blijft
   voor de speelse hover-beweging (anders overschrijft de fill-mode die) */
.needle-deco {
  opacity: 0;
  animation: heroFade 0.9s var(--ease) 0.70s both;
}
@keyframes heroFade { to { opacity: 0.9; } }

.hero-sub {
  font-size: 1.08rem;
  max-width: 440px;
  margin-bottom: 1.1rem;
  line-height: 1.75;
}
.hero-sub strong { color: var(--green); font-weight: 600; }

.hero-dm {
  font-size: 0.93rem;
  margin-bottom: 1.8rem;
  color: var(--dark-muted);
}

/* Social icons row */
.hero-socials { display: flex; gap: 0.7rem; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  transition: background var(--t), color var(--t), transform var(--t);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero image — organische uitsnede met donkergroene boog erachter */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  --arch-radius: 48% 48% 12% 12% / 32% 32% 8% 8%;
}
.hero-arch-bg {
  position: absolute;
  top: -22px; left: -20px;
  right: 18px; bottom: 16px;
  background: var(--green);
  border-radius: var(--arch-radius);
  z-index: 0;
  will-change: transform;
}
/* Fijne dubbele rand-accent in goud rond de boog */
.hero-arch-bg::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1.5px solid rgba(201, 168, 120, 0.45);
  border-radius: var(--arch-radius);
}
.hero-img-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1448 / 1086;
  border-radius: var(--arch-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  will-change: transform;
}
.hero-photo,
.hero-img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-photo {
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transform-origin: center;
  /* Zachte inzoom + fade bij laden */
  animation: heroPhotoIn 1.9s var(--ease) both;
}
@keyframes heroPhotoIn {
  from { opacity: 0; transform: scale(1.1); }
  to   { opacity: 1; transform: scale(1); }
}
/* Placeholder ligt eronder; alleen zichtbaar als de foto ontbreekt */
.hero-img-fallback { z-index: 0; }
.hero-img-fallback svg { width: 100%; height: 100%; object-fit: cover; }
.hero-img-frame.img-missing .hero-photo { display: none; }

/* =====================================================
   SERVICES BAR
   ===================================================== */
.services-bar {
  background: var(--green);
  padding: 2.25rem 2rem;
}
.services-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex: 1;
  min-width: 190px;
}
.svc-icon-ring {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border: 1.5px solid rgba(176, 141, 91, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.svc-icon-ring svg { width: 22px; height: 22px; }

.svc-text { display: flex; flex-direction: column; gap: 0.15rem; }
.svc-text strong {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--white);
  font-weight: 600;
}
.svc-text span {
  font-size: 0.78rem;
  color: rgba(242, 238, 228, 0.7);
}

.svc-sep {
  width: 1px; height: 48px;
  background: rgba(176, 141, 91, 0.28);
  flex-shrink: 0;
}

.svc-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid rgba(176, 141, 91, 0.38);
  border-radius: var(--r-md);
  min-width: 155px;
  flex-shrink: 0;
}
.svc-tagline-script {
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--gold);
  line-height: 1;
}
.svc-tagline-sub {
  font-size: 0.75rem;
  color: rgba(242, 238, 228, 0.65);
  margin-top: 0.2rem;
}

/* =====================================================
   WAT WE DOEN
   ===================================================== */
.wat-we-doen {
  background: var(--cream);
  padding: 6rem 0;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.dienst-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.85rem;
  border: 1px solid rgba(176, 141, 91, 0.13);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
/* gouden randaccent die bovenaan inloopt bij hover */
.dienst-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.dienst-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176, 141, 91, 0.32);
}
.dienst-card:hover::before { transform: scaleX(1); }
/* het ronde icoon kleurt mee bij hover op de kaart */
.dienst-card .card-icon-wrap {
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.dienst-card:hover .card-icon-wrap {
  background: rgba(176, 141, 91, 0.18);
  color: var(--green);
}
.card-icon-wrap {
  width: 54px; height: 54px;
  background: rgba(176, 141, 91, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.card-icon-wrap svg { width: 23px; height: 23px; }

.dienst-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
}
.dienst-card p {
  font-size: 0.915rem;
  color: var(--dark-muted);
  line-height: 1.78;
}
.card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.4rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.card-link:hover { color: var(--green); border-bottom-color: var(--green); }

/* =====================================================
   OVER ONS
   ===================================================== */
.over-ons {
  background: var(--white);
  padding: 6rem 0;
}
.over-ons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image column */
.over-ons-img-col { position: relative; }
.over-ons-img-frame {
  position: relative;
  aspect-ratio: 1448 / 1086;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.over-ons-photo,
.over-ons-img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.over-ons-photo { object-fit: cover; object-position: center; z-index: 1; }
.over-ons-img-fallback { z-index: 0; }
.over-ons-img-fallback svg { width: 100%; height: 100%; }
.over-ons-img-frame.img-missing .over-ons-photo { display: none; }
.over-ons-img-col::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  background: var(--gold);
  opacity: 0.14;
  border-radius: var(--r-lg);
  z-index: 0;
}

/* Text column */
.over-ons-text-col .sec-overline { display: block; margin-bottom: 0.35rem; }
.over-ons-text-col .sec-title    { text-align: left; }
.over-ons-text-col .sec-rule     { margin-bottom: 1.6rem; }

.over-ons-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--green);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.over-ons-text-col p {
  font-size: 0.94rem;
  color: var(--dark-muted);
  line-height: 1.8;
  margin-bottom: 0.95rem;
}
.over-ons-text-col .btn-primary { margin-top: 0.75rem; }

/* =====================================================
   WERKWIJZE
   ===================================================== */
.werkwijze {
  background: var(--cream);
  padding: 6rem 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Dashed connector line behind numbers — tekent zich af van links naar rechts */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%; right: 12.5%;
  height: 1.5px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s var(--ease) 0.2s;
}
.steps-grid.line-draw::before { transform: scaleX(1); }

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 54px; height: 54px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 7px var(--cream);
  transition: transform var(--t) var(--ease),
              background var(--t) var(--ease),
              color var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.step:hover .step-num {
  transform: translateY(-4px);
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 7px var(--cream), 0 10px 22px rgba(176, 141, 91, 0.32);
}
.step-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.65rem;
}
.step-body p {
  font-size: 0.89rem;
  color: var(--dark-muted);
  line-height: 1.75;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-sec {
  background: var(--white);
  padding: 6rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
.form-group label {
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid rgba(58, 58, 53, 0.18);
  border-radius: var(--r-sm);
  padding: 0.72rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(58, 58, 53, 0.38); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 91, 0.13);
}
.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error {
  border-color: #b94040;
}

.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A3A35' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 15px;
  padding-right: 2.5rem;
}

.field-err {
  min-height: 1.1em;
  font-size: 0.78rem;
  color: #b94040;
}

.btn-submit {
  position: relative;
  align-self: flex-start;
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 2.1rem;
  border-radius: var(--r-pill);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.btn-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease);
}
.btn-submit:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1.5px var(--gold-light);
}
.btn-submit:hover::after { left: 130%; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Success message */
.form-success {
  display: none;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(74, 82, 64, 0.07);
  border: 1px solid rgba(74, 82, 64, 0.22);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  color: var(--green);
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.form-success p { font-size: 0.92rem; font-weight: 500; line-height: 1.6; }

/* Contact info card */
.contact-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  border: 1px solid rgba(176, 141, 91, 0.18);
}
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.65rem;
}
.contact-intro {
  font-size: 0.915rem;
  color: var(--dark-muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.contact-socials { display: flex; flex-direction: column; }
.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(176, 141, 91, 0.18);
  color: var(--green);
  font-size: 0.915rem;
  font-weight: 500;
  transition: color var(--t), gap var(--t) var(--ease);
}
.contact-social-link:last-child { border-bottom: none; }
.contact-social-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-social-link:hover { color: var(--gold); gap: 1.1rem; }

.card-divider {
  border: none;
  border-top: 1px solid rgba(176, 141, 91, 0.22);
  margin: 1.4rem 0;
}

.contact-aside {
  font-size: 0.875rem;
  color: var(--dark-muted);
  line-height: 1.72;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--green);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(176, 141, 91, 0.22);
}

.footer-logo-block { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-logo-top {
  font-family: var(--font-serif);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
}
.footer-logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1;
}
.footer-tagline {
  font-size: 0.83rem;
  font-style: italic;
  color: rgba(250, 248, 244, 0.48);
  margin-top: 0.4rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 0.2rem;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(250, 248, 244, 0.68);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--gold); }

.footer-socials-block { padding-top: 0.2rem; }
.footer-socials-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.45);
  margin-bottom: 0.85rem;
}
.footer-socials { display: flex; gap: 0.65rem; }
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(176, 141, 91, 0.38);
  border-radius: 50%;
  color: rgba(250, 248, 244, 0.65);
  transition: border-color var(--t), color var(--t);
}
.footer-social-btn svg { width: 15px; height: 15px; }
.footer-social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.35);
  padding: 1.5rem 0 0.5rem;
}

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 0 1.5rem;
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.3);
  transition: color var(--t);
}
.footer-credit img { width: 14px; height: 14px; opacity: 0.85; }
.footer-credit:hover { color: var(--gold); }

/* =====================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .hero-inner  { gap: 2.5rem; }
  .cards-grid  { grid-template-columns: 1fr 1fr; }
  .over-ons-grid { gap: 3rem; }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  .steps-grid::before { display: none; }

  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-logo-block { grid-column: 1 / -1; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {

  /* Hamburger */
  .hamburger { display: flex; }

  /* Slide-down mobile menu */
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0;
    border-bottom: 1px solid rgba(176, 141, 91, 0.18);
    box-shadow: 0 12px 28px rgba(58, 58, 53, 0.1);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.32s var(--ease), opacity 0.32s var(--ease), visibility 0.32s;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-link {
    font-size: 1rem;
    padding: 0.8rem 0.4rem;
    border-bottom: 1px solid rgba(176, 141, 91, 0.11);
    border-radius: 0;
  }
  .nav-link::after { display: none; }
  .nav-cta {
    margin: 0.9rem 0 0;
    text-align: center;
    padding: 0.85rem;
    border-radius: var(--r-pill);
    display: block;
  }

  /* Hero */
  .hero { padding: 3rem 1.5rem 3.5rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.75rem; }
  .hero-image-wrap { order: -1; max-width: 340px; margin: 0 auto; }
  .hero-img-frame { max-width: none; }

  /* Services bar */
  .services-bar-inner { flex-direction: column; gap: 1.4rem; }
  .svc-sep { width: 100%; height: 1px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* Over ons */
  .over-ons-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Werkwijze */
  .steps-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logo-block { grid-column: auto; }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ===================================================== */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 2.5rem 1.25rem 3rem; }
  .hero-title-script { font-size: 3.2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .services-bar { padding: 2rem 1.25rem; }
  .wat-we-doen,
  .over-ons,
  .werkwijze,
  .contact-sec { padding: 4.5rem 0; }
}

/* =====================================================
   PREFERS-REDUCED-MOTION
   Alle bewegende effecten uit; alles direct in eindstand
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in            { opacity: 1 !important; transform: none !important; }
  .sec-rule           { transform: scaleX(1) !important; }
  .steps-grid::before { transform: scaleX(1) !important; }
  .needle-deco-img          { clip-path: none !important; }
  .hero-photo {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-overline, .hero-title-serif, .hero-title-script,
  .needle-deco, .hero-sub, .hero-dm, .hero-socials { opacity: 1 !important; }
}
