/* =========================================================
   Femke's Fotografie — stylesheet
   Mobile-first, cream/blush/sage/gold palette
   ========================================================= */

:root {
  --cream: #F7F3EE;
  --warm-white: #FDFBF8;
  --blush: #E8CFC0;
  --blush-light: #F2E4DA;
  --sage: #B5BFA8;
  --sage-dark: #8A9A78;
  --charcoal: #3A3632;
  --brown: #8B7355;
  --brown-light: #A89279;
  --text: #4A4440;
  --text-light: #7A7470;
  --gold: #C4A97D;
  --terracotta: #B5714B;
  --terracotta-dark: #9A5E3D;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
}

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* voorkomt dat anchor-navigatie content onder sticky nav verbergt */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px; /* min 16px, voorkomt iOS-zoom op inputs */
}

img, picture { max-width: 100%; display: block; }

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  font-size: 0.85rem;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 2px;
}

/* ── Preloader ── */
.preloader {
  position: fixed; inset: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--brown);
  letter-spacing: 0.02em;
  animation: breathe 2s ease-in-out infinite;
}
.preloader-logo {
  max-width: 180px;
  width: 60%;
  height: auto;
  object-fit: contain;
  animation: breathe 2s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Navigation ── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  min-height: 74px;
}
#navbar.scrolled {
  padding: 0.5rem 1.5rem;
  background: rgba(247, 243, 238, 0.96);
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.nav-logo {
  display: block;
  line-height: 0; /* voorkomt inline-baseline gap onder img */
  transition: transform 0.4s ease;
}
.nav-logo img {
  display: block;
  width: auto;
  /* Vloeiend mee-schalen met viewport:
     140px @ ±375vw  →  240px @ ≥1250vw.
     Logo-aspect 851:287 (~2.965:1), dus natural height = width/2.965. */
  max-width: clamp(140px, calc(12vw + 90px), 240px);
  max-height: 82px; /* veiligheidsplafond — bindt zelden */
  object-fit: contain;
  transition: max-width 0.4s ease, max-height 0.4s ease;
}
#navbar.scrolled .nav-logo img {
  /* Scroll-shrink schaalt ook mee met viewport.
     Op smalle schermen bijna geen shrink (logo is al klein),
     op desktop shrink zichtbaar naar ±85% van max-height. */
  max-height: clamp(48px, calc(4vw + 30px), 68px);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  padding: 0.5rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--brown);
  transition: width 0.4s ease;
}
/* Keyboard-focus toont de underline altijd (toegankelijkheid) */
.nav-links a:focus-visible { color: var(--brown); }
.nav-links a:focus-visible::after { width: 100%; }

/* Hover-effect alleen op apparaten met echte hover/muis — voorkomt
   blijvende underline bij een tap op touchscreen */
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--brown); }
  .nav-links a:hover::after { width: 100%; }
}

/* Subtiele terugkoppeling bij tap op touch (geen underline) */
.nav-links a:active { color: var(--brown); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none;
  padding: 10px;
  margin: -10px; /* behoud touch-target van 44×44 zonder visuele padding */
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — volledig dekkend zodat content eronder niet doorschijnt */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  background: var(--cream);
  padding: 1.5rem 2rem;
  gap: 0.5rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(58,54,50,0.18);
  border-top: 1px solid var(--blush);
}
.nav-links.active a {
  padding: 1rem 0; /* voldoende touch-target */
}

/* ── Hero (split-layout) ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.hero-content {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  background: var(--cream);
  position: relative;
  flex: 1;
  min-height: 70vh;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 11vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--brown);
  font-weight: 300;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-style: italic;
  color: var(--brown);
  max-width: 420px;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.85s forwards;
}
.hero-meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--blush-light);
  min-height: 55vh;
  aspect-ratio: 3 / 4;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: none; /* verborgen op mobiel om ruimte te besparen */
  flex-direction: column;
  align-items: center; gap: 0.5rem;
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--brown), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  text-decoration: none;
  transition: all 0.4s ease;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid transparent;
  min-height: 44px;
  line-height: 1.3;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: transparent;
  color: var(--charcoal);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--brown-light);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-group {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.15s forwards;
  flex-wrap: wrap;
}

/* ── Section base ── */
section {
  padding: 5rem 1.5rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--brown); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-intro {
  font-size: 1.02rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ── About ── */
.about { background: var(--warm-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  border-radius: 180px 180px 12px 12px;
  background: var(--blush-light);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image::after {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 170px 170px 6px 6px;
  pointer-events: none;
  z-index: 1;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.about-signature {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--brown);
  margin-top: 1.5rem;
}

/* ── Categorie-secties (zwangerschap/newborn/familie) ── */
.category {
  background: var(--warm-white);
}
.category:nth-of-type(even) {
  background: var(--cream);
}
.category-intro {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: var(--text-light);
}

/* Single-foto categorie-layout (foto + tekst naast elkaar op desktop) */
.category-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.category-text .section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}
.category-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--blush-light);
}
.category-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Portfolio grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.portfolio-figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  background: var(--blush-light);
  cursor: zoom-in;
}
.portfolio-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.portfolio-figure:hover img,
.portfolio-figure:focus-visible img { transform: scale(1.04); }
.portfolio-figure::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(58,54,50,0);
  transition: background 0.5s ease;
  pointer-events: none;
}
.portfolio-figure:hover::after { background: rgba(58,54,50,0.12); }

/* ── Portfolio / collage ── */
.portfolio { background: var(--cream); }
.portfolio .section-head { margin-bottom: 2.5rem; }

.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.collage-figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  background: var(--blush-light);
  cursor: zoom-in;
}
/* Landscape-accenten: rustpunten in het raster.
   Op elk breakpoint span 2 kolommen + 3:2 verhouding. */
.collage-grid .is-landscape {
  grid-column: span 2;
  aspect-ratio: 3/2;
}
.collage-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.collage-figure::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(58,54,50,0);
  transition: background 0.5s ease;
  pointer-events: none;
}
.collage-figure:focus-visible img { transform: scale(1.04); }
.collage-figure:focus-visible::after { background: rgba(58,54,50,0.12); }
@media (hover: hover) and (pointer: fine) {
  .collage-figure:hover img { transform: scale(1.04); }
  .collage-figure:hover::after { background: rgba(58,54,50,0.12); }
}

/* ── Het pakket (terracotta kaart) ── */
.package { background: var(--warm-white); }
.package-card {
  background: var(--terracotta);
  color: var(--cream);
  padding: 3rem 2rem;
  max-width: 520px;
  margin: 2.5rem auto 0;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(181,113,75,0.2);
}
.package-card::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(253,251,248,0.3);
  pointer-events: none;
}
.package-card .package-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(253,251,248,0.85);
  margin-bottom: 0.75rem;
}
.package-card .package-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.package-card .package-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0 1.5rem;
}
.package-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 320px;
  margin: 0 auto 1.5rem;
}
.package-card ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(253,251,248,0.95);
  line-height: 1.5;
}
.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0.5rem;
  color: var(--gold);
  font-weight: 500;
}
.package-card .package-note {
  font-size: 0.82rem;
  color: rgba(253,251,248,0.75);
  font-style: italic;
  margin-top: 1rem;
}

/* ── Werkwijze / Process ── */
.process { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.process-step { text-align: center; }
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--brown);
  transition: all 0.4s ease;
}
.process-step:hover .step-circle {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 280px;
  margin: 0 auto;
}

/* ── FAQ ── */
.faq { background: var(--warm-white); }
.faq-list {
  max-width: 780px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--blush);
}
.faq-item:first-child { border-top: 1px solid var(--blush); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
  min-height: 44px;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--brown); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brown);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ── Contact ── */
.contact { background: var(--warm-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-intro {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group { position: relative; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--blush);
  background: transparent;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0; /* voorkomt iOS rounded corners op inputs */
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
}
.form-group select {
  background-image: linear-gradient(45deg, transparent 50%, var(--brown) 50%),
                    linear-gradient(135deg, var(--brown) 50%, transparent 50%);
  background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brown); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); font-weight: 300; }
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── Form: honeypot onzichtbaar houden ──
   Gescoped om niet te botsen met .preloader.hidden (fade-out). */
.contact-form .hidden {
  display: none !important;
}

/* ── Form: feedback bij submit ── */
#form-feedback {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  min-height: 0;
}
#form-feedback:empty { margin-top: 0; }
#form-feedback.is-success { color: var(--sage-dark); }
#form-feedback.is-error   { color: var(--terracotta-dark); }

/* Bedankbericht dat het form vervangt na succesvolle submit. */
.form-thanks {
  margin-top: 0;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--sage-dark);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.form-thanks.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Form: field-level error-state ── */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-bottom-color: var(--terracotta-dark);
}
.form-group.has-error label {
  color: var(--terracotta-dark);
}
.field-error {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--terracotta-dark);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p {
  color: var(--text-light);
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-social a,
.contact-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--blush);
  border-radius: 50%;
  color: var(--brown);
  text-decoration: none;
  transition: all 0.3s;
}
.contact-social a:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.contact-social svg {
  width: 18px; height: 18px;
}
.contact-social .disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Footer ── */
footer {
  background: var(--charcoal);
  color: rgba(253,251,248,0.5);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.footer-logo {
  max-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(253,251,248,0.5);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 0.5rem;
}
.footer-links a:focus-visible { color: var(--gold); }
@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover { color: var(--gold); }
}
.footer-region {
  font-size: 0.82rem;
  color: rgba(253,251,248,0.55);
  letter-spacing: 0.05em;
}
footer small {
  font-size: 0.75rem;
  color: rgba(253,251,248,0.3);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Decorative divider ── */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.divider-line { flex: 1; height: 1px; background: var(--blush); }
.divider-icon {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown);
  font-style: italic;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9998;
  background: rgba(58,54,50,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  color: var(--cream);
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   Tablet (≥ 640px)
   ========================================================= */
@media (min-width: 640px) {
  section { padding: 6rem 2rem; }

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

  /* Collage: 3-koloms op tablet */
  .collage-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

  footer { padding: 3.5rem 2rem; }
  .footer-inner { flex-direction: row; justify-content: space-between; flex-wrap: wrap; }

  #navbar { padding: 1rem 2.5rem; }
  #navbar.scrolled { padding: 0.5rem 2.5rem; }

  .package-card { padding: 4rem 3rem; }
}

/* =========================================================
   Desktop (≥ 1024px)
   ========================================================= */
@media (min-width: 1024px) {
  section { padding: 7rem 3rem; }

  /* Hero: split 50/50 */
  .hero {
    flex-direction: row;
    min-height: 100vh;
  }
  .hero-content {
    flex: 1;
    padding: 4rem 5rem;
    min-height: 100vh;
  }
  .hero-content::after {
    content: '';
    position: absolute; top: 15%; right: 0;
    width: 1px; height: 70%;
    background: linear-gradient(to bottom, transparent, var(--blush), transparent);
  }
  .hero-image {
    flex: 1;
    min-height: 100vh;
    aspect-ratio: auto;
  }
  .hero-scroll { display: flex; }

  /* Navigation */
  #navbar { padding: 1rem 3.5rem; }
  #navbar.scrolled { padding: 0.5rem 3.5rem; }
  .nav-links { display: flex; }
  .hamburger { display: none; }
  #navbar { min-height: 78px; }
  /* Logo-afmetingen worden nu vloeiend door de clamp() in de basisregel bepaald;
     geen harde desktop-overrides meer nodig. */

  /* About split */
  .about-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
  .about-image { max-width: none; }

  /* Portfolio grid: 3 kolommen (legacy) */
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  /* Collage: 4-koloms op desktop, uniform raster */
  .collage-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  /* Categorie split-layouts op desktop */
  .category-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .category--image-left .category-image { order: 1; }
  .category--image-left .category-text  { order: 2; }
  .category--image-right .category-image { order: 2; }
  .category--image-right .category-text  { order: 1; }

  /* Process */
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }

  /* Contact split */
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  /* Section padding ruimer */
  section { padding: 8rem 3rem; }

  footer { padding: 4rem 3rem; }
}

/* =========================================================
   Extra wide (≥ 1280px)
   ========================================================= */
@media (min-width: 1280px) {
  #navbar { padding: 1.25rem 4rem; }
  #navbar.scrolled { padding: 0.6rem 4rem; }
  .hero-content { padding: 4rem 6rem; }
  section { padding: 8rem 4rem; }
}
