/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --mid:     #1a1a1a;
  --mid2:    #222222;
  --gold:    #b8953f;
  --gold-lt: #d4af60;
  --gold-dk: #8a6c28;
  --cream:   #f0e9d6;
  --red:     #8b1a1a;
  --white:   #ffffff;
  --grey:    #777;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;
  --font-fraktur: 'UnifrakturMaguntia', cursive;
}

html { scroll-behavior: smooth; font-size: 16px; background: #0a0a0a; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  animation: bodyFadeIn 0.5s ease both;
}

@keyframes bodyFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

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

/* ===== VINTAGE GRAIN TEXTURE ===== */
.vintage-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.068;
  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");
  background-repeat: repeat;
  background-size: 200px;
}

/* ===== SIDE NAV ===== */
.side-nav {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.side-nav__cap {
  font-size: 0.6rem;
  color: rgba(184,149,63,0.45);
  line-height: 1;
  display: block;
}

/* track bevat zowel de lijn als de dots — breed genoeg voor de dots */
.side-nav__track {
  position: relative;
  width: 16px;
  height: 220px;
}

/* de lijn zelf: 1px, gecentreerd in de track */
.side-nav__track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(184,149,63,0.15);
}

/* gouden fill over de lijn */
.side-nav__fill {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 0%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dk));
  transition: height 0.3s ease;
  z-index: 1;
}

/* dots-lijst: absolute over de hele track, evenly spaced */
.side-nav__dots {
  position: absolute;
  inset: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  z-index: 2;
}

.side-nav__dots li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.side-nav__dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(184,149,63,0.4);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

/* label — alleen bij hover */
.side-nav__dot::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%) translateX(-3px);
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184,149,63,0.8);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.side-nav__dot:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* actief: gevulde dot, geen label */
.side-nav__dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 6px rgba(184,149,63,0.45);
  transform: scale(1.35);
}
.side-nav__dot:hover {
  border-color: var(--gold-lt);
  box-shadow: 0 0 5px rgba(184,149,63,0.3);
}

/* ===== LABELS ===== */
.label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.label--light { color: var(--gold-lt); }
.label--gold  { color: var(--gold-lt); letter-spacing: 0.35em; text-shadow: 0 0 18px rgba(184,149,63,0.45); }

/* ===== ORNAMENTS ===== */
.ornament {
  font-family: var(--font-serif);
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  margin: 0.75rem 0;
  opacity: 0.7;
}
.ornament--thin { font-size: 0.75rem; letter-spacing: 0.4em; }

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-heading__ornament {
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.section-heading__rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 280px;
  margin: 1rem auto 0;
}
.section-heading__rule span:not(.section-heading__diamond) {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dk));
  opacity: 0.5;
}
.section-heading__rule span:last-child {
  background: linear-gradient(to left, transparent, var(--gold-dk));
}
.section-heading__diamond {
  font-size: 0.5rem;
  color: var(--gold);
}

/* ===== HEADINGS ===== */
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
}
h2 em { font-style: italic; color: var(--gold-lt); }
h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  box-shadow: 0 0 24px rgba(184,149,63,0.25);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(240,233,214,0.35);
}
.btn--outline:hover {
  background: rgba(184,149,63,0.08);
  border-color: rgba(184,149,63,0.65);
  color: var(--gold-lt);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem 1.25rem 3rem;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 0.8rem 2.5rem 0.8rem 3rem;
  border-bottom: 1px solid rgba(184,149,63,0.2);
  backdrop-filter: blur(8px);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(184,149,63,0.4);
  filter: grayscale(20%);
  transition: border-color 0.3s, transform 0.4s ease, box-shadow 0.4s;
}
.nav__logo:hover .nav__logo-img {
  border-color: var(--gold);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 4px 20px rgba(184,149,63,0.25);
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,233,214,0.8);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold-lt); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold-lt) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero-bg.jpg')
              center/cover no-repeat;
}
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  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");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 110% 100% at 50% 50%, transparent 40%, rgba(4,2,0,0.58) 100%),
    linear-gradient(
      to bottom,
      rgba(12,9,2,0.5) 0%,
      rgba(14,10,2,0.62) 55%,
      rgba(10,10,10,0.97) 100%
    );
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__logo-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184,149,63,0.45);
  margin-bottom: 1rem;
  filter: grayscale(15%);
  box-shadow:
    0 0 18px rgba(184,149,63,0.12),
    0 0 40px rgba(184,149,63,0.07),
    0 0 70px rgba(184,149,63,0.04);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.55s ease,
              border-color 0.4s ease,
              filter 0.4s ease;
  cursor: pointer;
}
.hero__logo-img:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  filter: grayscale(0%);
  box-shadow:
    0 12px 30px rgba(184,149,63,0.22),
    0 0 50px rgba(184,149,63,0.15),
    0 0 90px rgba(184,149,63,0.07);
}
.hero__est {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.1rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}
.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-style: italic;
  color: var(--gold-lt);
  letter-spacing: 0.25em;
  margin-bottom: 0.75rem;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.25rem;
  border: 1px solid rgba(184,149,63,0.5);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 0.5rem;
  position: relative;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.hero__cta::before, .hero__cta::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-color: rgba(184,149,63,0.5);
  border-style: solid;
  transition: border-color 0.3s;
}
.hero__cta::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.hero__cta::after  { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.hero__cta:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  box-shadow: 0 0 28px rgba(184,149,63,0.12);
}
.hero__cta:hover::before,
.hero__cta:hover::after { border-color: var(--gold); }
.hero__cta-diamond {
  font-size: 0.35rem;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.hero__cta:hover .hero__cta-diamond { opacity: 1; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240,233,214,0.58);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184,149,63,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0.2) translateY(-30%); }
  50%       { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 2.5rem;
  background: var(--dark);
  gap: 0.6rem;
}
.section-divider__line {
  width: 100%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,149,63,0.35), transparent);
}
.section-divider__emblem {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-divider__star { font-size: 0.5rem; opacity: 0.6; }

/* ===== OVER ===== */
.over {
  position: relative;
  padding: 8rem 0;
  background: var(--black);
}
.over > * { position: relative; z-index: 2; }
.over > .vintage-texture { z-index: 1; }

.over__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.over__rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1rem 0 1.5rem;
}
.over__text p {
  color: rgba(240,233,214,0.7);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.over__badge {
  margin-top: 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(184,149,63,0.4);
  padding: 0.75rem 1.5rem;
  width: fit-content;
}
.over__badge-year {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.over__badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,233,214,0.5);
}

.over__image-frame {
  position: relative;
  padding: 1.25rem;
}
.over__image-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 75%;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.35;
}
.over__image-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 75%; height: 75%;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.35;
}
.over__image-frame img {
  width: 100%;
  filter: grayscale(20%) sepia(0.2) contrast(1.05) brightness(0.93);
}

/* ===== DIENSTEN ===== */
.diensten {
  position: relative;
  padding: 4.5rem 0 7rem;
  background: var(--dark);
}
.diensten > * { position: relative; z-index: 2; }
.diensten > .vintage-texture { z-index: 1; }

/* ===== PRIJSLIJST ===== */
.prijslijst {
  max-width: 640px;
}

.prijslijst__header { margin-bottom: 2.5rem; }
.prijslijst__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(184,149,63,0.5);
  display: block;
  margin-bottom: 0.75rem;
}
.prijslijst__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.prijslijst__title-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
}

/* rijen */
.pr-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(184,149,63,0.12);
  gap: 1rem;
  transition: background 0.2s;
  position: relative;
}
.pr-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1.5px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold) 30%,
    var(--gold) 70%,
    transparent
  );
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.pr-item:hover::before {
  transform: scaleY(1);
}
.prijslijst__header + .pr-item { border-top: 1px solid rgba(184,149,63,0.12); }
.pr-item:hover { background: rgba(184,149,63,0.04); }

.pr-item--highlight {
  border-bottom: 1px solid rgba(184,149,63,0.3);
  border-top: 1px solid rgba(184,149,63,0.3) !important;
}
.pr-item--highlight .pr-item__name { color: var(--white); }
.pr-item--highlight .pr-item__price { color: var(--gold-lt); }
.pr-item--highlight + .pr-item { border-top: none !important; }

.pr-item__left {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.pr-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pr-item__desc {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: rgba(240,233,214,0.55);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.4;
}
.pr-item__num {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(184,149,63,0.5);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 1.6rem;
  padding-top: 0.2rem;
}
.pr-item__name {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--cream);
  font-weight: 400;
}
.pr-item__name em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.65rem;
  color: rgba(240,233,214,0.4);
  letter-spacing: 0.02em;
}
.pr-item__price {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.pr-item__price::before {
  content: '€\00a0';
  font-size: 0.68em;
  font-weight: 400;
  color: rgba(184,149,63,0.75);
  vertical-align: 0.12em;
}

.prijslijst__footer {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.prijslijst__currency-note {
  font-size: 0.62rem;
  color: rgba(240,233,214,0.45);
  letter-spacing: 0.05em;
  max-width: 160px;
  line-height: 1.5;
}
.prijslijst__seal {
  width: 72px;
  height: 72px;
  color: rgba(184,149,63,0.65);
  transform: rotate(12deg);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(184,149,63,0.2));
  transition: color 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}
.prijslijst__seal:hover {
  color: rgba(184,149,63,0.9);
  filter: drop-shadow(0 0 14px rgba(184,149,63,0.4));
  transform: rotate(8deg) scale(1.06);
}
.prijslijst__seal svg { width: 100%; height: 100%; }


/* ===== STATEMENT BANNER ===== */
.statement-banner {
  position: relative;
  padding: 5rem 2rem;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}
.statement-banner__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%,
    rgba(184,149,63,0.07) 0%,
    transparent 70%);
  pointer-events: none;
}
.statement-banner__top-rule,
.statement-banner__bottom-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.statement-banner__bottom-rule { margin: 2rem auto 0; }
.statement-banner__top-rule span:not(.sb-diamond),
.statement-banner__bottom-rule span:not(.sb-diamond) {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,149,63,0.35), transparent);
}
.sb-diamond {
  font-size: 0.45rem;
  color: rgba(184,149,63,0.5);
  flex-shrink: 0;
}
.statement-banner__inner {
  position: relative;
  z-index: 1;
}
.statement-banner__btn { margin-top: 1.5rem; }
.statement-banner__label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(184,149,63,0.45);
  margin-bottom: 1.25rem;
}
.statement-banner__text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.statement-banner__text em {
  font-style: italic;
  color: var(--gold-lt);
}
.statement-banner__address {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,233,214,0.50);
}

/* ===== REVIEWS ===== */
.reviews {
  position: relative;
  padding: 7rem 0 5rem;
  background: var(--black);
  overflow: hidden;
}
.reviews > .vintage-texture { z-index: 1; }
.reviews .container { position: relative; z-index: 2; }

/* carousel wrapper: maskeert de zijkanten */
.reviews__carousel-wrap {
  position: relative;
  z-index: 2;
  margin: 2.5rem 0;
  padding-top: 20px;
  margin-top: calc(2.5rem - 20px);
  overflow-x: clip;
  overflow-y: visible;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

/* de bewegende rij */
.reviews__carousel {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviewScroll 30s linear infinite;
}
.reviews__carousel:hover {
  animation-play-state: paused;
}

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* kaart */
.review-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--mid);
  border: 1px solid rgba(184,149,63,0.1);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.4s ease;
  cursor: default;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,149,63,0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.review-card:hover {
  transform: translateY(-14px);
  border-color: rgba(184,149,63,0.35);
  box-shadow: 0 28px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(184,149,63,0.12);
}
.review-card:hover::before { opacity: 1; }

.review-card__stars {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}
.review-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(240,233,214,0.65);
  margin-bottom: 1.5rem;
  quotes: none;
  position: relative;
  padding-left: 1.1rem;
}
.review-card__quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -0.2rem;
  font-size: 2.2rem;
  color: rgba(184,149,63,0.18);
  font-style: normal;
  line-height: 1;
}
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.review-card__name {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}
.review-card__source {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184,149,63,0.55);
}

.reviews__google-link {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,233,214,0.52);
  transition: color 0.2s;
  display: inline-block;
}
.reviews__google-link:hover { color: var(--gold); }

/* coming soon placeholder */
.reviews__coming-soon {
  text-align: center;
  padding: 3rem 0 2rem;
  border: 1px solid rgba(184,149,63,0.2);
  border-radius: 2px;
}
.reviews__coming-soon-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
.reviews__coming-soon-text {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,233,214,0.45);
}

/* score */
.reviews__score {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.reviews__score-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.reviews__score-right {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.reviews__score-stars {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.reviews__score-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,233,214,0.52);
}

/* ===== LOCATIE ===== */
.locatie {
  position: relative;
  padding: 8rem 0;
  background: var(--black);
}
.locatie > * { position: relative; z-index: 2; }
.locatie > .vintage-texture { z-index: 1; }

.locatie__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.locatie__adres {
  margin: 1rem 0 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(184,149,63,0.15);
}
.locatie__adres p {
  color: rgba(240,233,214,0.65);
  font-size: 0.95rem;
  line-height: 2;
}
.locatie__uren {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
}
.uur-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.uur-row span:first-child { color: rgba(240,233,214,0.55); }
.uur-row span:last-child  { color: var(--cream); font-weight: 500; }
.uur-row span.closed      { color: rgba(184,149,63,0.4); font-style: italic; }
.locatie__note {
  font-size: 0.7rem;
  color: var(--grey);
  margin-top: 1rem;
  letter-spacing: 0.03em;
}
.map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,149,63,0.18);
}

.map-frame::before,
.map-frame::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.3s;
}
.map-frame::before { top: 0; left: 0;     border-width: 1px 0 0 1px; }
.map-frame::after  { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.map-frame:hover::before,
.map-frame:hover::after { opacity: 0.85; }

.map-frame iframe {
  display: block;
  width: 100%;
  border: none;
  filter: invert(95%) hue-rotate(180deg) contrast(0.85) saturate(0.25) brightness(0.75);
}

.map-frame__badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,10,10,0.92) 55%);
  padding: 3rem 1.5rem 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
}

.map-frame__name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
}

.map-frame__directions {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  pointer-events: auto;
  transition: color 0.2s;
}
.map-frame__directions:hover { color: var(--gold-lt); }

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: 8rem 0;
  background: var(--dark);
}
.contact > * { position: relative; z-index: 2; }
.contact > .vintage-texture { z-index: 1; }

.contact__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact__inner p {
  color: rgba(240,233,214,0.6);
  margin: 1.5rem 0 2.5rem;
  font-size: 0.92rem;
}
.contact__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,149,63,0.4);
  padding: 0.85rem 2rem;
  transition: color 0.25s, gap 0.2s, border-color 0.25s, box-shadow 0.25s;
}
.contact__cta:hover {
  color: var(--gold-lt);
  gap: 1.1rem;
  border-color: rgba(184,149,63,0.75);
  box-shadow: 0 0 22px rgba(184,149,63,0.09);
}
.contact__cta svg { width: 16px; height: 16px; transition: transform 0.2s; flex-shrink: 0; }
.contact__cta:hover svg { transform: translateX(5px); }
.contact__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.contact__meta-link {
  color: rgba(240,233,214,0.52);
  transition: color 0.2s;
}
.contact__meta-link:hover { color: var(--gold-lt); }
.contact__meta-sep { color: rgba(184,149,63,0.3); }
.contact__social {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(184,149,63,0.7);
}
.contact__social a:hover { color: var(--gold-lt); }
.contact__social span { font-size: 0.45rem; opacity: 0.5; align-self: center; }

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 2rem 2rem;
  background: var(--black);
  border-top: 1px solid rgba(184,149,63,0.12);
}
.footer__inner { text-align: center; }
.footer__logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  border: 1px solid rgba(184,149,63,0.3);
  filter: grayscale(30%);
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 700;
}
.footer__ornament {
  font-family: var(--font-serif);
  color: rgba(184,149,63,0.4);
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  margin: 0.5rem 0;
}
.footer__sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.footer__copy {
  font-size: 0.68rem;
  color: rgba(119,119,119,0.45);
}
.footer__links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184,149,63,0.4);
  margin-bottom: 1.25rem;
}
.footer__links a:hover { color: var(--gold-lt); }
.footer__links span { opacity: 0.4; }

/* ===== PAGE HERO (subpagina's) ===== */
.page-hero {
  position: relative;
  height: 38vh;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background: center/cover no-repeat;
  margin-top: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.95) 100%
  );
  z-index: 1;
}
.page-hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  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");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}
.page-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 2rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.page-hero__label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.page-hero__rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  opacity: 0.7;
}

/* ===== OVER — teaser link ===== */
.over__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.75rem;
  transition: color 0.2s, gap 0.2s;
}
.over__more:hover { color: var(--gold-lt); gap: 0.85rem; }

/* ===== DIENSTEN — verborgen rijen op home ===== */
.pr-item--hidden { display: none; }

.prijslijst__more {
  margin-top: 2rem;
}

/* ===== TEAM ===== */
.team {
  position: relative;
  padding: 7rem 0;
  background: var(--dark);
}
.team > * { position: relative; z-index: 2; }
.team > .vintage-texture { z-index: 1; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--mid);
  border: 1px solid rgba(184,149,63,0.1);
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s ease,
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.team-card:hover {
  border-color: rgba(184,149,63,0.35);
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.55);
}
.team-card:hover::before { opacity: 1; }
.team-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%) sepia(0.18) contrast(1.04) brightness(0.95);
  display: block;
}
.team-card__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a1a1a 0%, #222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(184,149,63,0.15);
}
.team-card__info {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(184,149,63,0.1);
}
.team-card__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== SFEER GALERIJ ===== */
.sfeer {
  position: relative;
  padding: 7rem 0;
  background: var(--black);
}
.sfeer > * { position: relative; z-index: 2; }
.sfeer > .vintage-texture { z-index: 1; }

.sfeer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.sfeer-grid__item {
  position: relative;
  overflow: hidden;
}
.sfeer-grid__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.sfeer-grid__item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  filter: grayscale(25%) sepia(0.18) contrast(1.04);
  transition: transform 0.5s ease, filter 0.4s;
  display: block;
}
.sfeer-grid__item:hover img { transform: scale(1.04); filter: grayscale(10%) sepia(0.1); }

/* gouden frame op hover */
.sfeer-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,149,63,0);
  transition: border-color 0.3s;
  pointer-events: none;
}
.sfeer-grid__item:hover::after { border-color: rgba(184,149,63,0.3); }

/* ===== WERKWIJZE ===== */
.werkwijze {
  position: relative;
  padding: 7rem 0;
  background: var(--black);
}
.werkwijze > * { position: relative; z-index: 2; }
.werkwijze > .vintage-texture { z-index: 1; }

.werkwijze__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.werkwijze-step {
  padding: 2.5rem 2rem;
  background: var(--mid);
  border: 1px solid rgba(184,149,63,0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.25s ease,
              box-shadow 0.35s ease;
  cursor: default;
}
.werkwijze-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.werkwijze-step:hover {
  transform: translateY(-10px);
  border-color: rgba(184,149,63,0.35);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.55),
    0 0 0 1px rgba(184,149,63,0.07);
}
.werkwijze-step:hover::before {
  opacity: 1;
}
.werkwijze-step:hover .werkwijze-step__num {
  color: rgba(184,149,63,0.8);
}
.werkwijze-step__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,149,63,0.35);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.werkwijze-step__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.werkwijze-step__text {
  font-size: 0.85rem;
  color: rgba(240,233,214,0.55);
  line-height: 1.7;
}

/* ===== TARIEVEN TEASER (home) ===== */
.tarieven-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tarieven-teaser__frame {
  position: relative;
  padding: 1.25rem;
}
.tarieven-teaser__frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 75%;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.35;
}
.tarieven-teaser__frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 75%; height: 75%;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.35;
}
.tarieven-teaser__frame img {
  width: 100%;
  display: block;
  filter: grayscale(55%) brightness(0.72) contrast(1.1);
}
.tarieven-teaser__rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
  opacity: 0.55;
}
.tarieven-teaser__services {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(184,149,63,0.6);
  text-transform: uppercase;
  margin-bottom: 2.75rem;
}
.tarieven-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,149,63,0.4);
  padding: 0.85rem 1.75rem;
  transition: color 0.25s, gap 0.2s, border-color 0.25s, box-shadow 0.25s;
}
.tarieven-teaser__cta:hover {
  color: var(--gold-lt);
  gap: 1.1rem;
  border-color: rgba(184,149,63,0.75);
  box-shadow: 0 0 22px rgba(184,149,63,0.09);
}
.tarieven-teaser__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.tarieven-teaser__cta:hover svg { transform: translateX(5px); }

/* ===== MERKEN ===== */
.merken {
  position: relative;
  padding: 8rem 0;
  background: var(--dark);
}
.merken > * { position: relative; z-index: 2; }
.merken > .vintage-texture { z-index: 1; }

.merken__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.merk-card {
  background: var(--mid);
  border: 1px solid rgba(184,149,63,0.15);
  padding: 2.5rem 1.75rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s, box-shadow 0.35s ease;
  cursor: default;
}
.merk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.merk-card:hover {
  transform: translateY(-14px);
  border-color: rgba(184,149,63,0.4);
  box-shadow: 0 28px 50px rgba(0,0,0,0.6);
}
.merk-card:hover::before { opacity: 1; }

.merk-card__mark {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,149,63,0.2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.merk-card:hover .merk-card__mark {
  border-color: rgba(184,149,63,0.55);
  box-shadow: 0 0 18px rgba(184,149,63,0.1);
}
.merk-card__mark svg { width: 38px; height: 38px; }
.merk-card__mark img {
  max-width: 58px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}
.merk-card__mark img.logo--invert { filter: invert(1); }

.merk-card__num {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(184,149,63,0.35);
  margin-bottom: 0.5rem;
}
.merk-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 700;
  line-height: 1.2;
}
.merk-card__rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 0.75rem auto;
  opacity: 0.35;
  transition: opacity 0.3s, width 0.3s;
}
.merk-card:hover .merk-card__rule { opacity: 0.65; width: 42px; }
.merk-card__desc {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,233,214,0.52);
}

/* ===== SECTION SEPARATORS ===== */
.over,
.diensten,
.statement-banner,
.reviews,
.locatie,
.contact,
.team,
.sfeer,
.werkwijze,
.merken {
  border-top: 1px solid transparent;
  border-image: linear-gradient(
    to right,
    rgba(184,149,63,0.35) 0%,
    rgba(184,149,63,0.65) 20%,
    rgba(184,149,63,0.65) 80%,
    rgba(184,149,63,0.35) 100%
  ) 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .over__grid, .locatie__grid { grid-template-columns: 1fr; gap: 3rem; }
  .over__image { order: -1; }
  .tarieven-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
  .tarieven-teaser__image { order: -1; }

  .side-nav { display: none; }
  .prijslijst { max-width: 100%; }
  .review-card { width: 280px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .sfeer-grid { grid-template-columns: repeat(2, 1fr); }
  .sfeer-grid__item:first-child { grid-column: span 2; }
  .werkwijze__steps { grid-template-columns: 1fr; }
  .merken__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    z-index: 100;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; }
  .nav__toggle { display: flex; }
  .contact__buttons { flex-direction: column; align-items: center; }
  .section-divider__emblem { font-size: 0.55rem; gap: 0.6rem; }
  .team__grid { grid-template-columns: 1fr; }
  .sfeer-grid { grid-template-columns: 1fr; }
  .sfeer-grid__item:first-child { grid-column: span 1; }
  .merken__grid { grid-template-columns: repeat(2, 1fr); }
}
