*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Lively Haus kleurpalet: diep donkerbruin + warm crème ── */
  --white:       #FFFFFF;
  --cream:       #F8F3EC;   /* warm off-white voor lichte secties */
  --beige:       #EDE3D5;   /* warme beige voor achtergrond accenten */
  --sand:        #D4C5B2;   /* zand voor borders en dividers */

  /* Accent op LICHTE achtergronden → diep bordeaux (vervangt geel-goud) */
  --gold:        #3C1212;   /* diep donker rood-bruin als accent */
  --gold-light:  #F0E6D6;   /* warm off-white als accent OP donkere vlakken */

  /* Donkere secties: bijna zwart-bruin bordeaux (zoals Lively Haus) */
  --dark:        #1A0808;   /* zeer diep donker, bijna zwart met rode ondertoon */
  --dark-mid:    #3C1212;   /* middel bordeaux voor hover states */

  /* Tekst */
  --text:        #2C1A10;   /* warm donkerbruin voor body tekst */
  --gray:        #8A7865;   /* warm grijsbruin voor subtekst */

  /* Cormorant Garamond voor display-titels + Archivo (subtekst) + Space Grotesk (body) */
  --font-script:  'Cormorant Garamond', serif;
  --font-heading: 'Archivo', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1440px;
  --focus-ring: 0 0 0 3px rgba(60, 18, 18, 0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

img { display: block; }

a { text-decoration: none; }

/* ─── SKIP LINK (accessibility) ─── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--dark);
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── FOCUS STATES (keyboard navigatie) ─── */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

/* ─── CURSOR POINTER (alle klikbare elementen) ─── */
a, button, [role="button"],
.portfolio-item, .service-card,
.hero-scroll, .nav-toggle { cursor: pointer; }

/* ─── TOUCH ACTION (vermindert 300ms tap-delay) ─── */
a, button, [role="button"] { touch-action: manipulation; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.2rem 5rem;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.07);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  transition: color 0.5s var(--ease);
}

nav.scrolled .nav-logo { color: var(--dark); }

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

nav.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--gold); }

/* Active pagina: altijd duidelijk zichtbaar via onderlijn + iets bolder */
.nav-links a.nav-active {
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1.5px solid rgba(255,255,255,0.8);
  color: white !important;
}
/* Op witte/scrolled nav (subpagina's): gebruik mid-bordeaux zodat het DUIDELIJK afwijkt van bijna-zwarte reguliere links */
nav.scrolled .nav-links a.nav-active {
  color: #8B2626 !important;       /* mid-bordeaux — contrast met #1A0808 reguliere links */
  border-bottom-color: #8B2626;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.55rem 1.5rem;
  transition: all 0.3s;
}

nav.scrolled .nav-cta {
  color: var(--dark);
  border-color: var(--sand);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white !important;
}

/* ─── NAV SUBMENU (dropdown) ─── */
.nav-sub-toggle { cursor: default; }

.nav-has-sub {
  position: relative;
}

.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  list-style: none;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  /* padding-top bridget de gap zodat hover niet wegvalt */
  padding: 1rem 0 0.6rem;
  z-index: 300;
}

.nav-sub li a {
  display: block;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-sub li a:hover {
  color: var(--gold);
  background: var(--cream);
}

.nav-has-sub:hover .nav-sub,
.nav-has-sub.sub-open .nav-sub {
  display: block;
}

nav:not(.scrolled) .nav-sub {
  background: rgba(26, 8, 8, 0.95);
}

nav:not(.scrolled) .nav-sub li a {
  color: rgba(255, 255, 255, 0.85) !important;
}

nav:not(.scrolled) .nav-sub li a:hover {
  color: var(--gold-light) !important;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: white;
  transition: all 0.35s;
}

nav.scrolled .nav-toggle span { background: var(--dark); }

/* ─── HERO ─── */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ─── HERO SLIDESHOW ─── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Voortgangsbalkjes onderaan de hero */
.hero-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.hero-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: white;
}

.hero-dot.active::after {
  animation: dotProgress 7s linear forwards;
}

@keyframes dotProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Reduced-motion: geen auto-wissel, toon meteen alles */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-dot.active::after { animation: none; width: 100%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 4, 4, 0.22) 0%,
    rgba(20, 4, 4, 0.10) 40%,
    rgba(20, 4, 4, 0.60) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 880px;
}

.hero-name {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.08em;
  color: white;
  line-height: 1.15;
}

.hero-name-sub {
  font-style: normal;
  font-size: 0.28em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  display: block;
  opacity: 0.65;
  margin-top: 0.6em;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.hero-title em {
  font-style: normal;
  font-weight: 400;
  font-family: var(--font-script);
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto 2rem;
}

.hero-title em {
  font-family: var(--font-script);
  font-style: normal;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Scroll-lijn: 2× pulsen dan stoppen (geen oneindige decoratieve animatie) */
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.5);
  transform-origin: top;
  animation: scrollPulse 2s ease-in-out 2;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 0.15; transform: scaleY(0.3); }
}

/* ─── SECTION GLOBALS ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.section-title em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
}

/* ─── INTRO / TAGLINE ─── */
.intro {
  background: var(--cream);
  text-align: center;
  padding: 9rem 4rem;
}

.intro-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--sand);
  line-height: 0.5;
  margin-bottom: 2rem;
}

.intro-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: normal;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
  line-height: 1.35;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.intro-tagline em {
  font-family: var(--font-serif);
  font-style: normal;
}

.intro-tagline strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

.intro-text {
  font-size: 0.93rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.95;
  letter-spacing: 0.015em;
}

.intro-keywords {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  margin-top: 3rem;
}

.intro-keywords li {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
}

.intro-keywords li::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.intro-keywords li:hover::after { transform: scaleX(1); }

/* ─── PORTFOLIO GRID ─── */
.portfolio {
  padding: 7rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.portfolio-link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.portfolio-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  transition: background 0.4s;
}

.portfolio-item:hover::after { background: rgba(26, 26, 26, 0.1); }

.p1 { grid-column: 1 / 8; aspect-ratio: 4 / 3; }
.p2 { grid-column: 8 / 13; aspect-ratio: 3 / 4; }
.p3 { grid-column: 1 / 5; aspect-ratio: 3 / 4; }
.p4 { grid-column: 5 / 10; aspect-ratio: 4 / 3; }
.p5 { grid-column: 10 / 13; aspect-ratio: 1; }
.p6 { grid-column: 1 / 6; aspect-ratio: 16 / 9; }
.p7 { grid-column: 6 / 13; aspect-ratio: 4 / 3; }

/* ─── ABOUT ─── */
.about {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 6rem 0;
}

.about-image-wrap {
  width: 400px;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 540px;
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
  max-width: 640px;
}

.about-content .section-label { color: rgba(255,255,255,0.45); }
.about-content .section-title { color: white; margin-bottom: 2rem; }

.about-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.95;
  margin-bottom: 1.2rem;
}

.about-signature {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 300;
  color: var(--gold-light);
  margin-top: 1.5rem;
  line-height: 1;
  opacity: 0.7;
}

/* ─── SERVICES ─── */
.services {
  padding: 9rem 4rem;
  background: var(--dark);
  color: white;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header .section-label { color: var(--gold-light); }
.services-header .section-title { color: white; }
.services-header .section-title em { font-style: italic; }

.services-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3.5rem;
  transition: border-color 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  border-color: rgba(240, 230, 214, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  margin-bottom: 2rem;
}

.service-icon {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.service-features li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.service-features li::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.service-price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

/* ─── TESTIMONIAL ─── */
.testimonial {
  padding: 10rem 4rem;
  text-align: center;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 28rem;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto 3rem;
  color: var(--dark);
  position: relative;
}

.testimonial-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── CTA / MEET ─── */
.meet {
  position: relative;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.meet-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.meet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 4, 4, 0.58);  /* diep donker bordeaux tint */
}

.meet-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 0 2rem;
}

.meet-content .section-label { color: var(--gold-light); }

.meet-title {
  font-family: var(--font-script);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.meet-title em { font-family: var(--font-script); font-style: normal; font-weight: 400; }

.meet-sub {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn-white {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.btn-white:hover {
  background: white;
  color: var(--dark);
}

.btn-gold {
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-dark {
  background: var(--dark);
  color: white;
  border: 1px solid var(--dark);
}

.btn-dark:hover {
  background: transparent;
  color: var(--text);
  border-color: var(--sand);
}

/* ─── CONTACT ─── */
.contact {
  padding: 9rem 4rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact .section-title { margin-bottom: 1.5rem; }

.contact-text {
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: 4rem;
  line-height: 1.9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.8rem 0;
  border: none;
  border-bottom: 1px solid var(--sand);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--gold); }

.form-field textarea {
  resize: none;
  height: 110px;
  line-height: 1.7;
}

.form-submit {
  text-align: center;
  margin-top: 1rem;
}

/* ─── FOTO SLIDER ─── */
.shoot-slider-wrap {
  position: relative;
  /* volledig over de volledige viewport breedte */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 3rem;
}

.photo-slider {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 4rem 0.5rem;
  scrollbar-width: none;
}
.photo-slider::-webkit-scrollbar { display: none; }

.photo-slider-item {
  flex: 0 0 auto;
  width: 540px;
  height: 760px;
  overflow: hidden;
  scroll-snap-align: start;
}

.photo-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.photo-slider-item:hover img { transform: scale(1.04); }

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sand);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.slider-btn:hover { background: var(--dark); color: white; border-color: var(--dark); }

@media (max-width: 768px) {
  .photo-slider-item {
    width: 72vw;
    height: 96vw;
  }
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: white;
  padding: 4rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: white;
}

.footer-logo span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.4rem;
  font-family: var(--font-body);
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 0.3rem;
}

/* ─── PAGE BANNER (subpagina's) ─── */
.page-banner {
  height: 22vh;
  min-height: 160px;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 4rem 5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60, 18, 18, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 1;
}

.page-banner-label {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  margin-bottom: 0.6rem;
}

.page-banner-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: normal;
  color: white;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

/* ─── HOMEPAGE STRIP (tussen hero en over mij) ─── */
.home-strip {
  background: var(--cream);
  padding: 1.6rem 5rem;
  text-align: center;
  border-bottom: 1px solid var(--beige);
}

.home-strip-text {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.home-strip-text span { display: inline-block; }

.home-strip-divider {
  width: 40px;
  height: 1px;
  background: var(--sand);
  display: inline-block;
}

/* ─── VASTE ACHTERGROND FOTO (homepage) ─── */
.home-fixed-photo {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.home-fixed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Donkerrode doorzichtige waas over de achtergrondfoto — zelfde kleur als "Laatste foto's" */
.home-fixed-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 8, 8, 0.78);
}

/* ─── THE PROCESS ─── */
.bruiloft-process {
  background: var(--dark);
  padding: 7rem 4rem;
}

.bruiloft-process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.bruiloft-process-header .section-label {
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}

.bruiloft-process-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
}

/* Kaartje container */
.process-card-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

/* Vaste hoogte via grid-stack */
.process-card-inner {
  display: grid;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.process-card-inner > .process-card {
  grid-area: 1 / 1;
}

/* Individuele kaartjes */
.process-card {
  background: var(--cream);
  padding: 4rem 5rem;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
  align-items: center;
}

.process-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}

.process-card.exit {
  opacity: 0;
  transform: translateX(-30px);
  visibility: hidden;
}

/* Bolletjes navigatie + voortgangsbalk */
.process-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.process-dot {
  position: relative;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: background 0.3s;
}

.process-dot::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: white;
  border-radius: 2px;
}

.process-dot.active::after {
  width: 100%;
  transition: width 8s linear;
}

.process-card-num {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.process-card-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.process-card-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .bruiloft-process { padding: 5rem 1.5rem; }
  .process-card { padding: 2.5rem 1.8rem; }
  .process-dot { width: 24px; }
}

/* ─── WHAT I OFFER ─── */
.what-i-offer {
  background: var(--dark);
  padding: 5rem 4rem;
}

.wio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wio-header .section-label {
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.wio-title {
  color: white;
  margin-bottom: 0;
}

.wio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.wio-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.wio-img-wrap {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.wio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wio-item:hover .wio-img-wrap img {
  transform: scale(1.05);
}

.wio-label {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .what-i-offer { padding: 4rem 1.5rem; }
  .wio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  /* Wedding gecentreerd, zelfde breedte als de andere items */
  .wio-grid .wio-item:first-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.5rem);
    margin: 0 auto;
  }
  /* Verwijder de oude last-child afwijking */
  .wio-grid .wio-item:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .wio-grid { grid-template-columns: 1fr 1fr; }
  .wio-grid .wio-item:first-child { max-width: calc(50% - 0.5rem); }
}

/* ─── INSTAGRAM SECTIE ─── */
/* Geen eigen achtergrond: de vaste achtergrondfoto + waas (zelfde kleur) schemert door */
.instagram {
  padding: 7rem 5rem;
  background: transparent;
}

.instagram-header {
  text-align: center;
  margin-bottom: 4rem;
}

.instagram-header .section-label { display: block; margin-bottom: 1.2rem; color: var(--gold-light); }
.instagram-header .section-title { color: white; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}

.instagram-item:hover img { transform: scale(1.06); }

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 8, 8, 0);
  transition: background 0.4s;
}

.instagram-item:hover::after { background: rgba(26, 8, 8, 0.08); }

.behold-wrap {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.instagram-cta {
  text-align: center;
}

.instagram-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(240,230,214,0.4);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.instagram-follow:hover {
  color: white;
  border-color: white;
}

/* ─── PORTFOLIO CATEGORIEËN ─── */
.portfolio-categories {
  padding: 7rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.portfolio-cat {
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--beige);
}

.portfolio-cat:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.portfolio-cat-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.portfolio-cat-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--sand);
  flex-shrink: 0;
}

.portfolio-cat-title {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  font-style: normal;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.portfolio-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.portfolio-cat-item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.portfolio-cat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}

.portfolio-cat-item:hover img { transform: scale(1.05); }

/* ─── MASONRY GRID (Pinterest-stijl) ─── */
.masonry {
  columns: 3;
  column-gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease);
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 8, 8, 0);
  transition: background 0.4s;
}

.masonry-item:hover::after { background: rgba(26, 8, 8, 0.07); }

/* ─── INFO & PRIJZEN — ALTERNERENDE LAYOUT ─── */
.ip-section {
  padding: 6rem 5rem;
  border-bottom: 1px solid var(--beige);
}

.ip-section:last-child { border-bottom: none; }
.ip-section { scroll-margin-top: 71px; }

.ip-row {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 5rem;
  align-items: start;
}

.ip-row.ip-reverse {
  grid-template-columns: 1fr 360px;
}

.ip-row.ip-reverse .ip-photos { order: -1; }

.ip-info {
  position: sticky;
  top: 90px;
}

.ip-num {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--sand);
  margin-bottom: 0.8rem;
}

.ip-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: normal;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.ip-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.ip-features {
  list-style: none;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--beige);
}

.ip-features li {
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ip-features li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.ip-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: block;
}

.ip-price-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-top: 0.3rem;
}

.btn-brochure {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.35s var(--ease);
  cursor: pointer;
}

.btn-brochure:hover {
  background: var(--gold);
  color: white;
}

.ip-photos .masonry { columns: 2; }

/* ─── INFO & PRIJZEN — KEUZE GRID (bruiloften vs shoots) ─── */
.ip-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ip-choice-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}

.ip-choice-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.ip-choice-card:hover img { transform: scale(1.04); }

.ip-choice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 8, 8, 0.80) 0%, rgba(26, 8, 8, 0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  transition: background 0.4s;
}

.ip-choice-card:hover .ip-choice-overlay {
  background: linear-gradient(to top, rgba(26, 8, 8, 0.90) 0%, rgba(26, 8, 8, 0.30) 60%, transparent 100%);
}

.ip-choice-num {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
}

.ip-choice-name {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  font-style: normal;
  color: white;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 0.8rem;
}

.ip-choice-arrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}

.ip-choice-card:hover .ip-choice-arrow {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .ip-choice-grid { grid-template-columns: 1fr; }
  .ip-choice-card { min-height: 360px; }
}

/* ─── PORTFOLIO CATEGORIE OVERZICHT (klikbaar bovenaan) ─── */
.portfolio-overview {
  padding: 4rem 5rem;
  background: var(--dark);
}

.portfolio-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.portfolio-overview-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.portfolio-overview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.portfolio-overview-card:hover img { transform: scale(1.06); }

.portfolio-overview-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 8, 8, 0.75) 0%, rgba(26, 8, 8, 0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  transition: background 0.4s;
}

.portfolio-overview-card:hover .portfolio-overview-card-overlay {
  background: linear-gradient(to top, rgba(26, 8, 8, 0.85) 0%, rgba(26, 8, 8, 0.25) 60%, transparent 100%);
}

.portfolio-overview-num {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.portfolio-overview-name {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 300;
  font-style: normal;
  color: white;
  line-height: 1;
  letter-spacing: 0.01em;
}

.portfolio-overview-arrow {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}

.portfolio-overview-card:hover .portfolio-overview-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PORTFOLIO INSTAGRAM CTA ─── */
.portfolio-instagram-cta {
  background: var(--dark);
  text-align: center;
  padding: 7rem 4rem;
  color: white;
}

.portfolio-instagram-cta .section-label { color: var(--gold-light); }
.portfolio-instagram-cta .section-title { color: white; margin-bottom: 1.5rem; }

.portfolio-instagram-cta p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3rem;
  line-height: 1.9;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── DIENSTEN — CATEGORIE KAARTEN ─── */
.services-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-cat-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  cursor: default;
}

.service-cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-cat-card:hover img { transform: scale(1.04); }

.service-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,8,0.82) 0%, rgba(26,8,8,0.2) 55%, transparent 100%);
}

.service-cat-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  color: white;
  width: 100%;
}

.service-cat-num {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.service-cat-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300;
  font-style: normal;
  color: white;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.service-cat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  max-width: 380px;
}

.service-cat-details {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service-cat-detail {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.service-cat-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-top: 1rem;
}

/* ─── CONTACT SPLIT LAYOUT ─── */
.contact-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 700px;
}

.contact-photo-side {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.contact-photo-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.contact-form-side {
  background: var(--cream);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-side .contact {
  padding: 0;
  max-width: none;
  text-align: left;
  margin: 0;
}

.contact-form-side .contact .section-label,
.contact-form-side .contact .section-title,
.contact-form-side .contact .contact-text {
  text-align: left;
}

/* ─── DIENSTEN PAGINA ─── */
.diensten-cta {
  background: var(--beige);
  text-align: center;
  padding: 7rem 4rem;
}

.diensten-cta .section-title { margin-bottom: 1.5rem; }

.diensten-cta p {
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: 3rem;
  line-height: 1.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ─── PREFERS-REDUCED-MOTION (UI/UX Pro Max vereiste) ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-line { animation: none; }

  .portfolio-item img,
  .portfolio-item::after { transition: none; }
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  nav { padding: 1.5rem 2.5rem; }
  nav.scrolled { padding: 1rem 2.5rem; }
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(300px, 80vw);
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.45s var(--ease);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.12);
  }

  .nav-links.open { right: 0; }
  .nav-links a { color: var(--dark) !important; font-size: 0.85rem; }
  .nav-links a.nav-active { color: #8B2626 !important; border-bottom-color: #8B2626; }

  /* X zichtbaar maken als menu open is (witte streepjes → donker) */
  .nav-links.open ~ .nav-toggle span { background: var(--dark) !important; }

  /* Subkoppen zichtbaar in wit mobiel menu (nav:not(.scrolled) maakt tekst wit) */
  nav:not(.scrolled) .nav-sub li a { color: var(--gray) !important; }

  /* Brochure knop gecentreerd op mobiel */
  .btn-brochure-light { align-self: center; text-align: center; width: 100%; }

  /* Submenu op mobiel: altijd zichtbaar in het open menu-panel */
  .nav-has-sub { width: 100%; text-align: center; }
  .nav-sub {
    position: static;
    transform: none;
    background: none !important;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0.3rem 0 0;
    min-width: 0;
    display: block !important;
    border-top: none;
  }
  .nav-sub li a {
    font-size: 0.68rem;
    padding: 0.4rem 1rem;
    color: var(--gray) !important;
    letter-spacing: 0.15em;
    background: none !important;
  }
  .nav-sub li a:hover { color: var(--gold) !important; }

  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }

  /* Compactere secties op mobiel */
  .intro { padding: 4.5rem 1.8rem; }
  .intro-keywords { gap: 1.2rem; flex-wrap: wrap; }
  .intro-quote-mark { font-size: 4rem; }

  .portfolio { padding: 4rem 1.2rem; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .p1, .p2, .p3, .p4, .p5, .p6, .p7 {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
  .p2, .p3 { aspect-ratio: 3 / 4; }

  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }

  .about { flex-direction: column; padding: 0; }
  .about-image-wrap { width: 100%; min-height: 65vw; }
  .about-content { max-width: 100%; padding: 3rem 1.5rem; }

  .services { padding: 4.5rem 1.2rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 2rem 1.8rem; }
  .service-num { font-size: 3.5rem; margin-bottom: 1rem; }
  .services-header { margin-bottom: 3rem; }

  .testimonial { padding: 5rem 1.8rem; }

  .meet { height: 60vh; }
  .meet-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .meet-sub { margin-bottom: 2.5rem; font-size: 0.75rem; }

  /* Compactere knop op mobiel */
  .btn { padding: 0.95rem 2.2rem; font-size: 0.68rem; }

  .contact { padding: 4.5rem 1.5rem; }
  .contact-text { margin-bottom: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  footer {
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }

  /* Home strip mobiel */
  .home-strip { padding: 1.4rem 1.5rem; }
  .home-strip-text { font-size: 0.6rem; letter-spacing: 0.25em; gap: 1rem; }
  .home-strip-divider { width: 24px; }

  /* Hero mobiel */
  .hero-scroll { display: none; }

  /* Subpagina's mobiel */
  .page-banner { padding: 3.5rem 1.5rem 2.2rem; height: auto; min-height: 175px; }
  .instagram { padding: 4.5rem 1.2rem; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .portfolio-categories { padding: 4rem 1.2rem; }
  .portfolio-cat { margin-bottom: 3.5rem; padding-bottom: 3.5rem; }
  .portfolio-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .diensten-cta { padding: 4.5rem 1.5rem; }

  /* Diensten intro inline-style override */
  .intro { padding: 4rem 1.5rem 3.5rem !important; }

  /* Masonry mobiel */
  .masonry { columns: 2; }
  .portfolio-overview { padding: 2rem 1.2rem 2.5rem; }
  .portfolio-overview-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; }

  /* Info & Prijzen mobiel */
  .ip-section { padding: 4rem 1.2rem; }
  .btn-brochure { display: block; text-align: center; }
  .ip-row, .ip-row.ip-reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .ip-row.ip-reverse .ip-photos { order: 0; }
  .ip-info { position: static; }
  .ip-photos .masonry { columns: 2; }
  .portfolio-instagram-cta { padding: 4.5rem 1.5rem; }
  .portfolio-instagram-cta p { font-size: 0.85rem; }

  /* Diensten categorie mobiel */
  .services-cats { grid-template-columns: 1fr; }
  .service-cat-card { min-height: 380px; }

  /* Contact split mobiel */
  .contact-split { grid-template-columns: 1fr; }
  .contact-photo-side { display: none; }
  .contact-form-side { padding: 4rem 1.5rem; }

  /* Contact knop full-width mobiel */
  .form-submit { width: 100%; }
  .form-submit .btn { width: 100%; text-align: center; }
}
