/* Connecting Images -- Diana Mosterd */

:root {
  --cream: #faf4ea;
  --cream-soft: #f3e0d6;       /* zachte dusty rose */
  --rose: #ecc8c4;             /* haar rose nuance, bloeziger */
  --rose-deep: #d9a8a2;
  --mustard-soft: #f0d99c;     /* zacht botergeel voor secties */
  --mustard: #dcb56a;          /* mosterdgeel zoals haar header */
  --mustard-bright: #e8c47a;
  --mustard-deep: #b8881f;
  --burgundy: #962d2d;         /* haar donkerrood, iets warmer */
  --burgundy-deep: #6e1f1f;
  --teal: #5cb1b8;             /* haar teal voor secundaire CTA */
  --teal-deep: #408188;
  --skyblue: #7fb3c8;           /* lichtblauw voor accent-tekst */
  --ink: #1c1a17;
  --ink-soft: #2b2622;
  --muted: #6b635a;
  --line: #e8d9b8;
  /* aliases voor bestaande regels */
  --accent: var(--burgundy);
  --accent-deep: var(--burgundy-deep);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--ink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: "Montserrat", -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  font-family: "Jura", "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  letter-spacing: 0.005em;
  line-height: 1.05;
}
h2 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.55rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; }

p { margin-bottom: 1em; max-width: 65ch; }

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 7rem 0; position: relative; }

/* Sectie-varianten */
section.bg-rose { background: var(--cream-soft); position: relative; overflow: hidden; }
section.bg-rose::before {
  content: ""; position: absolute;
  width: 28rem; height: 28rem; border-radius: 50%;
  background: var(--mustard); opacity: 0.18;
  top: -10rem; left: -10rem; z-index: 0;
}
section.bg-mustard { background: var(--mustard-soft); position: relative; overflow: hidden; }
section.bg-mustard::before {
  content: ""; position: absolute;
  width: 26rem; height: 26rem; border-radius: 50%;
  background: var(--rose); opacity: 0.5;
  bottom: -8rem; right: -8rem; z-index: 0;
}
section.bg-rose > .container, section.bg-rose > .container-narrow,
section.bg-mustard > .container, section.bg-mustard > .container-narrow {
  position: relative; z-index: 1;
}

@media (max-width: 700px) {
  section { padding: 4.5rem 0; }
  .container, .container-narrow { padding: 0 1.25rem; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 244, 234, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,133,31,0.22);
  box-shadow: 0 4px 0 rgba(217,167,60,0.08);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  font-family: "Jura", "Montserrat", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.brand em {
  font-style: normal;
  color: var(--mustard-deep);
  font-weight: 600;
  border-bottom: 2px solid var(--mustard);
  padding-bottom: 1px;
}

.nav { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--burgundy); }
.nav a:hover { color: var(--burgundy); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--ink); }

@media (max-width: 760px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--line); padding: 1.5rem 2rem; gap: 1.2rem; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
}

/* Hero */
.hero {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg,
      rgba(220,181,106,0.45) 0%,
      rgba(236,200,196,0.25) 35%,
      rgba(28,26,23,0.42) 70%,
      rgba(150,45,45,0.45) 100%);
}
/* Mosterd-bar over de hero, zoals haar header-strook */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--mustard);
  z-index: 2;
}
/* Decoratieve cirkels in de hero */
.hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0.35;
}
.hero-deco-1 { background: var(--rose); width: 22vw; height: 22vw; top: 8%; right: -4%; }
.hero-deco-2 { background: var(--mustard); width: 14vw; height: 14vw; bottom: 12%; left: -3%; }
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 7rem;
  width: 100%;
}
.hero-content {
  max-width: 720px;
}
.hero h1 {
  color: var(--mustard);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  font-weight: 400;
}
.hero h1 .accent { color: var(--mustard-bright); font-weight: 500; }
.hero p {
  font-size: 1.15rem;
  color: rgba(245,241,234,0.92);
  margin-top: 1.5rem;
  max-width: 52ch;
  text-shadow: 0 1px 20px rgba(0,0,0,0.4);
}
.hero .eyebrow {
  color: var(--mustard-bright);
  letter-spacing: 0.32em;
  text-shadow: 0 1px 20px rgba(0,0,0,0.5);
}
.hero .eyebrow::before {
  background: var(--mustard-bright);
  width: 2.5rem;
  height: 2px;
}

@media (max-width: 900px) {
  .hero { min-height: 78vh; }
  .hero-inner { padding: 6rem 1.25rem 5rem; }
}

/* Eyebrow / labels */
.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mustard-deep);
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background: var(--mustard);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: var(--burgundy);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  border-radius: 0;
  border: 1px solid var(--burgundy);
  transition: all .25s ease;
  position: relative;
}
.btn:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); color: var(--cream); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(245,241,234,0.7);
  color: var(--cream);
}
.btn-outline:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.btn-dark { background: var(--ink); border-color: var(--ink); }
.btn-dark:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--cream); }

/* Services grid */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service {
  padding: 3rem 2.2rem;
  background: var(--cream);
  border: 1px solid rgba(184,133,31,0.18);
  border-top: 4px solid var(--mustard);
  transition: transform .3s ease, box-shadow .3s ease, border-top-color .3s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(184,133,31,0.18);
  border-top-color: var(--burgundy);
}
.service h3 { margin-bottom: 1rem; font-size: 1.35rem; }
.service p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 800px) { .services { grid-template-columns: 1fr; } }

/* Quote/intro split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split img { border-radius: 2px; object-fit: cover; object-position: right center; width: 100%; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}
.video-item .frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
}
.video-item iframe { width: 100%; height: 100%; border: 0; }
.video-item h3 {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.video-item .meta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 0.4rem;
  font-weight: 500;
}
@media (max-width: 800px) { .video-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Photo gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform .6s ease, filter .4s ease;
  filter: saturate(0.95);
}
.gallery a {
  overflow: hidden;
  display: block;
  position: relative;
  background: var(--ink);
}
.gallery a:hover img { transform: scale(1.05); filter: saturate(1.1); }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; } }

/* Section: voorheen donker, nu in roze met mosterd accenten */
.dark {
  background: var(--cream-soft);
  color: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.dark::before {
  content: "";
  position: absolute;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: var(--mustard);
  top: -8rem; right: -8rem;
  opacity: 0.28;
  z-index: 0;
}
.dark::after {
  content: "";
  position: absolute;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  background: var(--rose-deep);
  bottom: -6rem; left: -6rem;
  opacity: 0.4;
  z-index: 0;
}
.dark > .container, .dark > .container-narrow { position: relative; z-index: 1; }
.dark h1, .dark h2, .dark h3 { color: var(--ink); }
.dark h4 { color: var(--burgundy); }
.dark .eyebrow { color: var(--burgundy); }
.dark p { color: var(--ink-soft); }

/* Quote */
.pullquote {
  font-family: "Jura", "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  max-width: 32ch;
  border-left: 3px solid var(--mustard);
  padding-left: 2rem;
  letter-spacing: 0.005em;
}

/* CTA banner: vrolijke gele band met roze cirkels en teal accent */
.cta {
  background: var(--mustard);
  color: var(--ink);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute;
  width: 22rem; height: 22rem; border-radius: 50%;
  background: var(--rose); opacity: 0.5;
  top: -8rem; left: -6rem;
}
.cta::after {
  content: ""; position: absolute;
  width: 16rem; height: 16rem; border-radius: 50%;
  background: var(--teal); opacity: 0.25;
  bottom: -6rem; right: -4rem;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: var(--ink); }
.cta p { color: rgba(28,26,23,0.82); margin: 1rem auto 2.2rem; }
.cta .btn { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.cta .btn:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* Footer: lichter en zonniger */
.site-footer {
  background: var(--mustard-soft);
  color: var(--ink-soft);
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--mustard);
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 22rem; height: 22rem;
  border-radius: 50%;
  background: var(--rose);
  bottom: -10rem; right: -8rem;
  opacity: 0.55;
  z-index: 0;
}
.site-footer .inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.site-footer h4 {
  color: var(--burgundy);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer a { color: var(--ink-soft); display: block; padding: 0.3rem 0; font-size: 0.95rem; }
.site-footer a:hover { color: var(--burgundy); }
.site-footer .brand { color: var(--ink); font-size: 1.6rem; margin-bottom: 1rem; }
.site-footer .brand em { color: var(--burgundy); border-bottom-color: var(--burgundy); }
.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(184,136,31,0.3);
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footer-bottom a { color: var(--burgundy); font-weight: 500; }
@media (max-width: 700px) {
  .site-footer .inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* Page hero (non-home) */
.page-hero {
  padding: 7rem 0 5rem;
  border-bottom: 4px solid var(--mustard);
  position: relative;
  background:
    linear-gradient(180deg, var(--mustard-soft) 0%, var(--cream) 70%);
}
.page-hero h1 { font-weight: 300; }
.page-hero p { font-size: 1.1rem; color: var(--muted); margin-top: 1.5rem; max-width: 60ch; }

/* Service block (diensten) */
.service-block {
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 0; }
.service-block .grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.service-block .grid h2 { font-style: italic; }
.service-block ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.service-block li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.98rem;
}
.service-block li::before { content: "—"; color: var(--mustard); margin-right: 0.8rem; }
.price { font-size: 0.9rem; color: var(--muted); margin-top: 1rem; font-style: italic; }
@media (max-width: 800px) { .service-block .grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Contact */
.contact-card {
  background: var(--cream-soft);
  padding: 3rem;
  border-left: 4px solid var(--mustard);
  max-width: 600px;
}
.contact-card .email {
  font-family: "Jura", "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--burgundy);
  margin: 1rem 0;
  display: inline-block;
  border-bottom: 2px solid var(--mustard);
  padding-bottom: 0.2rem;
  transition: color .2s, border-color .2s;
}
.contact-card .email:hover { color: var(--burgundy-deep); border-color: var(--burgundy); }

/* Bounce-in scroll animatie */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.96);
  transition: opacity .7s ease, transform .8s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.video-grid > .reveal:nth-child(2),
.services > .reveal:nth-child(2),
.visual-cards > .reveal:nth-child(2) { transition-delay: .12s; }
.video-grid > .reveal:nth-child(3),
.services > .reveal:nth-child(3),
.visual-cards > .reveal:nth-child(3) { transition-delay: .22s; }
.video-grid > .reveal:nth-child(4),
.services > .reveal:nth-child(4),
.visual-cards > .reveal:nth-child(4) { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Icon-buttons (groot, met SVG-icoon) */
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 6px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  border: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.btn-icon svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.btn-icon:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.18); }
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover { background: var(--teal-deep); color: #fff; }
.btn-burgundy {
  background: var(--burgundy);
  color: #fff;
}
.btn-burgundy:hover { background: var(--burgundy-deep); color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Visuele categoriekaarten met haar B&W gele portretten */
.visual-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.visual-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
  background: var(--mustard);
  transition: transform .35s ease, box-shadow .35s ease;
}
.visual-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(184,136,31,0.3); }
.visual-card .portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transition: transform .6s ease;
}
.visual-card:hover .portrait { transform: scale(1.05); }
.visual-card .label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,0.18);
  line-height: 1;
}
.visual-card .sublabel {
  position: absolute;
  bottom: 1.4rem;
  left: 1.5rem;
  z-index: 3;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--burgundy);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.visual-card .sublabel.teal { background: var(--teal); }
@media (max-width: 800px) {
  .visual-cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .visual-card { aspect-ratio: 16 / 10; }
  .visual-card .portrait { object-position: 80% center; }
}

/* Decoratieve cirkels achter content */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
