/* ============================================================
   MAAIKE BRUGGELING PHOTOGRAPHY — v8
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --offwhite: #F5F2EC; --sand: #E8DEC8; --sand-mid: #D4C9A8;
  --terracotta: #C4714A; --terra-light: #E8C4AD; --terra-pale: #F4E4D8;
  --olive: #7A8B5E; --slate: #5A5E54; --dark: #2C2A24; --dark-mid: #3E3B34;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
body { background: var(--offwhite); color: var(--dark); font-family: var(--sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
/* Neutraliseer ALLE WordPress wrappers die breedte beperken */
.wp-site-blocks,
.site, #page, #content, .site-content, .site-primary,
.entry-content, .post-content-wrap,
.wp-block-post-content,
.wp-block-group,
.is-layout-constrained > *,
.is-layout-flow > * {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, padding .4s;
}
.site-header.scrolled {
  background: rgba(245,242,236,.96); backdrop-filter: blur(12px);
  padding: .75rem 3rem; box-shadow: 0 1px 0 rgba(44,42,36,.08);
}
.site-logo { text-decoration: none; display: inline-block; position: relative; height: 90px; width: 360px; flex-shrink: 0; transition: height .4s, width .4s; }
.site-logo img { height: 90px; width: auto; position: absolute; top: 0; left: 0; transition: opacity .4s, height .4s; }
.site-header.scrolled .site-logo,
.site-header.no-hero .site-logo { height: 64px; width: 280px; }
.site-header.scrolled .site-logo img,
.site-header.no-hero .site-logo img { height: 64px; }
.logo-wit { opacity: 1; }
.logo-donker { opacity: 0; }
.site-header.scrolled .logo-wit,
.site-header.no-hero .logo-wit { opacity: 0; }
.site-header.scrolled .logo-donker,
.site-header.no-hero .logo-donker { opacity: 1; }
.site-header.no-hero { background: rgba(245,242,236,.96); padding: .85rem 3rem; box-shadow: 0 1px 0 rgba(44,42,36,.08); }

/* Nav items — verticaal gecentreerd t.o.v. elkaar via align-items:center op de ul */
.main-navigation { display: flex; gap: 1.75rem; align-items: center; list-style: none; }
.main-navigation > li { display: flex; align-items: center; }
.main-navigation a { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,242,236,.88); text-decoration: none; font-weight: 400; transition: color .3s; position: relative; white-space: nowrap; line-height: 1; }
.main-navigation a::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:1px; background:var(--terracotta); transition:width .3s; }
.main-navigation a:hover::after { width: 100%; }
.site-header.scrolled .main-navigation a,
.site-header.no-hero .main-navigation a { color: var(--slate); }
.site-header.scrolled .main-navigation a:hover,
.site-header.no-hero .main-navigation a:hover { color: var(--dark); }

.nav-dropdown { position: relative; display: flex; align-items: center; }
/* Toggle heeft zelfde lijn-hoogte als de anchor-links */
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; background: none; border: none; font-family: var(--sans); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,242,236,.88); padding: 0; font-weight: 400; transition: color .3s; white-space: nowrap; line-height: 1; }
.site-header.scrolled .nav-dropdown-toggle,
.site-header.no-hero .nav-dropdown-toggle { color: var(--slate); }
.dropdown-chevron { display: inline-block; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; margin-left: 2px; }
.nav-dropdown.open .dropdown-chevron { transform: rotate(-135deg) translateY(-2px); }
.dropdown-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px); background: var(--offwhite); border: .5px solid var(--sand-mid); border-radius: 8px; padding: .5rem 0; min-width: 200px; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; box-shadow: 0 8px 32px rgba(44,42,36,.1); }
.nav-dropdown.open .dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: .55rem 1.25rem; color: var(--slate) !important; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; transition: color .2s, background .2s; }
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { color: var(--terracotta) !important; background: var(--terra-pale); }
.nav-cta { font-size: .72rem !important; letter-spacing: .1em !important; text-transform: uppercase !important; color: var(--offwhite) !important; background: var(--terracotta); padding: .5rem 1.25rem !important; border-radius: 999px; transition: background .3s !important; white-space: nowrap; }
.nav-cta:hover { background: var(--dark) !important; }
.nav-cta::after { display: none !important; }

/* ── MOBILE HAMBURGER ── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--offwhite); transition: background .4s, transform .3s, opacity .3s; border-radius: 2px; }
.site-header.scrolled .nav-hamburger span,
.site-header.no-hero .nav-hamburger span { background: var(--dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile nav: z-index HOGER dan header zodat die er niet overheen valt */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(245,242,236,.98); backdrop-filter: blur(16px); flex-direction: column; align-items: center; justify-content: flex-start; gap: .75rem; text-align: center; overflow-y: auto; padding: 3.5rem 1.5rem 3rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav button { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; font-style: italic; color: var(--dark); text-decoration: none; background: none; border: none; cursor: pointer; display: block; transition: color .2s; }
.mobile-nav a:hover { color: var(--terracotta); }
.mobile-nav .mobile-cta { font-family: var(--sans) !important; font-size: .8rem !important; font-style: normal !important; letter-spacing: .1em; text-transform: uppercase; background: var(--terracotta) !important; color: var(--offwhite) !important; padding: .75rem 1.75rem; border-radius: 999px; margin-top: .5rem; }
.mobile-nav .mobile-sub { font-size: 1.1rem !important; color: var(--slate) !important; }
.mobile-nav .mobile-divider { width: 40px; height: 1px; background: var(--sand-mid); margin: .25rem 0; }

/* ── HERO — ALTIJD FULL HEIGHT ── */
.hero {
  /* Gebruik 100dvh voor moderne browsers, fallback naar 100vh */
  height: 100dvh;
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; overflow: hidden; }
.hero-slide.active { opacity: 1; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; image-rendering: high-quality; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,42,36,.68) 0%, rgba(44,42,36,.1) 55%, transparent); }
.hero-content { position: relative; z-index: 2; padding: 0 3rem 5rem; max-width: 740px; }
.hero-eyebrow { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 1.25rem; font-weight: 400; opacity: 0; animation: fadeUp .8s .3s forwards; }
.hero-title { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.05; color: var(--offwhite); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .8s .5s forwards; }
.hero-title em { font-style: italic; color: var(--terra-light); }
.hero-subtitle { font-size: 1rem; color: rgba(245,242,236,.82); font-weight: 300; max-width: 500px; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp .8s .7s forwards; line-height: 1.85; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .9s forwards; }
.hero-dots { position: absolute; bottom: 2rem; right: 3rem; display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 6px; height: 6px; border-radius: 999px; background: rgba(245,242,236,.4); cursor: pointer; transition: background .3s, width .3s; }
.hero-dot.active { background: var(--offwhite); width: 24px; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3; opacity: 0; animation: fadeIn 1s 1.5s forwards; }
.hero-scroll span { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,242,236,.6); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(245,242,236,.6), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ── PAGE HERO ── */
.page-hero { padding: 9rem 3rem 5rem; background: var(--dark); text-align: center; }
.page-hero .page-hero-label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 1rem; font-weight: 500; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.1; color: var(--offwhite); margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--terra-light); }
.page-hero p { color: rgba(245,242,236,.7); font-size: 1rem; font-weight: 300; max-width: 560px; margin: 0 auto; }

/* ── INTRO STRIP ── */
.intro-strip { background: var(--dark); padding: 3.5rem 3rem; }
.intro-strip-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.intro-strip-left { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; line-height: 1.45; color: var(--offwhite); }
.intro-strip-left em { font-style: italic; color: var(--terra-light); display: block; font-size: 1.1em; }
.intro-strip-right { font-size: .9rem; color: rgba(245,242,236,.6); line-height: 1.85; font-weight: 300; border-left: 1px solid rgba(245,242,236,.12); padding-left: 3rem; }

/* ── COMMON ── */
.section-label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem; font-weight: 500; }
.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.1; color: var(--dark); margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--terracotta); }
.link-underline { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta); text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 2px; font-weight: 500; transition: border-color .3s; }
.link-underline:hover { border-color: var(--terracotta); }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; background: var(--terracotta); color: var(--offwhite); padding: .85rem 2rem; border-radius: 999px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background .3s, transform .2s; }
.btn-primary:hover { background: var(--dark); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; color: var(--offwhite); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; font-weight: 400; border-bottom: 1px solid rgba(245,242,236,.4); padding-bottom: 2px; transition: border-color .3s, color .3s; }
.btn-ghost:hover { border-color: var(--terra-light); color: var(--terra-light); }
.btn-dark { display: inline-flex; align-items: center; background: var(--dark); color: var(--offwhite); padding: .9rem 2.25rem; border-radius: 999px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background .3s, transform .2s; }
.btn-dark:hover { background: var(--terracotta); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; border: 1px solid var(--dark); color: var(--dark); padding: .9rem 2.25rem; border-radius: 999px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background .3s, color .3s; }
.btn-outline:hover { background: var(--dark); color: var(--offwhite); }

/* ── AANBOD HOMEPAGE ── */
.aanbod-section { background: var(--offwhite); padding: 7rem 3rem; }
.aanbod-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1200px; margin: 0 auto 4rem; }
.aanbod-intro p { color: var(--slate); font-size: 1rem; line-height: 1.85; font-weight: 300; }
.aanbod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }
.dienst-card { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 3/4; text-decoration: none; display: block; }
/* Middelste kolom (items 2 en 5) staat hoger dan de rest */
.dienst-card:nth-child(2) { margin-top: -3rem; }
.dienst-card:nth-child(5) { margin-top: -3rem; }
.dienst-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.dienst-card:hover .dienst-bg { transform: scale(1.04); }
.dienst-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,42,36,.75), transparent 60%); transition: background .4s; }
.dienst-card:hover .dienst-overlay { background: linear-gradient(to top, rgba(44,42,36,.88), rgba(44,42,36,.15)); }
.dienst-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem; color: var(--offwhite); }
.dienst-tag { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--terra-light); margin-bottom: .4rem; display: block; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.dienst-card:hover .dienst-tag { opacity: 1; transform: translateY(0); }
.dienst-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; font-style: italic; line-height: 1.2; margin-bottom: .5rem; }
.dienst-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,242,236,.7); opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s; }
.dienst-card:hover .dienst-arrow { opacity: 1; transform: translateX(0); }

/* ── PARALLAX ── */
.parallax-section { position: relative; height: 65vh; min-height: 440px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.parallax-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.parallax-overlay { position: absolute; inset: 0; background: rgba(44,42,36,.45); }
.parallax-content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 2rem; }
.parallax-content blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 300; font-style: italic; color: var(--offwhite); line-height: 1.35; margin-bottom: 1.5rem; }
.parallax-content cite { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--terra-light); font-style: normal; }

/* ── OVER MIJ ── */
.over-mij-section { background: var(--sand); display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.over-mij-image { position: relative; overflow: hidden; min-height: 560px; background: linear-gradient(160deg, #8B7355, #C4A882); }
.over-mij-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; image-rendering: high-quality; }
.over-mij-content { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.over-mij-content p { color: var(--slate); line-height: 1.9; font-weight: 300; margin-bottom: 1.25rem; font-size: 1rem; }
.over-mij-content p strong { color: var(--dark); font-weight: 500; }
.signature { font-family: var(--serif); font-size: 2.2rem; font-style: italic; color: var(--terracotta); margin-top: .5rem; margin-bottom: 1.5rem; }

/* ── WERKWIJZE ── */
.werkwijze-section { background: var(--offwhite); padding: 6rem 3rem; }
.werkwijze-inner { max-width: 1100px; margin: 0 auto; }
.werkwijze-header { text-align: center; margin-bottom: 4rem; }
.stappen { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative; }
.stap { text-align: center; padding: 0 .25rem; }
.stap-desc { font-size: .82rem; }
.stappen::before { content: ''; position: absolute; top: 1.75rem; left: calc(7.5% + 1rem); right: calc(7.5% + 1rem); height: 1px; background: var(--sand-mid); }
.stap-num { width: 3.5rem; height: 3.5rem; border-radius: 50%; border: 1px solid var(--terra-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--terracotta); position: relative; z-index: 1; background: var(--offwhite); }
.stap-title { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--dark); margin-bottom: .5rem; }
.stap-desc { font-size: .875rem; color: var(--slate); line-height: 1.7; font-weight: 300; }
.werkwijze-note { margin: 2.5rem auto 0; padding: 1.25rem 1.75rem; background: var(--terra-pale); border-radius: 6px; border-left: 3px solid var(--terra-light); font-size: .875rem; color: var(--slate); line-height: 1.7; }
.werkwijze-note strong { color: var(--terracotta); }

/* ── GALERIJ — MIXED PORTRAIT + LANDSCAPE ── */
/* Aanbod pagina galerij: mix van staand en liggend */
.aanbod-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: .75rem;
}
.aanbod-gallery-grid .gallery-item {
  overflow: hidden; border-radius: 3px; position: relative;
}
/* Breed item: 2 kolommen breed, 1 rij hoog */
.aanbod-gallery-grid .gallery-item.g-wide {
  grid-column: span 2;
}
/* Hoog item: 1 kolom breed, 2 rijen hoog */
.aanbod-gallery-grid .gallery-item.g-tall {
  grid-row: span 2;
}
.aanbod-gallery-grid .gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.aanbod-gallery-grid .gallery-item:hover img { transform: scale(1.04); }

/* Over mij galerij */
.achter-schermen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: .75rem;
}
.achter-schermen-grid .as-item {
  overflow: hidden; border-radius: 3px; position: relative;
}
.achter-schermen-grid .as-item.as-wide { grid-column: span 2; }
.achter-schermen-grid .as-item.as-tall { grid-row: span 2; }
.achter-schermen-grid .as-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.achter-schermen-grid .as-item:hover img { transform: scale(1.04); }

/* ── REVIEWS ── */
.reviews-section { background: var(--dark-mid); padding: 7rem 3rem; }
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 4rem; }
.reviews-header .section-label { color: var(--terra-light); }
.reviews-header .section-title { color: var(--offwhite); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: rgba(245,242,236,.06); border: .5px solid rgba(245,242,236,.12); border-radius: 8px; padding: 2rem; }
.review-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.star { width: 12px; height: 12px; background: var(--terracotta); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.review-text { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: rgba(245,242,236,.85); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; }
.review-author { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--terra-light); font-weight: 500; }
.review-type { font-size: .72rem; color: rgba(245,242,236,.4); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
.reviews-google-note { text-align: center; margin-top: 2rem; font-size: .8rem; color: rgba(245,242,236,.4); }
.reviews-google-note a { color: var(--terra-light); text-decoration: none; }

/* ── BLOG ── */
.blog-section { background: var(--offwhite); padding: 7rem 3rem; }
.blog-inner { max-width: 1100px; margin: 0 auto; }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; }
.blog-card { background: var(--sand); border-radius: 6px; overflow: hidden; text-decoration: none; display: block; transition: transform .3s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card:first-child .blog-img { aspect-ratio: 16/10; }
.blog-body { padding: 1.25rem; }
.blog-cat { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: .5rem; display: block; }
.blog-title { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--dark); line-height: 1.3; margin-bottom: .5rem; }
.blog-card:first-child .blog-title { font-size: 1.5rem; }
.blog-excerpt { font-size: .875rem; color: var(--slate); line-height: 1.7; font-weight: 300; }
.blog-card:not(:first-child) .blog-excerpt { display: none; }
.blog-archive { max-width: 1200px; margin: 0 auto; }
.blog-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-archive-card {
  background: var(--sand);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .3s;
}
.blog-archive-card:hover { transform: translateY(-4px); }
.blog-archive-card .blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.blog-archive-card:hover .blog-img { transform: scale(1.03); }
.blog-archive-card .blog-body { padding: 1.5rem; }
.blog-archive-card .blog-cat {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: .6rem;
  font-weight: 500;
}
.blog-archive-card .blog-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: .6rem;
}
.blog-archive-card .blog-excerpt {
  font-size: .85rem;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
}
/* Paginering */
.blog-archive .nav-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.blog-archive .nav-links a,
.blog-archive .nav-links span {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  padding: .5rem 1rem;
  border: .5px solid var(--sand-mid);
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.blog-archive .nav-links a:hover { background: var(--terracotta); color: var(--offwhite); border-color: var(--terracotta); }
.blog-archive .nav-links .current { background: var(--dark); color: var(--offwhite); border-color: var(--dark); }
/* ── SINGLE BLOGPOST — VOLLEDIGE BREEDTE ── */
.post-content img, .post-content figure { width:100%; max-width:100%; height:auto; border-radius:4px; margin:2.5rem 0; display:block; }
.post-content figcaption { font-size:.8rem; color:var(--slate); text-align:center; margin-top:-.5rem; margin-bottom:2rem; font-style:italic; }
.post-content p { margin-bottom:1.6rem; }
.post-content h2 { font-family:var(--serif); font-size:2rem; font-weight:400; color:var(--dark); margin:3.5rem 0 1.25rem; line-height:1.2; }
.post-content h3 { font-family:var(--serif); font-size:1.4rem; font-style:italic; color:var(--dark); margin:2.5rem 0 1rem; }
.post-content ul, .post-content ol { padding-left:1.5rem; margin-bottom:1.5rem; color:var(--slate); font-weight:300; line-height:1.9; }
.post-content blockquote { border-left:2px solid var(--terracotta); padding:1rem 1.5rem; margin:2rem 0; font-family:var(--serif); font-style:italic; font-size:1.15rem; color:var(--dark); background:var(--terra-pale); border-radius:0 4px 4px 0; }
.single-post-wrap { width: 100%; background: var(--offwhite); }
.single-post {
  width: 100%;
}
.single-post .post-content {
  color: var(--slate);
  line-height: 1.95;
  font-weight: 300;
  font-size: 1.05rem;
}
.single-post .post-content p { margin-bottom: 1.6rem; }
.single-post .post-content h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin: 3.5rem 0 1.25rem;
  line-height: 1.2;
}
.single-post .post-content h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
}
/* Alle afbeeldingen in post volledige breedte van de kolom */
.single-post .post-content img,
.single-post .post-content figure {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 2.5rem 0;
  display: block;
}
.single-post .post-content figcaption {
  font-size: .8rem;
  color: var(--slate);
  text-align: center;
  margin-top: -.5rem;
  margin-bottom: 2rem;
  font-style: italic;
}
/* Footer balk onderaan */
.single-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: .5px solid var(--sand-mid);
}
.single-back {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color .2s;
}
.single-back:hover { color: var(--terracotta); }

/* ── TARIEVEN ── */
.tarieven-section { background: var(--offwhite); padding: 4rem 3rem 7rem; }
.tarieven-inner { max-width: 1100px; margin: 0 auto; }
.tarieven-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.tarief-card { background: var(--offwhite); border: .5px solid var(--sand-mid); border-radius: 8px; padding: 2.5rem 2rem; display: flex; flex-direction: column; }
.tarief-card.featured { background: var(--dark); border-color: var(--dark); }
.tarief-naam { font-family: var(--serif); font-size: 1.6rem; font-style: italic; color: var(--dark); margin-bottom: .5rem; }
.tarief-card.featured .tarief-naam { color: var(--offwhite); }
.tarief-prijs { font-size: 2.5rem; font-weight: 300; color: var(--terracotta); margin-bottom: .25rem; }
.tarief-card.featured .tarief-prijs { color: var(--terra-light); }
.tarief-basis { font-size: .8rem; color: var(--slate); margin-bottom: 1.5rem; }
.tarief-card.featured .tarief-basis { color: rgba(245,242,236,.5); }
.tarief-lijst { list-style: none; margin-bottom: 2rem; flex: 1; }
.tarief-lijst li { font-size: .9rem; color: var(--slate); padding: .5rem 0; border-bottom: .5px solid var(--sand-mid); font-weight: 300; display: flex; align-items: center; gap: .5rem; }
.tarief-card.featured .tarief-lijst li { color: rgba(245,242,236,.7); border-color: rgba(245,242,236,.1); }
.tarief-lijst li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); flex-shrink: 0; }
.tarief-note { max-width: 680px; margin: 0 auto; text-align: center; font-size: .9rem; color: var(--slate); line-height: 1.8; font-weight: 300; }
.tarieven-divider { margin: 4rem 0; border: none; border-top: .5px solid var(--sand-mid); }

/* ── CONTACT ── */
.contact-section { background: var(--offwhite); padding: 4rem 3rem 7rem; }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: end; }
.contact-detail { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; font-size: .9rem; color: var(--slate); }
.contact-detail a { color: var(--terracotta); text-decoration: none; }
.contact-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.contact-social a { width: 40px; height: 40px; border-radius: 50%; border: .5px solid var(--sand-mid); display: flex; align-items: center; justify-content: center; color: var(--slate); text-decoration: none; font-size: .75rem; transition: border-color .3s, color .3s; }
.contact-social a:hover { border-color: var(--terracotta); color: var(--terracotta); }
/* ── CONTACT FORM — ELEGANTE UNDERLINE STIJL ── */
.wpcf7-form label,
.contact-section form label {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .5rem;
  font-weight: 500;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea,
.contact-section form input:not([type="submit"]):not([type="checkbox"]),
.contact-section form select,
.contact-section form textarea {
  width: 100%;
  padding: .65rem 0 .85rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand-mid);
  border-radius: 0;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--dark);
  font-weight: 300;
  transition: border-color .35s;
  margin-bottom: 2rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.wpcf7-form select,
.contact-section form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5E54' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  padding-right: 1.75rem;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder,
.contact-section form input::placeholder,
.contact-section form textarea::placeholder { color: rgba(90,94,84,.35); font-weight: 300; }
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus,
.contact-section form input:focus,
.contact-section form textarea:focus,
.contact-section form select:focus { border-bottom: 1.5px solid var(--terracotta); }
.wpcf7-form textarea,
.contact-section form textarea { height: 110px; resize: none; }
.wpcf7-form input[type="submit"],
.contact-section form input[type="submit"] {
  background: var(--dark);
  color: var(--offwhite);
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
  font-family: var(--sans);
  width: auto;
  margin-bottom: 0;
  -webkit-appearance: none;
}
.wpcf7-form input[type="submit"]:hover,
.contact-section form input[type="submit"]:hover { background: var(--terracotta); transform: translateY(-1px); }
/* Checkbox */
.wpcf7-form input[type="checkbox"],
.contact-section form input[type="checkbox"] { accent-color: var(--terracotta); width:auto; border-bottom:none; margin-bottom:0; padding:0; }
/* CF7 feedback */
.wpcf7-response-output { margin-top:1.5rem!important; padding:1rem 1.25rem!important; border-radius:6px!important; font-size:.875rem!important; border:none!important; }
.wpcf7-mail-sent-ok { background:#f0f7f0!important; color:#2d6a2d!important; }
.wpcf7-validation-errors,.wpcf7-spam-blocked { background:var(--terra-pale)!important; color:var(--terracotta)!important; }
.wpcf7-not-valid { border-bottom-color:var(--terracotta)!important; }
.wpcf7-not-valid-tip { font-size:.72rem!important; color:var(--terracotta)!important; margin-top:-.5rem; margin-bottom:1.5rem; display:block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* ── CTA ── */
.cta-section { background: var(--terra-pale); padding: 7rem 3rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: 'M'; position: absolute; font-family: var(--serif); font-size: 30vw; font-style: italic; color: rgba(196,113,74,.06); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-inner p { color: var(--slate); font-size: 1rem; line-height: 1.85; font-weight: 300; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── AANBOD HERO ── */
.aanbod-hero { min-height: 90vh; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.aanbod-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,42,36,.72) 0%, rgba(44,42,36,.15) 55%, transparent); }
.aanbod-hero-content { position: relative; z-index: 2; padding: 0 3rem 5rem; max-width: 740px; }
.aanbod-hero-content .hero-title,.aanbod-hero-content .hero-eyebrow,.aanbod-hero-content .hero-subtitle { opacity: 1; animation: none; }

/* ── GALERIJ HEADER (Bekijk het werk) ── */
/* Tekst rechts op dezelfde hoogte als het section-label */
.gallery-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}
.gallery-header-grid p {
  font-size: .9rem; color: var(--slate); font-weight: 300; line-height: 1.7;
  margin-top: .1rem;
}

/* ── SEO CONTENT ── */
.seo-content h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--dark); margin-bottom: 1rem; }
.seo-content p { color: var(--slate); line-height: 1.9; font-weight: 300; margin-bottom: 1.25rem; }
.seo-content a { color: var(--terracotta); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.seo-content a:hover { border-color: var(--terracotta); }

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: 5rem 3rem 2.5rem; color: rgba(245,242,236,.6); }
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { height: 90px; width: auto; opacity: .9; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-tagline { font-size: .875rem; line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
.footer-social { display: none; gap: .75rem; }
.footer-social a,.footer-social-link { width: 36px; height: 36px; border-radius: 50%; border: .5px solid rgba(245,242,236,.2); display: flex; align-items: center; justify-content: center; color: rgba(245,242,236,.6); text-decoration: none; font-size: .75rem; transition: border-color .3s, color .3s; }
.footer-social a:hover,.footer-social-link:hover { border-color: var(--terra-light); color: var(--terra-light); }
@media (max-width:768px) {
  .footer-social { display: flex; }
  .footer-social a,.footer-social-link { width:48px; height:48px; border-color:rgba(245,242,236,.35); }
  .footer-social-link svg { width:22px; height:22px; }
}
.footer-col-title { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,242,236,.35); margin-bottom: 1.25rem; font-weight: 500; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(245,242,236,.6); text-decoration: none; font-size: .875rem; font-weight: 300; transition: color .3s; }
.footer-links a:hover { color: var(--offwhite); }
.footer-bottom { border-top: .5px solid rgba(245,242,236,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(245,242,236,.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--offwhite); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0}to{opacity:1} }
@keyframes scrollPulse { 0%,100%{opacity:.6}50%{opacity:1} }
.fade-in-up { opacity:0; transform:translateY(30px); transition:opacity .7s ease,transform .7s ease; }
.fade-in-up.visible { opacity:1; transform:translateY(0); }
.screen-reader-text { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); }

/* ════════════════
   RESPONSIVE TABLET (max 1024px)
════════════════ */
@media (max-width:1024px) {
  .site-header,.site-header.scrolled,.site-header.no-hero { padding-left:2rem; padding-right:2rem; }
  .site-logo { height:64px; width:260px; }
  .site-logo img { height:64px; }
  .site-header.scrolled .site-logo,.site-header.no-hero .site-logo { height:52px; width:220px; }
  .site-header.scrolled .site-logo img,.site-header.no-hero .site-logo img { height:52px; }
  .main-navigation { gap:1.25rem; }
  .main-navigation a,.nav-dropdown-toggle { font-size:.7rem; }
  .nav-cta { padding:.45rem 1rem !important; }
  .hero-content { padding:0 2rem 4.5rem; }
  .aanbod-intro { gap:2.5rem; }
  .intro-strip-inner { gap:2.5rem; }
  .over-mij-content { padding:4rem 3rem; }
  .footer-top { grid-template-columns:1fr 1fr; gap:2rem 3rem; }
  .stappen, .stappen-5 { grid-template-columns: repeat(3, 1fr) !important; gap:1rem; }
  .stappen::before { display:none; }
  .tarieven-grid { grid-template-columns:1fr 1fr; }
  .reviews-grid { grid-template-columns:1fr 1fr; }
  .blog-grid { grid-template-columns:1fr 1fr; }
  .blog-card:first-child { grid-column:span 2; }
  .gallery-header-grid { grid-template-columns:1fr; gap:1.5rem; }
}

/* ════════════════
   RESPONSIVE MOBILE (max 768px)
════════════════ */
@media (max-width:768px) {
  .site-header,.site-header.scrolled,.site-header.no-hero { padding:1rem 1.5rem; }
  .site-logo { height:52px; width:210px; }
  .site-logo img { height:52px; }
  .site-header.scrolled .site-logo,.site-header.no-hero .site-logo { height:44px; width:180px; }
  .site-header.scrolled .site-logo img,.site-header.no-hero .site-logo img { height:44px; }
  .main-navigation { display:none; }
  .nav-hamburger { display:flex; }
  .hero { min-height:600px; }
  .hero-content { padding:0 1.5rem 4rem; }
  .hero-dots { right:1.5rem; }
  .hero-scroll { display:none; }
  .page-hero { padding:7rem 1.5rem 3.5rem; }
  /* Alle secties gelijke padding */
  section, .werkwijze-section,.aanbod-section,.blog-section,.tarieven-section,.contact-section,.reviews-section,.cta-section { padding-left:1.5rem!important; padding-right:1.5rem!important; }
  .intro-strip { padding:3rem 1.5rem; }
  .intro-strip-inner { grid-template-columns:1fr; gap:2rem; }
  .intro-strip-right { border-left:none; border-top:1px solid rgba(245,242,236,.12); padding-left:0; padding-top:2rem; }
  .aanbod-intro { grid-template-columns:1fr; gap:2rem; }
  .aanbod-grid { grid-template-columns:1fr 1fr; gap:1.25rem; }
  .dienst-card:nth-child(2),.dienst-card:nth-child(4),.dienst-card:nth-child(5) { margin-top:0; }
  .dienst-card:nth-child(5) { grid-column:span 2; aspect-ratio:16/9; }
  .over-mij-section { grid-template-columns:1fr; }
  .over-mij-image { min-height:380px; }
  .over-mij-content { padding:3rem 1.5rem; }
  .stappen, .stappen-5 { grid-template-columns:1fr !important; gap:2rem; }
  .stappen::before { display:none; }
  /* Gallerijen mobiel */
  .masonry-gallery { columns:2; column-gap:.5rem; }
  .masonry-item { margin-bottom:.5rem; }
  .tarieven-grid { grid-template-columns:1fr; }
  .reviews-grid { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-card:first-child { grid-column:span 1; }
  .blog-card:not(:first-child) .blog-excerpt { display:block; }
  .blog-archive-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .blog-archive-grid { grid-template-columns:1fr; }
  .contact-inner { grid-template-columns:1fr; gap:3rem; }
  .form-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:2.5rem; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .parallax-bg { background-attachment:scroll; }
  .aanbod-hero { min-height:70vh; }
  .aanbod-hero-content { padding:0 1.5rem 3.5rem; }
  .gallery-header-grid { grid-template-columns:1fr; gap:1.5rem; }
  /* Instagram footer: 2x2 op kleine schermen */
  .instagram-strip-grid { grid-template-columns:repeat(2,1fr)!important; }
  /* Tarieven inline grids */
  .tarieven-section [style*="grid-template-columns:1.2fr 1fr"],
  .tarieven-section [style*="grid-template-columns:1fr 1fr"] { display:block!important; }
  .tarieven-section [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns:1fr!important; }
  .tarieven-section [style*="max-width:760px"] { max-width:100%!important; }
  .tarieven-section [style*="max-width:800px"] { max-width:100%!important; }
  /* Inline grids in aanbod/over-mij sectie */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:5rem"],
  [style*="grid-template-columns:1fr 1fr"][style*="gap:4rem"],
  [style*="grid-template-columns:1fr 1fr"][style*="gap:6rem"] { grid-template-columns:1fr!important; gap:2rem!important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns:repeat(2,1fr)!important; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns:repeat(2,1fr)!important; }
}

/* ════════════════
   SMALL MOBILE (max 480px)
════════════════ */
@media (max-width:480px) {
  .aanbod-grid { grid-template-columns:1fr; }
  .dienst-card:nth-child(5) { grid-column:span 1; aspect-ratio:3/4; }
  .aanbod-gallery-grid { grid-template-columns:1fr; grid-auto-rows:240px; }
  .aanbod-gallery-grid .gallery-item.g-wide { grid-column:span 1; }
  .achter-schermen-grid { grid-template-columns:1fr; grid-auto-rows:240px; }
  .achter-schermen-grid .as-wide { grid-column:span 1; }
  .stappen, .stappen-5 { grid-template-columns:1fr !important; gap:1.5rem; }
  .hero-title { font-size:2.4rem; }
}

/* ── MASONRY / PINTEREST GALERIJ ──────────────────────────────────
   CSS columns masonry: items vallen vanzelf op de kortste kolom,
   geen lege gaten. Mix van vierkant (1/1) en verticaal (3/4).
   PHP bepaalt de verhouding via klassen: .sq (vierkant) of geen (portrait).
──────────────────────────────────────────────────────────────── */
.masonry-gallery {
  columns: 4;
  column-gap: .75rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: .75rem;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }

/* Placeholder blokken (zolang er geen foto's zijn) */
.masonry-item.ph-sq  { aspect-ratio: 1/1; }
.masonry-item.ph-pt  { aspect-ratio: 3/4; }

@media (max-width: 1024px) {
  .masonry-gallery { columns: 3; }
}
@media (max-width: 768px) {
  .masonry-gallery { columns: 2; column-gap: .5rem; }
  .masonry-item { margin-bottom: .5rem; }
}
@media (max-width: 480px) {
  .masonry-gallery { columns: 2; }
}

/* ── TARIEVEN RESPONSIVE GRIDS ── */
@media (max-width:768px) {
  .tarieven-levering-grid { grid-template-columns:1fr!important; }
  .tarieven-event-grid { grid-template-columns:1fr!important; gap:2rem!important; }
  .instagram-strip-grid { grid-template-columns:repeat(4,1fr)!important; }
  /* Praktische info blokken: max-width weg op mobiel */
  .tarieven-inner [style*="max-width:760px"],
  .tarieven-inner [style*="max-width:800px"],
  .tarieven-inner [style*="max-width:680px"] { max-width:100%!important; }
  /* Extras grid: 1 kolom */
  .tarieven-inner [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns:1fr!important; }
}
@media (max-width:480px) {
  .instagram-strip-grid { grid-template-columns:repeat(2,1fr)!important; }
  /* Small mobile: tarieven kaarten ruimer */
  .tarief-card { padding:2rem 1.25rem; }
}

/* ── TARIEVEN MOBIEL SPACING FIXES ── */
@media (max-width: 768px) {
  /* Ruimte tussen Shoots en Bruiloft blokken bij levering */
  .tarieven-levering-grid > div + div { margin-top: 1.25rem; }
  /* Ruimte tussen tekst/button en het info-blok bij evenementen/bedrijf */
  .tarieven-event-grid > div:first-child { margin-bottom: 2rem; }
  .tarieven-event-grid > div + div { margin-top: 0; }
  /* Zorg dat btn-dark ruimte heeft onder zich */
  .tarieven-section .btn-dark,
  .tarieven-section .btn-outline { display: inline-flex; margin-bottom: 2rem; }
}

/* ── MOBIEL: MINDER VERTICALE PADDING ── */
@media (max-width: 768px) {
  .aanbod-section,
  .werkwijze-section,
  .reviews-section,
  .blog-section,
  .cta-section,
  .parallax-section,
  section[style*="padding:5rem"],
  section[style*="padding:6rem"],
  section[style*="padding:7rem"] { padding-top: 4rem !important; padding-bottom: 4rem !important; }
}

/* ── INSTAGRAM: 3 naast elkaar, geen negatieve margin ── */
@media (max-width: 768px) {
  #sb_instagram .sbi_item { width: 33.33% !important; margin: 0 !important; padding: 0 !important; }
  #sb_instagram #sbi_images { display: flex !important; flex-wrap: wrap !important; margin: 0 !important; padding: 0 !important; }
  #sb_instagram { padding: 0 !important; margin: 0 !important; }
}
