/* ── DE BLIJVERS — MAIN STYLESHEET ── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Epilogue:wght@300;400;500&display=swap');

:root {
  --black: #0E0F0E;
  --off-white: #F0EDE8;
  --cream: #E5E1DA;
  --warm-grey: #B5AFA6;
  --mid-grey: #7A766F;
  --bark: #6B6560;
  --teal: #6B8F8F;
  --teal-dark: #4F7272;
  --teal-light: rgba(107,143,143,0.1);
  --copper: #A0826D;
  --copper-dark: #876B58;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Epilogue', sans-serif;
  --border: rgba(181,175,166,0.12);
  --section-pad: 6rem 3rem;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.no-custom-cursor { cursor: auto; }

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.15s, width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,92,56,0.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.4s ease;
}
.cursor.expanded { transform: translate(-50%,-50%) scale(2.5); background: rgba(184,92,56,0.6); }
.cursor-ring.expanded { transform: translate(-50%,-50%) scale(0); }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.3s;
}
.site-nav.nav-solid {
  background: rgba(14,15,14,0.88);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
.site-nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
.nav-logo em { font-style: italic; color: var(--teal); }
.nav-logo-img { height: 44px; width: auto; max-width: 220px; display: block; transition: height 0.3s; }
.scrolled .nav-logo-img { height: 34px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-menu a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--teal); }

.db-lang-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.db-lang-switcher a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.db-lang-switcher a:hover {
  color: var(--teal);
}
.db-lang-switcher a.active {
  color: var(--off-white);
  background: rgba(107,143,143,0.2);
}

.nav-book {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  border: 1px solid rgba(107,143,143,0.4);
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, color 0.2s;
}
.nav-book:hover { background: var(--teal); color: var(--off-white); }

/* WPML language switcher override */
.wpml-ls-legacy-list-horizontal { padding: 0 !important; }
.wpml-ls-legacy-list-horizontal ul { gap: 0.5rem !important; }
.wpml-ls-legacy-list-horizontal a {
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--mid-grey) !important;
  text-decoration: none !important;
  padding: 0 0.25rem !important;
  background: none !important;
  border: none !important;
  font-family: var(--sans) !important;
  transition: color 0.2s !important;
}
.wpml-ls-legacy-list-horizontal a:hover,
.wpml-ls-legacy-list-horizontal .wpml-ls-current-language a {
  color: var(--off-white) !important;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--teal);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  border: none;
  cursor: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); color: var(--off-white); }

.btn-ghost {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,204,191,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--off-white); border-color: var(--off-white); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(107,143,143,0.3);
  max-width: 80px;
}

/* ── HERO ── */
.hero {
  min-height: 85svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.4) saturate(0.7);
  transform: scale(1.0);
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-bg.active {
  opacity: 1;
  animation: kenBurns 12s ease-in-out forwards;
}
@keyframes kenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}

.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--teal); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-grey);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.stat-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; color: var(--off-white); display: block; line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-grey); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mid-grey);
  display: flex; align-items: center; gap: 0.75rem;
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: var(--mid-grey); display: block;
  animation: scrollLine 2s 2s ease-in-out infinite;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: #151716;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 3rem;
  text-align: center;
}
.intro-strip p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--warm-grey);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── TRUTH SECTION ── */
.truth-section {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.truth-num {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 400; font-style: italic;
  color: var(--off-white);
  opacity: 0.12;
  line-height: 1; margin-bottom: 0.75rem; display: block;
}
.truth-caption { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); }
.truth-heading { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.25; color: var(--off-white); margin-bottom: 1.75rem; }
.truth-heading em { font-style: italic; color: var(--teal); }
.truth-body { font-size: 0.95rem; color: var(--warm-grey); line-height: 1.85; margin-bottom: 1.25rem; }
.truth-divider { width: 40px; height: 1px; background: var(--teal); margin: 2rem 0; }

/* ── HOW IT WORKS ── */
.how-section { padding: var(--section-pad); background: #151716; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { padding: 3rem; border-right: 1px solid var(--border); }
.step:last-child { border-right: none; }
.step-num { font-family: var(--serif); font-size: 0.75rem; font-style: italic; color: var(--teal); margin-bottom: 1.5rem; display: block; }
.step-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--off-white); margin-bottom: 1rem; line-height: 1.3; }
.step-body { font-size: 0.88rem; color: var(--mid-grey); line-height: 1.8; }

/* ── OCCASIONS ── */
.occasions-section { padding: var(--section-pad); }
.occasions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; background: rgba(212,204,191,0.08); }
.occasion-card { background: var(--black); padding: 3rem; position: relative; overflow: hidden; transition: background 0.4s; }
.occasion-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--teal); transition: height 0.4s ease; }
.occasion-card:hover::before { height: 100%; }
.occasion-card:hover { background: #151716; }
.occasion-icon { font-size: 1.5rem; margin-bottom: 1.5rem; display: block; }
.occasion-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--off-white); margin-bottom: 0.75rem; }
.occasion-body { font-size: 0.85rem; color: var(--mid-grey); line-height: 1.75; }

/* ── MASONRY GALLERY ── */
.masonry-section { padding: var(--section-pad); background: #0C0D0C; }
.masonry-header { margin-bottom: 3rem; }
.masonry-sub { font-size: 0.88rem; color: var(--mid-grey); margin-top: 0.5rem; }
.masonry-grid { columns: 3; column-gap: 16px; max-width: 1200px; margin: 0 auto; }
.masonry-item { break-inside: avoid; margin-bottom: 16px; overflow: hidden; position: relative; cursor: none; border-radius: 2px; opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.masonry-item.revealed { opacity: 1; transform: translateY(0); }
.masonry-item img { width: 100%; height: auto; display: block; filter: brightness(0.88) saturate(0.85); transition: filter 0.6s, transform 0.8s; }
.masonry-item:hover img { filter: brightness(1) saturate(1); transform: scale(1.015); }
.masonry-footer { margin-top: 3rem; text-align: center; }

/* ── PRICING ── */
.pricing-section { padding: var(--section-pad); }
.pricing-intro { max-width: 560px; margin-bottom: 4rem; font-size: 0.95rem; color: var(--warm-grey); line-height: 1.85; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(212,204,191,0.08); max-width: 860px; }
.price-card { background: var(--black); padding: 3.5rem; }
.price-card.featured { background: #151716; border-top: 2px solid var(--teal); }
.price-badge { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; display: block; }
.price-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--off-white); margin-bottom: 0.5rem; }
.price-amount { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: var(--off-white); line-height: 1; margin-bottom: 0.25rem; }
.price-amount sup { font-size: 1.2rem; vertical-align: super; color: var(--teal); }
.price-duration { font-size: 0.78rem; color: var(--mid-grey); letter-spacing: 0.08em; margin-bottom: 2rem; }
.price-divider { width: 100%; height: 1px; background: rgba(212,204,191,0.1); margin-bottom: 2rem; }
.price-includes { list-style: none; margin-bottom: 2.5rem; }
.price-includes li { font-size: 0.88rem; color: var(--warm-grey); padding: 0.5rem 0; border-bottom: 1px solid rgba(212,204,191,0.06); display: flex; align-items: center; gap: 0.75rem; }
.price-includes li::before { content: '—'; color: var(--teal); flex-shrink: 0; font-size: 0.7rem; }
.btn-book { display: inline-block; padding: 0.85rem 2rem; border: 1px solid rgba(212,204,191,0.2); color: var(--off-white); font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, border-color 0.2s; width: 100%; text-align: center; cursor: none; }
.btn-book:hover { background: var(--teal); border-color: var(--teal); color: var(--off-white); }
.price-card.featured .btn-book { background: var(--teal); border-color: var(--teal); }
.price-card.featured .btn-book:hover { background: var(--teal-dark); }

/* ── ABOUT ── */
.about-strip {
  padding: var(--section-pad);
  background: #151716;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 3rem;
  align-items: center;
}
.about-img-wrap { flex-shrink: 0; }
.about-img { width: 100%; height: auto; object-fit: cover; filter: brightness(0.85) saturate(0.75); border-radius: 2px; }
.about-eyebrow { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.about-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(107,143,143,0.3); max-width: 80px; }
.about-name { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; color: var(--off-white); margin-bottom: 1.5rem; line-height: 1.2; }
.about-name em { font-style: italic; color: var(--teal); }
.about-text { font-size: 0.95rem; color: var(--warm-grey); line-height: 1.85; max-width: 560px; margin-bottom: 1.25rem; }
.about-credentials { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 2.5rem 0 2rem; border: 1px solid var(--border); }
.credential { padding: 1.25rem 1rem; border-right: 1px solid var(--border); text-align: center; }
.credential:last-child { border-right: none; }
.credential-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--off-white); display: block; line-height: 1; margin-bottom: 0.4rem; }
.credential-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-grey); }
.about-langs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 2rem; }
.lang-pill { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-grey); border: 1px solid rgba(212,204,191,0.15); padding: 0.3rem 0.85rem; }

/* ── REVIEWS ── */
.reviews-section { padding: var(--section-pad); overflow: hidden; }
.reviews-scroll-wrap { overflow: hidden; margin-top: 2.5rem; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.reviews-scroll { display: flex; gap: 24px; animation: reviewScroll 60s linear infinite; width: max-content; }
.reviews-scroll:hover { animation-play-state: paused; }
@keyframes reviewScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.review-card { flex-shrink: 0; width: 380px; background: var(--black); border: 1px solid var(--border); padding: 2rem 2.25rem; border-radius: 2px; }
.review-stars { color: var(--teal); font-size: 0.75rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.review-text { font-family: var(--serif); font-size: 0.95rem; font-weight: 400; font-style: italic; color: var(--off-white); line-height: 1.7; margin-bottom: 1.25rem; }
.review-by { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-grey); }
.review-lang { font-size: 0.62rem; color: var(--bark); margin-top: 0.5rem; font-style: italic; }
.reviews-score-strip { margin-bottom: 2rem; display: flex; align-items: center; gap: 1.5rem; }
.score-big { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: var(--off-white); line-height: 1; }
.score-meta { font-size: 0.78rem; color: var(--mid-grey); line-height: 1.6; }
.score-stars { color: var(--teal); font-size: 0.8rem; display: block; }

/* ── CONTACT ── */
.contact-section { padding: var(--section-pad); background: #151716; display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.contact-heading { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; line-height: 1.15; color: var(--off-white); margin-bottom: 1.5rem; }
.contact-heading em { font-style: italic; color: var(--teal); }
.contact-sub { font-size: 0.93rem; color: var(--warm-grey); line-height: 1.85; margin-bottom: 2.5rem; }
.contact-info { margin-top: 2rem; }
.contact-row { display: flex; gap: 1rem; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid rgba(212,204,191,0.08); font-size: 0.88rem; color: var(--warm-grey); }
.contact-row a { color: var(--off-white); text-decoration: none; transition: color 0.2s; }
.contact-row a:hover { color: var(--teal); }
.contact-icon { color: var(--teal); width: 16px; flex-shrink: 0; }

/* ── CONTACT FORM ── */
.wpcf7-form .form-group { margin-bottom: 1.25rem; }
.wpcf7-form label { display: block; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 0.5rem; }
.wpcf7-form p { margin-bottom: 1.25rem; }
.wpcf7-form .wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,204,191,0.12);
  padding: 0.85rem 1rem;
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: rgba(107,143,143,0.6); }
.wpcf7-form select option { background: #151716; }
.wpcf7-form textarea { height: 110px; resize: vertical; }
.wpcf7-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: var(--teal);
  color: var(--off-white);
  border: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: none;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--teal-dark); }

/* ── PORTFOLIO PAGE ── */
.portfolio-hero { padding: 10rem 3rem 5rem; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3rem; border-bottom: 1px solid var(--border); }
.portfolio-hero-title { font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; line-height: 1.05; color: var(--off-white); }
.portfolio-hero-title em { font-style: italic; color: var(--teal); }
.portfolio-count { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: var(--off-white); line-height: 1; display: block; text-align: right; }
.portfolio-count-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-grey); }

.filter-bar { padding: 1.5rem 3rem; display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid var(--border); position: relative; background: #0E0F0E; z-index: 90; flex-wrap: wrap; }
.filter-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-grey); margin-right: 0.5rem; }
.filter-btn { padding: 0.4rem 1.1rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; background: none; border: 1px solid var(--border); color: var(--mid-grey); cursor: none; font-family: var(--sans); transition: all 0.2s; }
.filter-btn:hover { color: var(--off-white); border-color: rgba(212,204,191,0.3); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: var(--off-white); }
.filter-count { margin-left: auto; font-size: 0.72rem; color: var(--mid-grey); }

.gallery-section { padding: 2rem 3rem 4rem; max-width: 1100px; margin: 0 auto; }
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; overflow: hidden; position: relative; cursor: none; display: block; border-radius: 2px; opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.gallery-item.revealed { opacity: 1; transform: translateY(0); }
.gallery-item img { width: 100%; height: auto; display: block; filter: brightness(0.88) saturate(0.85); transition: filter 0.6s, transform 0.8s; }
.gallery-item:hover img { filter: brightness(1) saturate(1); transform: scale(1.015); }
.gallery-item-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1rem 1rem; background: linear-gradient(transparent, rgba(17,16,8,0.7)); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; justify-content: space-between; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-cat { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-grey); }
.gallery-item-expand { font-size: 0.9rem; color: var(--teal); }
.gallery-item.hidden { display: none; }

.cat-heading { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--off-white); margin: 3rem 0 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: 1.5rem; }
.cat-heading em { font-style: italic; color: var(--teal); }
.cat-heading-count { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-grey); font-weight: 300; }
.cat-heading.hidden { display: none; }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; background: rgba(10,9,6,0.97); z-index: 500; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-img { max-width: 100%; max-height: 88vh; display: block; object-fit: contain; opacity: 0; transition: opacity 0.3s; }
.lightbox-img.loaded { opacity: 1; }
.lightbox-close { position: fixed; top: 1.5rem; right: 2rem; font-size: 1.2rem; color: var(--mid-grey); background: none; border: none; cursor: none; padding: 0.5rem; transition: color 0.2s; z-index: 510; }
.lightbox-close:hover { color: var(--off-white); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); font-size: 1rem; color: var(--mid-grey); background: rgba(17,16,8,0.6); border: 1px solid var(--border); padding: 1rem 1.25rem; cursor: none; transition: color 0.2s, background 0.2s; z-index: 510; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--off-white); background: rgba(184,92,56,0.2); }
.lightbox-meta { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-grey); text-align: center; }
.lightbox-counter { display: block; margin-bottom: 0.25rem; }
.lightbox-cat { color: var(--teal); }

/* ── CTA STRIP ── */
.cta-strip { margin: 3rem; background: #151716; border: 1px solid var(--border); padding: 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; color: var(--off-white); margin-bottom: 0.5rem; }
.cta-title em { font-style: italic; color: var(--teal); }
.cta-sub { font-size: 0.9rem; color: var(--mid-grey); }

/* ── FOOTER ── */
.site-footer { padding: 3rem; background: var(--black); border-top: 1px solid var(--border); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.footer-brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-de-blijvers { font-family: var(--serif); font-size: 1.15rem; color: var(--off-white); }
.footer-de-blijvers em { font-style: italic; color: var(--teal); }
.footer-tagline { font-size: 0.72rem; color: var(--mid-grey); }
.footer-social { font-size: 0.72rem; }
.footer-social a { color: var(--mid-grey); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--off-white); }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.footer-logo { height: 40px; width: auto; opacity: 0.5; }
.footer-copy { font-size: 0.68rem; color: var(--mid-grey); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
@keyframes scrollLine { 0%, 100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(0.6); } }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── TABLET/LAPTOP ── */
@media (max-width: 1200px) and (min-width: 901px) {
  .hero-title { font-size: clamp(2.8rem, 5vw, 4.5rem); }
  .hero-sub { margin-bottom: 2rem; }
  .hero-eyebrow { margin-bottom: 1rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  :root { --section-pad: 4rem 1.5rem; }
  .site-nav { padding: 1.25rem 1.5rem; }
  .nav-menu { display: none; }
  .hero { min-height: 100svh; padding: 0 1.5rem 3rem; }
  .hero-title { font-size: 3rem; }
  .hero-scroll { display: none; }
  .truth-section { grid-template-columns: 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0; }
  .occasions-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; column-gap: 10px; }
  .masonry-item { margin-bottom: 10px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 100%; }
  .about-strip { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap { width: 100%; max-width: 320px; }
  .about-img-wrap-right { order: -1; }
  .about-credentials { grid-template-columns: repeat(2, 1fr); }
  .review-card { width: 300px; }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-hero { grid-template-columns: 1fr; gap: 1.5rem; padding: 7rem 1.5rem 3rem; }
  .portfolio-count { text-align: left; }
  .filter-bar { padding: 1rem 1.5rem; top: 60px; }
  .gallery-section { padding: 1.5rem; }
  .gallery-grid { columns: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
  .cta-strip { flex-direction: column; margin: 1.5rem; padding: 2rem; }
  .footer-bottom { flex-direction: column; gap: 2rem; align-items: center; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-right { align-items: center; }
  .wpcf7-form .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1rem; }
.hero-scroll { display: none; }
}

/* ── SUB-FILTER BAR ── */
.sub-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 3rem;
  background: #0E0F0E;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 89;
}
.sub-filter-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--mid-grey);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.3s;
}
.sub-filter-btn:hover { color: var(--off-white); border-color: var(--bark); }
.sub-filter-btn.active { background: var(--teal); color: var(--off-white); border-color: var(--teal); }
.filter-count-badge {
  font-size: 0.7rem;
  color: var(--mid-grey);
  margin-left: 0.25rem;
}

/* ── SESSION BLOCKS ── */
.session-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 2rem 0 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.session-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--off-white);
}
.session-location {
  font-size: 0.8rem;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.session-count {
  font-size: 0.75rem;
  color: var(--bark);
  margin-left: auto;
}
.session-block { margin-bottom: 2rem; }

@media (max-width: 600px) {
  .sub-filter-bar { padding: 0.75rem 1.5rem; top: 100px; flex-wrap: wrap; }
  .session-heading { flex-wrap: wrap; gap: 0.5rem; }
  .session-count { margin-left: 0; width: 100%; }
}
