/* ============================================
   Kate & Touch — Atelier Edition
   Stijlvolle dames- en herenkleding in Lebbeke
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Palette — ivory off-white + chestnut + deep drama */
  --bg: #fbf8f1;
  --bg-alt: #f1ede4;
  --surface: #ffffff;
  --ink: #14100a;
  --ink-soft: #46382c;
  --text-light: #8a7c6a;
  --accent: #9b8b56;
  --accent-hover: #786a3f;
  --accent-soft: #c8b985;
  --wine: #2a1a1a;
  --wine-soft: #3e2525;
  --border: rgba(20, 16, 10, 0.1);
  --border-soft: rgba(20, 16, 10, 0.05);
  --shadow: 0 20px 60px rgba(20, 16, 10, 0.06);
  --shadow-warm: 0 12px 40px rgba(107, 59, 42, 0.1);

  /* Typography — Lora (editorial serif) + Poppins (modern sans) */
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-heading: 'Lora', Georgia, serif;

  /* Layout */
  --max-width: 1260px;
  --nav-height: 76px;
  --section-padding: clamp(5rem, 10vw, 9rem);

  /* Shape — sharp, editorial */
  --radius: 1px;
  --radius-lg: 3px;

  /* Motion */
  --transition: 280ms cubic-bezier(0.33, 1, 0.68, 1);
  --transition-slow: 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #fbf8f1;
}
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga";
  position: relative;
}

/* Subtle paper grain texture (SVG noise) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

[id] { scroll-margin-top: calc(var(--nav-height) + 1.5rem); }

/* --- Typography — warm serif-driven hierarchy --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 8vw, 6rem); font-style: italic; font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); font-weight: 500; }
h4 { font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 500; }

p {
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
}

em { font-style: italic; }

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Eyebrow — small caps, refined */
.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Italic accent — editorial warmth */
.script {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.005em;
}

/* Section head — editorial magazine feature */
.section-head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-head-body {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}
.section-head h2 {
  margin: 0;
  max-width: 22ch;
  font-weight: 400;
}
.section-head .section-lead {
  margin-top: 1.25rem;
  max-width: 48ch;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--ink-soft);
  line-height: 1.65;
  font-style: italic;
}

/* Ornament — small decorative flourish divider */
.ornament {
  display: block;
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto;
  color: var(--accent);
  opacity: 0.5;
}

/* --- Skip Link --- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 24px;
  font-weight: 500;
  z-index: 10001;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* --- Focus --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  min-height: 50px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
@media (hover: hover) {
  .btn-primary:hover { background: var(--accent); border-color: var(--accent); }
  .btn-outline-dark:hover { background: var(--ink); color: var(--surface); }
}

/* ============================================
   NAVBAR — always solid, readable on every bg
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
/* When mobile menu is open, fade navbar so dark menu fills the screen — X stays visible on dark */
.navbar:has(.navbar-toggle.active) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.navbar:has(.navbar-toggle.active) .navbar-logo-text {
  color: var(--bg);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
}
.navbar-logo img {
  height: 56px;
  width: auto;
  border-radius: 50%;
}
.navbar-logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color var(--transition);
}
.navbar-logo-text .amp,
.footer-brand-name .amp,
.mobile-menu-brandname .amp {
  font-family: var(--font);
  font-weight: 700;
  font-style: normal;
  color: var(--accent);
  display: inline-block;
  padding: 0 0.08em;
  font-size: 0.92em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.8vw, 2.75rem);
}
.nav-links a {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
@media (hover: hover) {
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after,
  .nav-links a.active::after { width: 100%; }
}

.navbar-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(20, 16, 10, 0.05);
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.navbar-toggle span:nth-child(1) { margin-bottom: 6px; }
.navbar-toggle span:nth-child(3) { margin-top: 6px; }
.navbar-toggle.active span { background: var(--bg); }
.navbar-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   MOBILE MENU — Editorial atelier takeover
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  background: var(--wine);
  color: var(--bg);
  z-index: 999;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* Paper grain on menu */
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  z-index: 0;
}

/* Menu header — brand mark (pushed below navbar) */
.mobile-menu-header {
  padding: calc(var(--nav-height) + clamp(1.25rem, 4vh, 2rem)) clamp(1.75rem, 6vw, 2.5rem) 1.5rem;
  position: relative;
  z-index: 1;
}
.mobile-menu-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}
.mobile-menu.open .mobile-menu-brand {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-hello {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--accent-soft);
  line-height: 1;
}
.mobile-menu-brandname {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Menu nav */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: clamp(0.5rem, 2vh, 1.5rem) clamp(1.75rem, 6vw, 2.5rem);
  position: relative;
  z-index: 1;
}
.mobile-menu-nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: clamp(0.625rem, 1.5vh, 0.875rem) 0;
  border-bottom: 1px solid rgba(251, 248, 241, 0.1);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.875rem, 7vw, 2.5rem);
  color: var(--bg);
  letter-spacing: -0.015em;
  line-height: 1.15;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.55s ease, transform 0.55s ease, color var(--transition);
}
.mobile-menu-nav a:last-child { border-bottom: none; }
@media (hover: hover) {
  .mobile-menu-nav a:hover {
    color: var(--accent-soft);
  }
}
.mobile-menu.open .mobile-menu-nav a { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.34s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.40s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.46s; }

/* Menu footer — contact card */
.mobile-menu-footer {
  padding: clamp(1rem, 3vh, 1.75rem) clamp(1.75rem, 6vw, 2.5rem) clamp(1.75rem, 4vh, 2.5rem);
  border-top: 1px solid rgba(251, 248, 241, 0.12);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.mobile-menu.open .mobile-menu-footer { opacity: 1; transform: translateY(0); }

.mm-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bg);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.375rem;
  font-weight: 400;
  transition: color var(--transition);
}
.mm-phone svg { flex-shrink: 0; color: var(--accent-soft); }
@media (hover: hover) {
  .mm-phone:hover { color: var(--accent-soft); }
}
.mm-address {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: rgba(251, 248, 241, 0.7);
  line-height: 1.5;
}
.mm-hours {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(251, 248, 241, 0.55);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============================================
   HERO — Editorial atelier split
   ============================================ */
/* ============================================
   HERO — 3-strip lookbook with centered brand card
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--bg);
  overflow: hidden;
}

.hero-strips {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(0.5rem, 0.8vw, 0.75rem);
  padding: clamp(0.5rem, 0.8vw, 0.75rem);
}
.hero-strip {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.hero-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
  opacity: 0;
  transform: scale(1.04);
  animation: heroStripIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-strip:nth-child(1) img { object-position: center 18%; animation-delay: 0.05s; }
.hero-strip:nth-child(2) img { object-position: center 18%; animation-delay: 0.18s; }
.hero-strip:nth-child(3) img { object-position: center 18%; animation-delay: 0.31s; }

@keyframes heroStripIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* Centered brand card overlaid on middle strip */
.hero-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  padding: clamp(2rem, 4.5vw, 3.75rem) clamp(1.75rem, 4vw, 4rem);
  text-align: center;
  width: min(90%, 540px);
  z-index: 2;
  box-shadow: 0 40px 80px -24px rgba(20, 16, 10, 0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: heroCardIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}
@keyframes heroCardIn {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 18px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.hero-eyebrow {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 clamp(1rem, 1.5vw, 1.25rem);
  white-space: nowrap;
}
.hero-amp {
  font-family: var(--font);
  color: var(--accent);
  font-weight: 700;
  font-style: normal;
  font-size: 0.85em;
  display: inline-block;
  padding: 0 0.08em;
  vertical-align: 0.06em;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.15vw, 1.1875rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 30ch;
  line-height: 1.5;
  margin: 0 0 clamp(1.75rem, 2.5vw, 2rem);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  transition: color var(--transition), border-color var(--transition), gap var(--transition);
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}
.hero-cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
@media (hover: hover) {
  .hero-cta:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    gap: 20px;
  }
  .hero-cta:hover svg { transform: translateX(4px); }
}

.hero-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  border-top: 1px solid var(--border);
  width: 100%;
}
.hero-card-meta-sep { color: var(--accent-soft); }


/* ============================================
   ABOUT — Pull quote atelier
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  background: var(--bg);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: stretch;
}
.about-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2vw, 2rem) 0;
}
.about-eyebrow {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.about-text h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.about-text h2 em {
  color: var(--accent);
  font-style: italic;
}
.about-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  line-height: 1.3;
  color: var(--ink);
  max-width: 24ch;
  margin: 0 0 clamp(2rem, 3vw, 2.5rem);
  position: relative;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 2px solid var(--accent);
}
.about-text p {
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  max-width: 48ch;
  font-weight: 400;
}
.about-text p:last-of-type { margin-bottom: 0; }
.about-sig {
  display: block;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}
.about-sig-script {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.about-sig-role {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================
   MERKEN — Editorial wordmark index
   ============================================ */
.merken {
  padding: var(--section-padding) 0;
  background: var(--bg-alt);
  position: relative;
}
.merken-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 8vw, 7rem);
}
.merken-col-head {
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.merken-col-head h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.merken-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.merken-list li {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color var(--transition), transform var(--transition), padding-left var(--transition);
  cursor: default;
  position: relative;
}
@media (hover: hover) {
  .merken-list li:hover {
    color: var(--accent);
    font-style: italic;
    padding-left: 0.625rem;
  }
}

/* ============================================
   COLLECTIE — Asymmetric editorial grid
   ============================================ */
.collectie {
  padding: var(--section-padding) 0;
  background: var(--bg);
  position: relative;
}
.collectie-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.collectie-item {
  overflow: hidden;
  position: relative;
  background: var(--bg-alt);
}
.collectie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: saturate(0.82) contrast(0.96) sepia(0.04);
}
@media (hover: hover) {
  .collectie-item:hover img { filter: saturate(1) contrast(1) sepia(0); }
}
@media (hover: hover) {
  .collectie-item:hover img { transform: scale(1.05); }
}

/* Set Black & White — pair */
.collectie-item:nth-child(1) { grid-column: span 6; aspect-ratio: 3 / 4; }
.collectie-item:nth-child(2) { grid-column: span 6; aspect-ratio: 3 / 4; }
/* Set Blauw — quartet */
.collectie-item:nth-child(3) { grid-column: span 3; aspect-ratio: 3 / 4; }
.collectie-item:nth-child(4) { grid-column: span 3; aspect-ratio: 3 / 4; }
.collectie-item:nth-child(5) { grid-column: span 3; aspect-ratio: 3 / 4; }
.collectie-item:nth-child(6) { grid-column: span 3; aspect-ratio: 3 / 4; }
/* Set Fluo — 5 items: 7+5 then 4+4+4 */
.collectie-item:nth-child(7) { grid-column: span 7; aspect-ratio: 4 / 3; }
.collectie-item:nth-child(8) { grid-column: span 5; aspect-ratio: 3 / 4; }
.collectie-item:nth-child(9) { grid-column: span 4; aspect-ratio: 3 / 4; }
.collectie-item:nth-child(10) { grid-column: span 4; aspect-ratio: 3 / 4; }
.collectie-item:nth-child(11) { grid-column: span 4; aspect-ratio: 3 / 4; }
/* Set Man — 5 items: 5+7 then 4+4+4 (tall fashion crop) */
.collectie-item:nth-child(12) { grid-column: span 5; aspect-ratio: 3 / 4; }
.collectie-item:nth-child(13) { grid-column: span 7; aspect-ratio: 4 / 3; }
.collectie-item:nth-child(14) { grid-column: span 4; aspect-ratio: 1 / 2; }
.collectie-item:nth-child(15) { grid-column: span 4; aspect-ratio: 1 / 2; }
.collectie-item:nth-child(16) { grid-column: span 4; aspect-ratio: 1 / 2; }

/* ============================================
   WINKEL — Dark editorial spread (drama + invite)
   ============================================ */
.winkel {
  padding: var(--section-padding) 0;
  background: var(--wine);
  color: var(--bg);
  position: relative;
}
.winkel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  z-index: 0;
}
.winkel .container { position: relative; z-index: 1; }
.winkel .section-head { border-bottom-color: rgba(251, 248, 241, 0.2); }
.winkel .section-head .eyebrow { color: var(--accent-soft); }
.winkel .section-head h2 { color: var(--bg); }
.winkel .section-head .section-lead { color: rgba(251, 248, 241, 0.78); }

/* Editorial spread: storefront feature + invite-card + 2 interior accents */
.winkel-spread {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.winkel-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--wine-soft);
}
.winkel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.95);
}
@media (hover: hover) {
  .winkel-photo:hover img { transform: scale(1.04); }
}

/* Storefront — large feature, top-left, spans 7 cols × 2 rows */
.winkel-photo--gevel {
  grid-column: span 7;
  grid-row: span 2;
  aspect-ratio: 3 / 2;
}
.winkel-photo-tag {
  position: absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  padding: 0.625rem 1rem;
  background: rgba(20, 16, 10, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  pointer-events: none;
}

/* Wide interior accent — spans 7 cols below the gevel-pasakamer pair */
.winkel-photo--interieur {
  grid-column: span 7;
  aspect-ratio: 3 / 2;
}

/* Tall fitting-rooms photo — right column, spans both rows for height */
.winkel-photo--paskamer {
  grid-column: span 5;
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}

/* Invite card — sits in the right column above the paskamer photo */
.winkel-invite {
  grid-column: span 5;
  background: var(--bg);
  color: var(--ink);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.winkel-invite-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.winkel-invite-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.winkel-invite-address {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  color: var(--ink);
  line-height: 1.35;
}
.winkel-invite-hours {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.5rem;
  padding-top: clamp(0.875rem, 1.5vw, 1.125rem);
  border-top: 1px solid var(--border);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.winkel-invite-hours span { white-space: nowrap; }

.winkel-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
  align-self: flex-start;
  transition: color var(--transition), border-color var(--transition), gap var(--transition);
}
.winkel-cta svg { width: 14px; height: 14px; transition: transform var(--transition); }
@media (hover: hover) {
  .winkel-cta:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    gap: 18px;
  }
  .winkel-cta:hover svg { transform: translateX(4px); }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 7, 4, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.08);
  transition: background var(--transition);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { top: 50%; left: 1.5rem; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 1.5rem; transform: translateY(-50%); }
@media (hover: hover) {
  .lightbox-close:hover,
  .lightbox-prev:hover,
  .lightbox-next:hover { background: rgba(251, 248, 241, 0.18); }
}
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(251, 248, 241, 0.65);
  font-family: var(--font);
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0.16em;
}

/* ============================================
   FAQ — editorial Q&A list
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--bg-alt);
  position: relative;
}
.faq-list {
  max-width: 820px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  cursor: pointer;
  list-style: none;
  padding: clamp(1.25rem, 2vw, 1.625rem) clamp(0.5rem, 1.5vw, 1rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314100a' stroke-width='1.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
@media (hover: hover) {
  .faq-question:hover { color: var(--accent); }
}
.faq-answer {
  padding: 0 clamp(0.5rem, 1.5vw, 1rem) clamp(1.25rem, 2vw, 1.625rem);
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 68ch;
}
.faq-answer p { margin: 0; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  background: var(--bg);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 40%;
  background: var(--accent);
}
.contact-block h4 {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.875rem;
}
.contact-block p,
.contact-block a {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.contact-block a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
@media (hover: hover) {
  .contact-block a:hover { color: var(--accent); }
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--border-soft);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row:first-child { padding-top: 0; }
.hours-day { white-space: nowrap; }
.hours-time { text-align: right; color: var(--ink-soft); font-weight: 400; }
.hours-closed { font-style: italic; color: var(--accent); font-weight: 400; }

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid var(--ink-soft);
  transition: color var(--transition), border-color var(--transition);
}
.contact-social svg { width: 14px; height: 14px; }
@media (hover: hover) {
  .contact-social:hover { color: var(--accent); border-color: var(--accent); }
}

/* Contact Form */
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
}
.contact-form-wrapper .eyebrow { margin-bottom: 1rem; }
.contact-form-wrapper h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: clamp(1.75rem, 2.5vw, 2.25rem);
  max-width: 22ch;
  letter-spacing: -0.02em;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--ink-soft);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107, 59, 42, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.55;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}
.form-checkbox label {
  font-size: 0.875rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.form-submit {
  align-self: flex-start;
  min-width: 220px;
  margin-top: 0.75rem;
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  min-height: 1.5rem;
}
.form-status.success { color: #4a7c3c; }
.form-status.error { color: #b33a2a; }
.form-notice {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.55;
  font-family: var(--font-heading);
}
.form-recaptcha-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
  opacity: 0.7;
  line-height: 1.6;
}
.form-recaptcha-disclaimer a {
  color: var(--text-light);
  text-decoration: underline;
}

/* Map */
.contact-map {
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.8) contrast(1.03) sepia(0.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}
.footer > .container { position: relative; z-index: 1; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(251, 248, 241, 0.14);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.footer-col--brand {
  gap: 1.25rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: -0.01em;
  line-height: 1;
}
.footer-tagline {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0;
}
.footer-address {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-style: normal;
  color: rgba(251, 248, 241, 0.7);
  line-height: 1.6;
  text-decoration: none;
  transition: color var(--transition);
}
@media (hover: hover) {
  .footer-address:hover { color: var(--bg); }
}

.footer-heading {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 0.25rem;
}

.footer-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  color: rgba(251, 248, 241, 0.78);
  line-height: 1.4;
}
.footer-hours li {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.footer-hours li > span:first-child {
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: rgba(251, 248, 241, 0.55);
}
.footer-hours li > span:last-child {
  color: rgba(251, 248, 241, 0.85);
}

.footer-contact-list,
.footer-nav,
.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-family: var(--font);
  font-size: 0.875rem;
}
.footer-legal {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(251, 248, 241, 0.1);
}
.footer-legal li > a,
.footer-legal li > button {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-contact-list a,
.footer-nav a,
.footer-legal a,
.footer-legal button {
  color: rgba(251, 248, 241, 0.72);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color var(--transition);
}
@media (hover: hover) {
  .footer-contact-list a:hover,
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-legal button:hover { color: var(--bg); }
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-social svg {
  flex-shrink: 0;
  opacity: 0.85;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copyright {
  font-family: var(--font);
  font-size: 0.75rem;
  color: rgba(251, 248, 241, 0.4);
}
.footer-agency img {
  height: 36px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition);
}
@media (hover: hover) {
  .footer-agency img:hover { opacity: 1; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (hover: hover) {
  .back-to-top:hover { background: var(--accent); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.stagger-children > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger-children.revealed > * { opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.47s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.54s; }
.stagger-children.revealed > *:nth-child(9) { transition-delay: 0.61s; }
.stagger-children.revealed > *:nth-child(10) { transition-delay: 0.68s; }
.stagger-children.revealed > *:nth-child(11) { transition-delay: 0.75s; }

/* reCAPTCHA badge hidden (disclaimer in form) */
.grecaptcha-badge { visibility: hidden !important; }

/* Form success */
.form-success-checkmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  text-align: center;
}
.form-success-checkmark svg { width: 56px; height: 56px; }
.form-success-checkmark p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1875rem;
  color: var(--ink);
  max-width: 32ch;
  line-height: 1.5;
}
.checkmark-circle {
  stroke: #4a7c3c;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  fill: none;
  animation: checkmarkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-check {
  stroke: #4a7c3c;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  fill: none;
  animation: checkmarkStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}
@keyframes checkmarkStroke { 100% { stroke-dashoffset: 0; } }

/* Privacy policy */
.privacy-policy {
  padding: calc(var(--nav-height) + 3rem) 0 var(--section-padding);
  max-width: 760px;
  margin: 0 auto;
}
.privacy-policy h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.privacy-policy h2 {
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  font-style: italic;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.privacy-policy h2:first-of-type { margin-top: 0; }
.privacy-policy p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.privacy-policy a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
@media (hover: hover) {
  .privacy-policy a:hover { color: var(--accent-hover); }
}

/* ============================================
   RESPONSIVE — TABLET (≤1024)
   ============================================ */
@media (max-width: 1024px) {
  .hero-strips { grid-template-columns: 1fr 1.4fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .winkel-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768)
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .navbar-toggle { display: flex; }
  .navbar-scrolled .navbar-logo-text { color: var(--ink); }

  /* Hero — mobile: alleen midden-strip + card daaronder, niet overlaid */
  .hero { min-height: auto; }
  .hero-strips {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    height: 60svh;
  }
  .hero-strip:nth-child(1),
  .hero-strip:nth-child(3) { display: none; }
  .hero-strip--main { width: 100%; height: 100%; }
  .hero-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: clamp(2rem, 5vh, 2.75rem) 1.5rem clamp(2.25rem, 4vh, 3rem);
    animation: none;
    opacity: 1;
  }
  .hero-title { font-size: clamp(2.5rem, 10.5vw, 4rem); white-space: nowrap; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { aspect-ratio: 4 / 5; max-width: 560px; margin: 0 auto; width: 100%; }

  /* Merken — stack columns */
  .merken-columns { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Collectie — all items equal on mobile */
  .collectie-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .collectie-item:nth-child(n) { grid-column: span 1; aspect-ratio: 3 / 4; }
  /* Hero-row per set on mobile: full-width opener for each new set */
  .collectie-item:nth-child(1),
  .collectie-item:nth-child(7),
  .collectie-item:nth-child(12) { grid-column: span 2; aspect-ratio: 4 / 5; }

  /* Winkel — mobile: stack alles full-width */
  .winkel-spread {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .winkel-photo--gevel,
  .winkel-photo--interieur {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 3 / 2;
  }
  .winkel-photo--paskamer {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }
  .winkel-invite {
    grid-column: span 1;
    padding: clamp(1.75rem, 5vw, 2.25rem) 1.5rem;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-map { aspect-ratio: 16 / 11; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem 1.5rem; }
  .footer-legal { flex-direction: row; flex-wrap: wrap; gap: 1.25rem; }
  .footer-meta {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }

  /* Lightbox */
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
}

/* ============================================
   RESPONSIVE — SMALL (≤480)
   ============================================ */
@media (max-width: 480px) {
  .hero-strips { height: 56svh; }
  .hero-title { letter-spacing: -0.04em; }
  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
  .contact-map { aspect-ratio: 4 / 3; }
}

/* ============================================
   NEWSLETTER — footer band + popup
   ============================================ */
.footer-newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(251, 248, 241, 0.14);
}
.footer-newsletter-text { max-width: 34ch; }
.footer-newsletter-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--bg);
  margin: 0 0 0.5rem;
}
.footer-newsletter-intro {
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(251, 248, 241, 0.72);
  margin: 0;
}
.footer-newsletter-form { width: min(100%, 30rem); }

/* Shared signup form — dark (footer) context by default */
.nl-form {
  display: flex;
  gap: 0.625rem;
  align-items: stretch;
}
.nl-form[hidden] { display: none; }
.nl-sink { position: absolute; width: 0; height: 0; border: 0; left: -9999px; overflow: hidden; }
.nl-form--stack { flex-direction: column; }
.nl-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.nl-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--bg);
  background: rgba(251, 248, 241, 0.06);
  border: 1px solid rgba(251, 248, 241, 0.24);
  border-radius: var(--radius);
  transition: border-color var(--transition), background-color var(--transition);
}
.nl-input::placeholder { color: rgba(251, 248, 241, 0.45); }
@media (hover: hover) {
  .nl-input:hover { border-color: rgba(251, 248, 241, 0.4); }
}
.nl-input:focus {
  outline: none;
  border-color: var(--accent-soft);
  background: rgba(251, 248, 241, 0.1);
  box-shadow: 0 0 0 3px rgba(200, 185, 133, 0.18);
}
.nl-btn {
  flex-shrink: 0;
  padding: 0.875rem 1.5rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  min-height: 50px;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.nl-btn:disabled { opacity: 0.6; cursor: not-allowed; }
@media (hover: hover) {
  .nl-btn:hover { background: var(--accent-soft); border-color: var(--accent-soft); color: var(--ink); }
}
.nl-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(251, 248, 241, 0.5);
}
.nl-status {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(251, 248, 241, 0.85);
}
.nl-status:empty { margin: 0; }
.nl-status.success { color: var(--accent-soft); }
.nl-status.error { color: #f0a3a3; }

/* Popup */
.nl-popup {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.nl-popup.open { display: flex; }
.nl-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 10, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--transition);
}
.nl-popup.open .nl-popup-backdrop { opacity: 1; }
.nl-popup-card {
  position: relative;
  width: min(100%, 30rem);
  background: var(--surface);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: translateY(14px) scale(0.985);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}
.nl-popup.open .nl-popup-card { transform: none; opacity: 1; }
.nl-popup-close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
}
@media (hover: hover) {
  .nl-popup-close:hover { background: var(--bg-alt); color: var(--ink); }
}
.nl-popup-eyebrow {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
.nl-popup-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  max-width: 20ch;
}
.nl-popup-intro {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 42ch;
}
/* Light-context overrides for the form inside the popup */
.nl-popup .nl-input {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--border);
}
.nl-popup .nl-input::placeholder { color: var(--text-light); }
@media (hover: hover) {
  .nl-popup .nl-input:hover { border-color: var(--ink-soft); }
}
.nl-popup .nl-input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(155, 139, 86, 0.18);
}
.nl-popup .nl-btn {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
  padding: 1rem 1.5rem;
}
@media (hover: hover) {
  .nl-popup .nl-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--surface); }
}
.nl-popup .nl-note { color: var(--text-light); }
.nl-popup .nl-status { color: var(--ink-soft); }
.nl-popup .nl-status.success { color: #4a7c3c; }
.nl-popup .nl-status.error { color: #b33a2a; }

@media (max-width: 640px) {
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .footer-newsletter-form { width: 100%; }
  .nl-form { flex-direction: column; }
  .nl-btn { width: 100%; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .stagger-children > *,
  .hero-eyebrow, .hero-title, .hero-tagline, .hero-cta, .hero-card-meta {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
  }
  .hero-card { opacity: 1 !important; animation: none !important; }
  .hero-strip img { animation: none !important; opacity: 1 !important; transform: none !important; }
  .collectie-item:hover img,
  .winkel-item:hover img { transform: none; }
}
