/* ============================================================
   Marieke Verboord Fotografie – stylesheet
   Headings: Freight Neo Pro  |  Body: Freight Text Pro
   Adobe Fonts kit: tqe0nfh
   ============================================================ */

:root {
  --font-body:    'Lato', system-ui, sans-serif;
  --font-ui:      'freight-text-pro', Georgia, serif;
  --font-heading: 'freight-neo-pro', 'freight-text-pro', Georgia, serif;
  --font-script:  'freight-text-pro', cursive;

  --cream:    #faf9f8;
  --bg:       #faf9f8;
  --white:    #ffffff;
  --taupe:    #a89684;
  --taupe-dark: #8e7d6e;
  --brown:    #6b5d4f;
  --text:     #373737;
  --muted:    #8a7f74;
  --border:   #e8e0d6;

  --max:      1280px;
  --gutter:   clamp(20px, 4vw, 60px);
  --header-h: 88px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
img, video { display: block; max-width: 100%; }
a { color: var(--brown); text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--brown);
  font-weight: 300;
  letter-spacing: -0.005em;
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  background: var(--cream);
  transition: background 0.25s, box-shadow 0.25s;
}
.site-header.scrolled { background: rgba(250,249,248,0.96); box-shadow: 0 1px 12px rgba(107,93,79,0.06); }
.site-header.over-hero { background: transparent; }
.site-header.over-hero .nav-links a,
.site-header.over-hero .nav-link,
.site-header.over-hero .logo-name,
.site-header.over-hero .logo-script {
  color: var(--white);
}
.site-header.over-hero .nav-toggle span { background: var(--white); }

/* Logo: "Marieke Verboord" serif on top, "fotografie" italic-script below */
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; text-decoration: none; gap: 2px; }
.logo-img { height: clamp(48px, 5vw, 64px); width: auto; display: block; transition: filter 0.25s; }
.site-header.over-hero .logo-img { filter: brightness(0) invert(1); }
.site-header.scrolled .logo-img { height: clamp(38px, 3.6vw, 48px); }
.logo-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  letter-spacing: 0.005em;
  color: var(--brown);
  line-height: 1;
}
.logo-script {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--brown);
  margin-left: 22%;
  line-height: 1;
}

/* Navigation — wide letter-spacing per origineel (~0.4em) */
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button.nav-link {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px 2px;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links button.nav-link:hover { opacity: 0.55; }

.has-submenu > .nav-link::after { content: " +"; font-weight: 300; margin-left: 4px; letter-spacing: 0; }
.submenu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--cream); border: 1px solid var(--border);
  padding: 14px 0; min-width: 240px; list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  box-shadow: 0 8px 24px rgba(107,93,79,0.08);
  z-index: 250;
}
/* Force submenu items to brown — overrides over-hero white-text rule */
.site-header .submenu a,
.site-header.over-hero .submenu a {
  color: var(--brown) !important;
}
.has-submenu:hover > .submenu, .has-submenu:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.submenu li { display: block; }
.submenu a {
  display: block;
  padding: 8px 22px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--brown);
  text-align: left;
  white-space: nowrap;
}
.submenu a:hover { background: var(--white); opacity: 1; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 30px; height: 30px;
  background: none; border: 0; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--brown);
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem; padding: 2rem; overflow-y: auto;
}
.nav-overlay.open { display: flex; }
.nav-overlay a, .nav-overlay summary {
  font-family: var(--font-ui); font-size: 0.88rem;
  font-weight: 400; letter-spacing: 0.4em; text-transform: uppercase; color: var(--brown);
}
.nav-overlay details summary { cursor: pointer; list-style: none; }
.nav-overlay details summary::-webkit-details-marker { display: none; }
.nav-overlay details[open] summary { margin-bottom: 0.6rem; }
.nav-overlay details ul { list-style: none; text-align: center; }
.nav-overlay details ul li { margin: 0.4rem 0; }
.nav-overlay details ul a {
  font-family: var(--font-heading); font-size: 1.4rem;
  letter-spacing: 0; text-transform: none; font-weight: 300;
}
.nav-overlay .nav-toggle { position: absolute; top: 24px; right: var(--gutter); display: flex; }

main { padding-top: var(--header-h); }

/* ── HERO + SLIDER ────────────────────────────────────────── */
.hero {
  position: relative;
  height: clamp(560px, 92vh, 920px);
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  background: var(--cream);
}
.slider {
  position: absolute; inset: 0;
  overflow: hidden;
}
.slider-track {
  display: flex; flex-wrap: nowrap;
  height: 100%;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide picture, .slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.slide img { object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.45) 100%);
}

.slider-controls {
  position: absolute; left: 0; right: 0; bottom: clamp(28px, 5vw, 52px);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(18px, 4vw, 36px);
  z-index: 4;
  color: var(--white);
}
.slider-arrow {
  width: 56px; height: 24px;
  background: none; border: 0; cursor: pointer;
  position: relative; padding: 0;
}
.slider-arrow::before {
  content: ''; display: block; width: 48px; height: 1px;
  background: rgba(255,255,255,0.7);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.slider-arrow.prev::after,
.slider-arrow.next::after {
  content: ''; display: block;
  width: 8px; height: 8px;
  border-top: 1px solid rgba(255,255,255,0.7);
  border-right: 1px solid rgba(255,255,255,0.7);
  position: absolute; top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.slider-arrow.prev::after { left: 10px; transform: translateY(-50%) rotate(-135deg); }
.slider-arrow.next::after { right: 10px; }
.slider-arrow:hover::before { background: var(--white); }

.slide-counter {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  min-width: 50px;
  text-align: center;
}

.hero-content {
  position: absolute;
  left: 0; right: 0;
  top: clamp(120px, 16vh, 200px);
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--white);
  pointer-events: none;
}
.hero-kicker {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  margin-bottom: clamp(20px, 5vw, 60px);
  color: rgba(255,255,255,0.95);
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 14ch;
}
.hero-bottom-text {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(120px, 16vh, 180px);
  z-index: 3;
  text-align: left;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--white);
}
.hero-bottom-text h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  color: var(--white);
  max-width: 14ch;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  text-align: center;
}
.section-narrow p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  color: var(--brown);
}
.section-narrow .small-divider {
  display: block; width: 1px; height: 50px;
  background: var(--border); margin: 28px auto;
}

/* ── CATEGORY CARDS ───────────────────────────────────────── */
.categories-intro { text-align: center; font-family: var(--font-body); font-style: italic; font-size: 1.05rem; color: var(--brown); margin-bottom: clamp(28px, 4vw, 48px); }
.categories {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 8vw, 120px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.cat-card {
  display: block; background: var(--white);
  padding: clamp(16px, 2vw, 24px);
  text-align: center;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cat-card:hover { box-shadow: 0 8px 24px rgba(107,93,79,0.08); }
.cat-card:hover { transform: translateY(-3px); }
.cat-card-img {
  aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--cream);
  margin-bottom: clamp(14px, 2vw, 22px);
  border-radius: 4px;
}
.cat-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-card:hover .cat-card-img img { transform: scale(1.04); }
.cat-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 0.95rem; color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── ABOUT TEASER ─────────────────────────────────────────── */
.about-teaser {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-teaser-inner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.about-teaser-img { aspect-ratio: 3 / 4; overflow: hidden; background: var(--cream); border-radius: 4px; }
.about-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser-script {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--brown);
  display: block;
  margin-bottom: 4px;
}
.about-teaser h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: clamp(20px, 3vw, 32px);
  line-height: 1.05;
}
.about-teaser p {
  font-family: var(--font-body);
  font-size: 1rem; line-height: 1.85;
  color: var(--text); max-width: 56ch;
  margin-bottom: 1rem;
}

/* ── QUICKLINKS ───────────────────────────────────────────── */
.quicklinks {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--white);
  border-radius: 4px;
}
.quicklinks-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.quicklinks-inner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.quicklinks-inner a {
  text-align: center;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 40px);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 300;
  color: var(--brown);
  border-right: 1px solid var(--border);
  transition: opacity 0.2s;
  letter-spacing: 0;
}
.quicklinks-inner a:last-child { border-right: 0; }
.quicklinks-inner a:hover { opacity: 0.65; }

/* ── BUTTON ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--taupe);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: var(--taupe-dark); color: var(--white); }
.btn-light {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--taupe);
}
.btn-light:hover { background: var(--taupe); color: var(--white); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; background: var(--cream);
}
.cta-band-img { aspect-ratio: 4 / 5; overflow: hidden; }
.cta-band-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-content { padding: clamp(40px, 7vw, 100px) clamp(28px, 5vw, 80px); text-align: center; }
.cta-band-kicker {
  font-family: var(--font-ui);
  font-size: 0.74rem; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem; display: block;
}
.cta-band-content h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--brown);
}

/* ── PAGE HEROES ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 640px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
}
.page-hero img.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.4));
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  padding: var(--header-h) var(--gutter) clamp(40px, 6vw, 80px);
}
.page-hero-content .kicker {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--white); display: block; margin-bottom: 12px;
}
.page-hero-content h1 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--white);
  letter-spacing: 0;
}

.page-title {
  text-align: center;
  padding: clamp(72px, 10vw, 120px) var(--gutter) clamp(28px, 4vw, 56px);
  max-width: var(--max); margin: 0 auto;
}
.page-title .kicker {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--brown); display: block; margin-bottom: 8px;
}
.page-title h1, .page-title h2 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--brown); margin-bottom: 16px;
}
.page-title .lead {
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted); max-width: 680px;
  margin: 8px auto 0;
}
.title-divider {
  display: block; width: 1px; height: 48px;
  background: var(--border); margin: 24px auto 0;
}

.service-intro {
  max-width: 760px; margin: 0 auto;
  padding: clamp(20px, 4vw, 60px) var(--gutter) clamp(40px, 6vw, 80px);
  text-align: center;
}
.service-intro p {
  font-family: var(--font-body); font-weight: 300;
  font-size: 1.05rem; line-height: 1.85;
  color: var(--text); margin-bottom: 1.2rem;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1vw, 14px);
}
.gallery-grid img,
.gallery-grid picture img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 5; object-fit: cover;
}
.gallery-grid .wide { grid-column: span 2; aspect-ratio: 16 / 10; }
.gallery-grid .wide img { aspect-ratio: 16 / 10; }

/* Bruiloft cover grid (portfolio overview) */
.bruiloft-overview {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(20px, 4vw, 60px) var(--gutter) clamp(60px, 8vw, 120px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.bruiloft-card { display: block; text-align: center; padding: clamp(16px, 2vw, 24px); background: var(--white); border-radius: 4px; transition: transform 0.3s, box-shadow 0.3s; }
.bruiloft-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(107,93,79,0.08); }
.bruiloft-card-img { aspect-ratio: 5/4; overflow: hidden; background: var(--cream); margin-bottom: 18px; border-radius: 4px; }
.bruiloft-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bruiloft-card:hover .bruiloft-card-img img { transform: scale(1.04); }
.bruiloft-card-kicker { font-family: var(--font-ui); font-style: italic; font-size: 1rem; color: var(--muted); }
.bruiloft-card h3 { font-family: var(--font-heading); font-weight: 300; font-size: clamp(1.6rem, 2.4vw, 2.2rem); color: var(--brown); }

/* ── PACKAGES ─────────────────────────────────────────────── */
.packages { background: var(--white); padding: clamp(60px, 8vw, 110px) 0; }
.packages-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.packages h2 {
  text-align: center;
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.package {
  background: var(--cream);
  padding: clamp(28px, 3.4vw, 40px);
  text-align: center;
  border-radius: 4px;
  display: flex; flex-direction: column;
}
.package-kicker {
  font-family: var(--font-ui);
  font-size: 0.74rem; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.package h3 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--brown); margin-bottom: 14px;
}
.package ul { list-style: none; text-align: left; margin: 12px 0 24px; }
.package ul li {
  font-size: 0.95rem; line-height: 1.55;
  color: var(--text); padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.package ul li:last-child { border-bottom: 0; }
.package ul li.diff { font-weight: 400; color: var(--brown); }
.package-price {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 300;
  color: var(--brown);
  margin-top: auto; padding-top: 14px;
}
.packages-extras {
  margin-top: clamp(40px, 5vw, 64px);
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-page {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: var(--max); margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 120px);
  align-items: start;
}
.contact-info-box {
  background: var(--white);
  padding: clamp(28px, 3.4vw, 40px);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.contact-info-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 300; color: var(--brown);
  margin-bottom: 12px;
}
.contact-info-box p { line-height: 1.85; margin-bottom: 1rem; color: var(--text); }
.contact-info-box a { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; }
.contact-info-box a:hover { color: var(--taupe-dark); }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui); font-style: italic;
  font-size: 0.85rem; font-weight: 400;
  color: var(--muted); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-ui); font-size: 0.95rem;
  color: var(--text); background: var(--white);
  appearance: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--taupe);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
  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='%236b5d4f' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-page {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  position: relative;
}
.about-page .about-img.left   { aspect-ratio: 1/1.9; margin-top: clamp(20px, 4vw, 80px); }
.about-page .about-img.right  { aspect-ratio: 1/2.5; margin-top: clamp(80px, 12vw, 200px); }
.about-page .about-text { padding-top: clamp(10px, 2vw, 40px); }
.about-page .about-img { aspect-ratio: 3/4; overflow: hidden; background: var(--cream); border-radius: 4px; }
.about-page .about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-page .about-text h1, .about-page .about-text h2 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.85rem);
  color: var(--brown); text-align: center;
  margin-bottom: 12px;
}
.about-page .about-text .dot { display: block; text-align: center; color: var(--muted); margin-bottom: 28px; }
.about-page .about-text p {
  line-height: 1.95; margin-bottom: 1.4rem;
  color: var(--text); text-align: center; font-size: 1.16rem; font-weight: 300;
}
.about-twin {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
  display: grid; grid-template-columns: 1fr 1.3fr 1fr;
  gap: clamp(28px, 4vw, 80px); align-items: start;
}
.about-twin .img-col { aspect-ratio: 1/2; }
.about-twin .col { text-align: center; padding: 0 6px; }
.about-twin h3 {
  font-family: var(--font-ui); font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  color: var(--brown); margin-bottom: 24px; position: relative; letter-spacing: 0;
}
.about-twin h3::after {
  content: ''; display: block; width: 60px; height: 1px;
  background: var(--border); margin: 18px auto 0;
}
.about-twin p { font-size: 0.95rem; line-height: 1.85; color: var(--text); margin-bottom: 1rem; }
.about-twin .img-col { aspect-ratio: 3/4; overflow: hidden; background: var(--cream); border-radius: 4px; }
.about-twin .img-col img { width: 100%; height: 100%; object-fit: cover; }

/* ── INSTAGRAM FOOTER ─────────────────────────────────────── */
.ig-feed {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter) clamp(40px, 5vw, 60px);
}
.ig-feed-header {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--brown);
  padding: clamp(28px, 3vw, 40px) 0 clamp(20px, 2.5vw, 32px);
}
.ig-feed-header a { color: var(--brown); }
.ig-feed-header a:hover { color: var(--taupe-dark); }
.ig-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.ig-grid a { display: block; aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-grid a:hover img { transform: scale(1.05); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--cream); border-top: 1px solid var(--border); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: var(--muted);
}
.back-to-top { font-size: 0.9rem; color: var(--muted); text-transform: none; letter-spacing: 0; }
.back-to-top:hover { color: var(--brown); }

/* ── 404 ──────────────────────────────────────────────────── */
.error-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  text-align: center;
}
.error-page-inner { max-width: 560px; }
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 300; color: var(--border);
  line-height: 1; margin-bottom: 16px;
}
.error-page h1 {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px; color: var(--brown);
}
.error-page p { color: var(--muted); margin-bottom: 32px; }

/* ── A11Y ─────────────────────────────────────────────────── */
.skip-link {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.skip-link:focus, .skip-link:focus-visible {
  position: fixed !important; top: 12px; left: 12px;
  width: auto; height: auto; padding: 12px 18px;
  margin: 0; overflow: visible; clip: auto; clip-path: none;
  z-index: 9999; background: var(--brown); color: var(--white);
  font-size: 0.9rem; text-decoration: none;
}
:focus-visible { outline: 2px solid var(--brown); outline-offset: 2px; }
.hero :focus-visible, .page-hero :focus-visible { outline-color: var(--white); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .about-page { grid-template-columns: 1fr; }
  .about-page .about-img { max-width: 380px; margin: 0 auto; }
  .about-twin { grid-template-columns: 1fr; }
  .about-twin .img-col { max-width: 480px; margin: 0 auto; }
  .contact-page { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .about-teaser-inner { grid-template-columns: 1fr; }
  .about-teaser-img { max-width: 380px; margin: 0 auto; }
  .bruiloft-overview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  :root { --header-h: 70px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 2; }
  .quicklinks-inner { grid-template-columns: 1fr; }
  .quicklinks-inner a { border-right: 0; border-bottom: 1px solid var(--border); }
  .quicklinks-inner a:last-child { border-bottom: 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .ig-feed-header { flex-direction: column; gap: 8px; text-align: center; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { max-width: 100%; }
  .bruiloft-overview { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 480px) {
  .categories { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .wide { grid-column: span 1; }
}

/* Static IG fallback — used as default until Behold widget connects */
.ig-grid-static { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.ig-grid-static a { display: block; aspect-ratio: 1/1; overflow: hidden; background: var(--cream); border-radius: 2px; }
.ig-grid-static img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-grid-static a:hover img { transform: scale(1.05); }
@media (max-width: 760px) { .ig-grid-static { grid-template-columns: repeat(3, 1fr); } }

/* ── PRICING TOP STRIP (auto-scrolling photo carousel) ─── */
.pricing-strip {
  width: 100%;
  overflow: hidden;
  background: var(--cream);
  padding: 20px 0;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.pricing-strip-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: pricing-scroll 60s linear infinite;
}
.pricing-strip-track:hover { animation-play-state: paused; }
.pricing-strip-item {
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
}
.pricing-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
}
@keyframes pricing-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PRICING 2-COL INTRO ─────────────────────────────────── */
.pricing-intro-2col {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: clamp(40px, 5vw, 64px) 0;
}
.pricing-intro-2col-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.pricing-intro-2col-text {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 300;
  color: var(--text);
}
.pricing-intro-2col-text strong {
  font-weight: 600;
  color: var(--brown);
}
.pricing-intro-2col-tagline {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.3;
  color: var(--brown);
}

/* ── PACKAGE ROWS (alternating photo-text) ──────────────── */
.package-row {
  max-width: var(--max);
  margin: 0 auto clamp(60px, 8vw, 100px);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.package-row.reverse {
  grid-template-areas: "content image";
}
.package-row.reverse .package-row-image { grid-area: image; }
.package-row.reverse .package-row-content { grid-area: content; }
.package-row:not(.reverse) {
  grid-template-areas: "image content";
}
.package-row:not(.reverse) .package-row-image { grid-area: image; }
.package-row:not(.reverse) .package-row-content { grid-area: content; }
.package-row-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
.package-row-image img,
.package-row-image picture img {
  width: 100%; height: 100%; object-fit: cover;
}
.package-row-content .package-kicker {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--brown);
  margin-bottom: clamp(12px, 1.6vw, 20px);
}
.package-row-content h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--brown);
  margin-bottom: clamp(20px, 3vw, 36px);
  line-height: 1;
}
.package-row-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0 0 clamp(24px, 3vw, 40px);
}
.package-row-content ul li {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  padding: 4px 0;
}
.package-row-content ul li.diff {
  font-weight: 400;
  color: var(--brown);
}
.package-row-content .package-price {
  display: block;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--brown);
}

/* ── BOEK NU ROW ─────────────────────────────────────────── */
.boek-nu-row {
  text-align: center;
  margin: clamp(48px, 6vw, 80px) 0;
}

/* ── EXTRAS 2-COL ────────────────────────────────────────── */
.extras-2col {
  max-width: var(--max);
  margin: 0 auto clamp(60px, 8vw, 100px);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.extras-2col-content h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--brown);
  margin-bottom: clamp(24px, 3vw, 40px);
  line-height: 1;
}
.extras-2col-content p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.extras-2col-content p strong {
  font-weight: 600;
  color: var(--brown);
}
.extras-2col-content h3 {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin: clamp(28px, 3.5vw, 48px) 0 clamp(14px, 1.6vw, 22px);
}
.extras-2col-content .extras-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px clamp(20px, 3vw, 40px);
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.extras-2col-content .extras-cols ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0;
}
.extras-2col-content .extras-cols ul li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  font-weight: 300;
}
.extras-2col-content .extras-cta-line {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--brown);
  line-height: 1.3;
  margin: clamp(28px, 3.5vw, 48px) 0 clamp(20px, 2.5vw, 32px);
}
.extras-2col-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  position: sticky;
  top: clamp(100px, 12vw, 160px);
}
.extras-2col-image img,
.extras-2col-image picture img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Pricing block title */
.pricing-section-title {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) var(--gutter) clamp(28px, 4vw, 48px);
  max-width: var(--max);
  margin: 0 auto;
}
.pricing-section-title h1, .pricing-section-title h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--brown);
}
.packages-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--brown);
  margin: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 64px);
  line-height: 1.05;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-intro-2col-inner { grid-template-columns: 1fr; gap: 24px; }
  .package-row, .package-row.reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "content";
    gap: 28px;
  }
  .package-row .package-row-image,
  .package-row.reverse .package-row-image { grid-area: image; max-width: 480px; margin: 0 auto; }
  .package-row .package-row-content,
  .package-row.reverse .package-row-content { grid-area: content; }
  .extras-2col { grid-template-columns: 1fr; gap: 32px; }
  .extras-2col-image { position: static; max-width: 480px; margin: 0 auto; }
  .extras-2col-content .extras-cols { grid-template-columns: 1fr; }
}

/* ── WEDDING GALLERY (square 3-col grid) ──────────────────── */
.gallery-page-title {
  text-align: center;
  padding: clamp(48px, 7vw, 100px) var(--gutter) clamp(40px, 5vw, 70px);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery-page-title .subtitle {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: clamp(8px, 1.4vw, 18px);
}
.gallery-page-title h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.85rem);
  color: var(--brown);
  line-height: 1.05;
  letter-spacing: -0.005em;
}

.wedding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1vw, 16px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
}
.wedding-grid button.thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
  border: 0;
  padding: 0;
  cursor: zoom-in;
  border-radius: 2px;
  display: block;
  width: 100%;
}
.wedding-grid button.thumb img,
.wedding-grid button.thumb picture img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.3s ease;
}
.wedding-grid button.thumb:hover img { transform: scale(1.04); filter: brightness(1.04); }
.wedding-grid button.thumb:focus-visible { outline: 2px solid var(--brown); outline-offset: 4px; }

@media (max-width: 760px) {
  .wedding-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .wedding-grid { grid-template-columns: 1fr; }
}

/* ── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-figure {
  position: relative;
  width: calc(100% - clamp(80px, 14vw, 200px));
  max-width: 1400px;
  height: calc(100% - clamp(80px, 12vw, 160px));
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.lightbox-img.loaded {
  opacity: 1;
  transform: scale(1);
}
.lightbox-counter {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  z-index: 10;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: 0;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--brown);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
}
.lightbox-close { top: clamp(16px, 3vw, 32px); right: clamp(16px, 3vw, 32px); }
.lightbox-prev { top: 50%; left: clamp(16px, 3vw, 40px); transform: translateY(-50%); }
.lightbox-next { top: 50%; right: clamp(16px, 3vw, 40px); transform: translateY(-50%); }
.lightbox-close::before, .lightbox-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 1px;
  background: var(--brown);
  transition: background 0.2s;
}
.lightbox-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.lightbox-close:hover { transform: rotate(90deg); }

.lightbox-prev::after, .lightbox-next::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  border-top: 1px solid var(--brown);
  border-right: 1px solid var(--brown);
}
.lightbox-prev::after { transform: translate(-30%, -50%) rotate(-135deg); }
.lightbox-next::after { transform: translate(-70%, -50%) rotate(45deg); }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--taupe-dark); }
.lightbox-prev:hover::after { transform: translate(-40%, -50%) rotate(-135deg); }
.lightbox-next:hover::after { transform: translate(-60%, -50%) rotate(45deg); }

@media (max-width: 600px) {
  .lightbox-figure { width: calc(100% - 24px); height: calc(100% - 80px); }
  .lightbox-prev, .lightbox-next { display: none; }
  .lightbox-counter { top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox-img, .wedding-grid button.thumb img { transition: none !important; }
}

/* Subtle variant of quicklinks (used on gallery sub-pages) */
.quicklinks-wrap.subtle {
  max-width: var(--max);
  margin: clamp(48px, 7vw, 96px) auto clamp(48px, 6vw, 80px);
  padding: 0 var(--gutter);
}
.quicklinks-wrap.subtle .quicklinks {
  background: var(--white);
  border-radius: 4px;
}
.quicklinks-wrap.subtle .quicklinks-inner {
  padding: clamp(18px, 2.4vw, 28px) clamp(8px, 2vw, 24px);
}
.quicklinks-wrap.subtle .quicklinks-inner a {
  padding: clamp(10px, 1.2vw, 16px) clamp(12px, 2vw, 24px);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  border-right: 1px solid var(--border);
}
.quicklinks-wrap.subtle .quicklinks-inner a:hover { opacity: 0.55; }
.quicklinks-wrap.subtle .quicklinks-inner a:last-child { border-right: 0; }

/* ── LEGAL / PRIVACY PAGE ──────────────────────────────────── */
.legal-page {
  padding: clamp(80px, 11vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: var(--cream);
}
.legal-page-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal-page h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.85rem);
  color: var(--brown);
  margin-bottom: 0.4rem;
  line-height: 1.05;
}
.legal-page .legal-meta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.6rem;
  font-style: italic;
}
.legal-page h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--brown);
  margin: 2.6rem 0 0.9rem;
  line-height: 1.15;
}
.legal-page h3 {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin: 1.6rem 0 0.5rem;
  color: var(--brown);
}
.legal-page p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 300;
}
.legal-page a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-page a:hover { color: var(--taupe-dark); }
.legal-page .legal-list {
  margin: 0 0 1.4rem;
  padding-left: 1.4rem;
}
.legal-page .legal-list li {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-weight: 300;
}

/* Update footer to include legal info */
.footer-legal {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 0.4rem;
}
.footer-bottom-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── PORTRAIT PRICING NOTES (footnotes under packages) ───── */
.pricing-notes {
  list-style: disc;
  padding-left: 1.4rem;
  margin: clamp(40px, 5vw, 64px) auto 0;
  max-width: 600px;
}
.pricing-notes li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text);
  padding: 4px 0;
}

/* ── PRIJZEN PAGE SECTIONS (intro per shoot type) ────────── */
.prijzen-section {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) var(--gutter);
  text-align: center;
}
.prijzen-section-inner h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: clamp(16px, 2vw, 28px);
  line-height: 1.15;
}
.prijzen-section-inner p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  font-weight: 300;
}

/* ── FOOTER CONTACT ROW ──────────────────────────────────── */
.footer-contact-row {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer-contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 2.4vw, 32px) var(--gutter);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--brown);
  text-decoration: none;
  padding: 8px 4px;
  transition: color 0.2s, transform 0.2s;
}
.footer-contact-link:hover { color: var(--taupe-dark); transform: translateY(-1px); }
.footer-contact-link svg { flex-shrink: 0; opacity: 0.85; }
@media (max-width: 600px) {
  .footer-contact-inner { gap: 14px; }
  .footer-contact-link { font-size: 0.85rem; }
}

/* ── FORM CONDITIONAL FIELD (date appears for trouw) ─────── */
.form-group-conditional {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
}
.form-group-conditional[hidden] { display: none; }
.form-group-conditional.visible {
  max-height: 240px;
  opacity: 1;
  margin-bottom: 1.1rem;
}
.form-help {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 6px;
  font-family: var(--font-body);
}

/* ── MID-GALLERY CTA (subtle) ────────────────────────────── */
.gallery-mid-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 60px);
  text-align: center;
}
.gallery-mid-cta .line {
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 200px;
}
.gallery-mid-cta-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--brown);
  white-space: normal;
}
.gallery-mid-cta-text a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: text-decoration-thickness 0.2s;
}
.gallery-mid-cta-text a:hover { text-decoration-thickness: 2px; }

/* ── SCROLL-REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
