/* ============================================================
   Cécile van Eeden Sieraden — stylesheet
   Headings:  Cormorant Garamond (Google Fonts)
   Body:      Inter (Google Fonts)
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Helvetica Neue", sans-serif;

  --black:    #1a1a1a;
  --ink:      #2a2a2a;
  --muted:    #6b6b6b;
  --soft:     #999999;
  --line:     #e5e2dd;

  --white:    #ffffff;
  --cream:    #f7f4ee;
  --warm:     #faf8f4;

  --gold:     #9a7d4f;
  --gold-soft:#c0a878;

  --max:      1380px;
  --gutter:   clamp(20px, 4vw, 56px);
  --header-h: 76px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::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(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--black);
}

/* ── 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)));
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.over-hero { background: transparent; }
.site-header.opaque {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

/* Logo / sitenaam */
.brand {
  display: flex;
  align-items: center;
  height: 38px;
  transition: height 0.3s ease;
}
.brand img {
  height: 100%;
  width: auto;
  transition: filter 0.3s ease;
}
.over-hero .brand img { filter: brightness(0) invert(1); }   /* wit op donker */
.opaque   .brand img { filter: none; }                        /* origineel op licht */
.site-header.scrolled .brand { height: 28px; }

/* Nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s, opacity 0.2s;
}
.over-hero .nav-links a { color: rgba(255,255,255,0.92); }
.opaque   .nav-links a { color: var(--ink); }
.nav-links a:hover { opacity: 0.6; }

/* Taaltoggle */
.lang-toggle {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-left: 1rem;
  border-left: 1px solid currentColor;
  opacity: 0.7;
}
.lang-toggle .active { opacity: 1; color: inherit; }
.lang-toggle .inactive {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.over-hero .lang-toggle { color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.3); }
.opaque   .lang-toggle { color: var(--ink); border-color: var(--line); }
.lang-toggle .sep { opacity: 0.5; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.2px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}
.over-hero .nav-toggle { color: var(--white); }
.opaque   .nav-toggle { color: var(--black); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--black);
}
.nav-overlay .nav-toggle {
  position: absolute;
  top: 24px; right: var(--gutter);
  display: flex;
  color: var(--black);
}

/* ── HERO + SLIDER ────────────────────────────────────────── */
.hero {
  min-height: clamp(560px, 86vh, 880px);
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  align-items: flex-end;             /* lower third */
  justify-content: flex-start;
  padding: var(--header-h) 0 0;
  color: var(--white);
}

/* Slider achtergrond */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  /* Subtiele Ken Burns: heel langzame zoom, binnen 24s cyclus */
  animation: kb 24s ease-out infinite;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes kb {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
}

/* Gradient alleen onderaan, achter tekst — beeld blijft helder */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.78) 100%
  );
  pointer-events: none;
  z-index: 1;
}
/* Header krijgt eigen subtiele gradient bovenaan op hero zodat logo leesbaar blijft */
.hero::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: var(--header-h);
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px, 7vw, 96px);
  text-align: left;
}
.hero-content-inner {
  max-width: 720px;
}
.hero-kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: normal;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 0 1.8rem;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.hero-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: clamp(20px, 3vw, 36px);
  right: var(--gutter);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot.active { background: var(--white); transform: scale(1.2); }
@media (max-width: 600px) {
  .hero-dots { right: 50%; transform: translateX(50%); }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--ink); color: var(--white); }

.btn-solid {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-solid:hover { background: var(--black); }

.btn-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.85);
}
.btn-light:hover { background: var(--white); color: var(--ink); }

.btn-light-solid {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-light-solid:hover { background: rgba(255,255,255,0.85); }

/* ── CONTAINERS ──────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--gutter);
}

/* Section titles */
.section-kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--black);
}
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  line-height: 1.65;
}

/* ── HOMEPAGE: Nieuws-strook ─────────────────────────────── */
.news-strip {
  background: var(--cream);
  padding: clamp(48px, 6vw, 80px) var(--gutter);
}
.news-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.news-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.news-inner p {
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.news-inner p:last-child { margin-bottom: 0; }

/* ── HOMEPAGE: Drie tegels ───────────────────────────────── */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.tile {
  display: block;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tile:hover img {
  opacity: 0.7;
  transform: scale(1.04);
}
.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(20px, 3vw, 36px);
  color: var(--white);
}
.tile-overlay-inner {
  width: 100%;
}
.tile-kicker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.tile h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.tile-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  max-width: 320px;
}

/* ── COLLECTIES OVERZICHT ────────────────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px) clamp(20px, 2vw, 30px);
}
.collection-card {
  display: block;
  text-align: center;
}
.collection-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  margin-bottom: 1rem;
}
.collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:hover .collection-img img { transform: scale(1.05); }
.collection-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}
.collection-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}
.collection-card.is-new .collection-meta { color: var(--gold); }

/* ── COLLECTIE DETAIL PAGINA ─────────────────────────────── */
.page-top {
  padding-top: var(--header-h);
}
.collection-header {
  text-align: center;
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(36px, 5vw, 64px);
  max-width: 720px;
  margin: 0 auto;
}
.collection-header .section-kicker {
  text-align: center;
  margin-bottom: 0.8rem;
}
.collection-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.collection-header p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Gallery — masonry-achtige rijen via CSS grid */
.gallery {
  padding: 0 var(--gutter) clamp(48px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1vw, 16px);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  transition: filter 0.4s ease;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-grid a:hover img {
  filter: brightness(0.95);
}

/* Hero foto in collectie (full-width tussendoor) */
.collection-hero-img {
  margin: 0 0 clamp(8px, 1vw, 16px);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
.collection-hero-img img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  background: var(--cream);
}

/* Cta onderaan collectie */
.collection-cta {
  text-align: center;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  background: var(--cream);
}
.collection-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-style: italic;
  margin-bottom: 0.8rem;
}
.collection-cta p {
  color: var(--muted);
  margin-bottom: 1.6rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── OVER PAGINA ─────────────────────────────────────────── */
.about-page { padding-top: var(--header-h); }

.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.about-hero-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  background: var(--cream);
}
.about-hero-text .kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.4rem;
}
.about-hero-text p {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(64px, 8vw, 100px);
}
.about-body h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 2.4rem 0 1rem;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p {
  margin-bottom: 1.1rem;
  line-height: 1.8;
  color: var(--ink);
}
.about-body p.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 1.6rem;
}

.about-quote {
  background: var(--cream);
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  text-align: center;
}
.about-quote blockquote {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.45;
  color: var(--black);
}
.about-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Mijlpalen / Tijdlijn */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
}
.timeline-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}

/* ── INHOUDSPAGINA's (maatwerk, duurzaamheid, partnerringen) ── */
.content-page { padding-top: var(--header-h); }
.content-hero {
  text-align: center;
  padding: clamp(64px, 8vw, 110px) var(--gutter) clamp(40px, 5vw, 64px);
  max-width: 720px;
  margin: 0 auto;
}
.content-hero .kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.content-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.content-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}
.content-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(64px, 8vw, 100px);
}
.content-body h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 2.6rem 0 0.9rem;
}
.content-body h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 0.6rem;
}
.content-body p {
  margin-bottom: 1.1rem;
  line-height: 1.8;
  color: var(--ink);
}
.content-body ul {
  margin-bottom: 1.4rem;
  padding-left: 1.4rem;
}
.content-body li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

/* Pillar-grid voor 3 of 4 onderwerpen (duurzaamheid, maatwerk-stappen) */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(40px, 5vw, 72px) 0;
}
.pillar h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
}
.pillar p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.7;
}
.pillar-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-style: italic;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-page { padding-top: var(--header-h); }
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) var(--gutter) clamp(48px, 6vw, 80px);
}
.contact-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.contact-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.4rem;
  line-height: 1.7;
}
.contact-info {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
  margin-bottom: 2.4rem;
}
.contact-info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.55rem 0;
  align-items: baseline;
}
.contact-info-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}
.contact-info-value {
  color: var(--ink);
  line-height: 1.55;
}
.contact-info-value a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold-soft);
  transition: color 0.2s, border-color 0.2s;
}
.contact-info-value a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Contact form */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-success {
  display: none;
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.map-wrap {
  margin-top: 2.4rem;
  aspect-ratio: 16 / 9;
  background: var(--cream);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: clamp(56px, 7vw, 88px) 0 clamp(28px, 3vw, 40px);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  max-width: var(--max);
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 1.2rem var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── ACCESSIBILITY ──────────────────────────────────────── */
.skip-link {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus,
.skip-link:focus-visible {
  position: fixed !important;
  top: 8px; left: 8px;
  width: auto; height: auto;
  padding: 10px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.hero :focus-visible,
.nav-overlay :focus-visible {
  outline-color: var(--white);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tile-grid,
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .nav-links,
  .lang-toggle { display: none; }
  .nav-toggle { display: flex; }
  .tile-grid,
  .collections-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .contact-info-row { grid-template-columns: 1fr; gap: 4px; padding: 0.6rem 0; }
}

/* ════════════════════════════════════════════════════════════
   UITBREIDINGEN v2 — categorie-grid, sub-secties, lightbox,
   homepage intro/highlight, aankomende-collecties placeholder
   ════════════════════════════════════════════════════════════ */

/* ── Homepage intro-tekst onder hero ─────────────────────── */
.intro {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) var(--gutter);
  text-align: center;
}
.intro p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.intro p.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  color: var(--black);
  margin-bottom: 1.8rem;
}

/* ── Homepage Silver Lining-highlight ────────────────────── */
.highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--cream);
}
.highlight-img {
  background: #1a1a1a;
  overflow: hidden;
  min-height: 420px;
}
.highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.highlight:hover .highlight-img img { transform: scale(1.04); }
.highlight-text {
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.highlight-text .kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.highlight-text h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--black);
}
.highlight-text p {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.6rem;
  max-width: 440px;
}
@media (max-width: 760px) {
  .highlight { grid-template-columns: 1fr; }
  .highlight-img { min-height: 320px; aspect-ratio: 4/3; }
}

/* ── Categorie-grid op /collecties/ index ────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.category-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 16 / 9;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.category-card:hover img { opacity: 0.62; transform: scale(1.04); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(20px, 3vw, 40px);
  color: var(--white);
  text-align: center;
}
.category-overlay h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}
.category-overlay p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  max-width: 280px;
}

/* Sectiekop tussen categorieën en series op overzicht */
.divider-title {
  text-align: center;
  margin: clamp(64px, 8vw, 110px) 0 clamp(28px, 4vw, 48px);
}
.divider-title .section-kicker { margin-bottom: 0.8rem; }
.divider-title h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--black);
}

/* ── Sub-section headers in collectie (necklaces) ────────── */
.sub-section {
  margin-top: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(16px, 2vw, 24px);
  padding: 0 var(--gutter);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sub-section:first-of-type { margin-top: 0; }
.sub-section h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--black);
  margin-bottom: 0.4rem;
}
.sub-section p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
.sub-empty {
  padding: clamp(32px, 4vw, 56px) var(--gutter);
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  color: var(--soft);
  font-size: 0.92rem;
  font-style: italic;
  border: 1px dashed var(--line);
}

/* ── Lightbox (View fullsize) ────────────────────────────── */
.gallery-grid a { cursor: zoom-in; }

.lb {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.94);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 60px);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lb.open { display: flex; opacity: 1; }
.lb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  font-family: var(--font-body);
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}
.lb-btn:hover {
  background: rgba(255,255,255,0.18);
}
.lb-close { top: clamp(16px, 3vw, 32px); right: clamp(16px, 3vw, 32px); }
.lb-prev  { left:  clamp(16px, 3vw, 32px); top: 50%; transform: translateY(-50%); }
.lb-next  { right: clamp(16px, 3vw, 32px); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.05); }
.lb-counter {
  position: absolute;
  bottom: clamp(20px, 3vw, 36px);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* ── "Eerder werk" placeholder pagina ────────────────────── */
.placeholder-block {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.placeholder-block .icon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.placeholder-block p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 0.8rem;
}
