/* ===========================================================
   Leds Shine — lichtcijfers verhuur (Helmond e.o.)
   ----------------------------------------------------------
   Alle teksten staan in index.html en zijn los aan te passen.
   Kleuren, lettertypes en maten pas je hieronder aan.
   =========================================================== */

:root {
  --groen:        #5e7c52;   /* saliegroen, iets dieper */
  --groen-donker: #263f2c;   /* diep bosgroen (koppen, accenten) */
  --goud:         #b8934a;   /* warm messing/goud accent */
  --goud-licht:   #d9b978;
  --zwart:        #221f1a;   /* warme bijna-zwart */
  --grijs-bg:     #f6f1e7;   /* warme crème pagina-achtergrond */
  --grijs-licht:  #fdfaf3;   /* warm bijna-wit */
  --wit:          #ffffff;
  --tekst-zacht:  #6b6357;   /* warme tekstgrijs (lopende tekst, subtitels) */
  --tekst-licht:  #9a917f;   /* lichter, voor kleine bijschriften */
  --warm:         #ffdca6;   /* warm lamplicht */
  --warm-glow:    #ffbe5c;

  --maxbreedte:   1120px;
  --radius:       16px;
  /* zachtere, consistente kaartlift + hairline rand -> alles hoort bij elkaar */
  --schaduw:      0 12px 30px -18px rgba(60, 44, 20, .28);
  --rand:         1px solid rgba(120, 96, 54, .16);

  --font-serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script: "Dancing Script", "Segoe Script", cursive;
  --font-body:   "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--zwart);
  background: var(--grijs-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  width: 100%;
  max-width: var(--maxbreedte);
  margin-inline: auto;
  padding-inline: 22px;
}

section { padding: clamp(64px, 9vw, 104px) 0; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .01em;
}
::selection { background: var(--goud-licht); color: var(--zwart); }

h2.kop {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 600;
  text-align: center;
  color: var(--groen-donker);
  letter-spacing: .1em;
  text-transform: uppercase;
}
/* fijne, gegraveerde streep met een klein ruitje in het midden */
h2.kop::after {
  content: "";
  display: block;
  width: 78px;
  height: 7px;
  margin: 18px auto 0;
  background:
    linear-gradient(var(--goud), var(--goud)) center / 78px 1px no-repeat,
    linear-gradient(45deg, transparent 43%, var(--goud) 43% 57%, transparent 57%) center / 7px 7px no-repeat;
}
.kop + .intro {
  text-align: center;
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--tekst-zacht);
}

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-groen { background: var(--groen); color: #fff; box-shadow: 0 8px 20px rgba(127, 155, 111, .4); }
.btn-groen:hover { background: var(--groen-donker); }
.btn-outline { border-color: currentColor; color: var(--groen-donker); }
.btn-outline:hover { background: var(--groen-donker); color: #fff; border-color: var(--groen-donker); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .4); }
.btn-wa:hover { background: #1eb655; }
.btn-insta {
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  box-shadow: 0 8px 20px rgba(220, 39, 67, .35);
}
.btn-insta:hover { filter: brightness(1.08); }
.btn-licht { background: #fff; color: var(--groen-donker); }
.btn-licht:hover { background: var(--grijs-licht); }
/* hero-knoppen: allebei dezelfde fijne-lijn "glazen" knop, zodat ze op elke foto goed
   ogen. De hoofdknop heeft net iets meer vulling + het WhatsApp-icoon als accent. */
.btn-hero-primary,
.btn-hero-ghost {
  border: 1px solid rgba(255, 255, 255, .62);
  color: #fff;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .4);
}
.btn-hero-primary { background: rgba(255, 255, 255, .16); }
.btn-hero-ghost { background: rgba(255, 255, 255, .08); }
.btn-hero-primary svg { color: var(--goud-licht); }
.btn-hero-primary strong { font-weight: 600; letter-spacing: .02em; }
.btn-hero-primary:hover,
.btn-hero-ghost:hover { background: #fff; color: var(--groen-donker); border-color: #fff; }
.btn-hero-primary:hover svg { color: var(--groen); }

/* ---------- Header (zwevende, meebewegende balk) ---------- */
.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding: 0 16px;
  background: transparent;
  transition: top .35s ease;
}
.site-header .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 18px 8px 20px;
  border-radius: 22px;
  background: rgba(248, 243, 234, .93);
  border: 1px solid rgba(184, 147, 74, .3);
  box-shadow: 0 14px 34px -16px rgba(45, 33, 15, .26);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  transition: background .35s ease, box-shadow .35s ease, border-radius .35s ease, padding .35s ease, border-color .35s ease;
}
.site-header.scrolled { top: 8px; }
.site-header.scrolled .wrap {
  background: rgba(247, 242, 232, .97);
  border-color: rgba(184, 147, 74, .42);
  box-shadow: 0 16px 40px -14px rgba(45, 33, 15, .32);
  border-radius: 999px;
  padding-block: 6px;
}

/* ---- logo: bulb-mark + serif-woordmerk ---- */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-header .logo-mark {
  height: 56px;
  width: auto;
  display: block;
  flex: none;
  transition: height .35s ease;
}
.site-header.scrolled .logo-mark { height: 46px; }
.logo-naam {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: 1.92rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--groen-donker);
  transition: font-size .35s ease;
}
.logo-naam em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--goud);
  margin-top: 4px;
}
.site-header.scrolled .logo-naam { font-size: 1.62rem; }
.site-header.scrolled .logo-naam em { font-size: .52rem; }
@media (max-width: 560px) {
  .site-header .logo-mark { height: 44px; }
  .site-header.scrolled .logo-mark { height: 38px; }
  .logo-naam { font-size: 1.42rem; letter-spacing: .12em; }
  .logo-naam em { font-size: .48rem; letter-spacing: .22em; }
}
@keyframes gloei {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 190, 92, 0)); }
  50%      { filter: drop-shadow(0 0 8px rgba(255, 190, 92, .9)); }
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) {
  position: relative;
  text-decoration: none;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--groen-donker);
  padding: 6px 1px;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 2px;
  height: 1px;
  background: var(--goud);
  transition: right .3s ease;
}
.nav a:not(.btn):hover::after,
.nav a:not(.btn):focus-visible::after { right: 0; }
@media (min-width: 861px) {
  .nav::before {
    content: "";
    align-self: center;
    width: 1px; height: 20px;
    background: rgba(184, 147, 74, .35);
  }
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--groen-donker); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(860px, 98vh);
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 168px 0 116px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("images/hero.jpeg") 38% 46% / cover no-repeat;
  transform: scale(1.05);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22, 26, 20, .45) 0%, rgba(22, 26, 20, .62) 45%, rgba(22, 26, 20, .82) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.3rem, 5.8vw, 3.9rem);
  font-weight: 600;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .55);
}
.hero .lead {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 2vw, 1.14rem);
  color: rgba(255, 255, 255, .92);
}
.hero .knoppen {
  margin-top: 30px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.hero .onder {
  margin-top: 20px;
  font-size: .88rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .78);
}

/* ---------- Voordelen ---------- */
.voordelen { background: var(--wit); padding: 46px 0; border-bottom: 1px solid rgba(120, 96, 54, .12); }
.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.voordeel {
  text-align: center;
  padding: 6px 18px;
}
@media (min-width: 981px) {
  .voordeel + .voordeel { border-left: 1px solid rgba(120, 96, 54, .12); }
}
.voordeel .icoon {
  width: 38px; height: 38px;
  margin: 0 auto 12px;
  color: var(--goud);
}
.voordeel p { font-size: .88rem; font-weight: 500; color: var(--tekst-zacht); }

/* ---------- Hoe het werkt ---------- */
.stappen {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stap {
  background: var(--wit);
  border: var(--rand);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--schaduw);
}
.stap .nr {
  width: 46px; height: 46px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--groen-donker);
  color: var(--goud-licht);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  border: 2px solid var(--goud);
  box-shadow: 0 0 0 3px rgba(184, 147, 74, .16);
}
.stap h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--groen-donker); }
.stap p { font-size: .93rem; color: var(--tekst-zacht); }

/* ---------- Configurator (licht & speels) ---------- */
.config {
  background:
    radial-gradient(55% 46% at 50% 24%, rgba(216, 185, 120, .2), transparent 72%),
    var(--wit);
  color: var(--zwart);
}

.config-wrap { margin-top: 42px; }
.config-bouwer {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 64px -28px rgba(70, 45, 20, .38);
  text-align: center;
}
.config-bouwer .kop { color: var(--groen-donker); }
.config-bouwer .intro { max-width: 400px; margin: 10px auto 0; color: var(--tekst-zacht); }

.config-velden { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; text-align: left; }
.config-velden .veld { flex: 1 1 160px; }
.config-velden .veld > span {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--groen-donker);
  margin-bottom: 7px;
}
.config-velden .veld > span em { font-style: normal; font-weight: 400; color: #a09a8c; }
.config-velden input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1.5px solid #e6e0d4;
  background: #fdfbf7;
  font: inherit;
  font-size: 1.05rem;
  color: var(--zwart);
  transition: border-color .15s ease, background .15s ease;
}
.config-velden input::placeholder { color: #bdb6a7; }
.config-velden input:focus { outline: none; border-color: var(--groen); background: #fff; }

.offerte-uitslag {
  margin: 20px 0;
  padding: 20px 22px 16px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, #fff7ea, #ffeed3);
  border: 1px solid rgba(255, 178, 90, .38);
}
.ou-prijs { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.ou-prijs strong {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 1;
  color: #b26a1c;
}
.ou-prijs span { font-size: .9rem; color: #a9803f; }
.ou-detail { margin-top: 9px; font-size: .93rem; color: #86642f; }
#ofNoot { margin-top: 8px; font-size: .84rem; color: #a9803f; }
#ofNoot.of-let-op { color: #c0392b; font-weight: 500; }

.btn-groot { width: 100%; justify-content: center; padding: 16px 28px; font-size: 1.03rem; }
.config-ook { margin-top: 12px; text-align: center; font-size: .88rem; color: #857f70; }
.config-ook a { color: var(--groen-donker); font-weight: 500; text-decoration: underline; }
.config-ook a:hover { color: var(--groen); }

.config .mini { margin: 16px auto 0; font-size: .8rem; color: #a49d8d; }

@media (max-width: 560px) {
  .config-bouwer { padding: 30px 22px 26px; }
}

/* ---------- Galerij: 3D-coverflow ---------- */
#cijfers {
  background:
    radial-gradient(60% 48% at 50% 44%, rgba(216, 185, 120, .24), transparent 74%),
    var(--wit);
  overflow: hidden;
}
.galerij {
  position: relative;
  margin-top: 34px;
  perspective: 1600px;
}
.galerij-track {
  display: flex;
  align-items: center;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 34px max(22px, calc(50% - clamp(150px, 23vw, 210px)));
  transform-style: preserve-3d;
}
.galerij-track::-webkit-scrollbar { display: none; }
.galerij-track figure {
  position: relative;
  flex: 0 0 clamp(260px, 46vw, 420px);
  margin: 0;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  opacity: .48;
  transform: scale(.8);
  /* zijkaarten (getild) dragen geen eigen schaduw: een box-shadow op een rotateY-vlak
     kantelt mee met de kaart en oogt dan scheef/onnatuurlijk. Alleen de platte, actieve
     kaart in het midden krijgt een schaduw. */
  box-shadow: none;
  transition: transform .55s cubic-bezier(.2, .6, .3, 1), opacity .5s ease, box-shadow .5s ease;
  will-change: transform;
}
.galerij-track figure.side-left  { transform: rotateY(26deg) scale(.8); transform-origin: right center; }
.galerij-track figure.side-right { transform: rotateY(-26deg) scale(.8); transform-origin: left center; }
.galerij-track figure.is-active {
  opacity: 1;
  transform: rotateY(0) scale(1);
  box-shadow:
    0 6px 10px -6px rgba(28, 20, 10, .3),
    0 18px 26px -14px rgba(28, 20, 10, .3);
}
.galerij-track img {
  width: 100%;
  height: clamp(360px, 58vw, 520px);
  object-fit: cover;
  display: block;
}
.gal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(70, 52, 26, .12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  color: var(--groen-donker);
  cursor: pointer;
  z-index: 3;
  transition: background .15s ease, transform .15s ease;
}
.gal-nav svg { width: 20px; height: 20px; }
.gal-nav:hover { background: var(--grijs-licht); transform: translateY(-50%) scale(1.08); }
.gal-nav.prev { left: max(12px, calc(50% - clamp(310px, 48vw, 470px))); }
.gal-nav.next { right: max(12px, calc(50% - clamp(310px, 48vw, 470px))); }
@media (prefers-reduced-motion: reduce) {
  .galerij-track figure { opacity: 1; transform: none !important; transition: none; }
}
@media (max-width: 640px) {
  .gal-nav { display: none; }
  .galerij-track { gap: 16px; }
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 15, 15, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
.lightbox button {
  position: absolute; top: 22px; right: 26px;
  background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1;
}

/* ---------- Sfeerband (close-up van de lampjes) ---------- */
.lichtband {
  position: relative;
  padding: 128px 0;
  text-align: center;
  background-image:
    linear-gradient(rgba(16, 13, 9, .5), rgba(16, 13, 9, .7)),
    url("images/band-lampjes.jpeg");
  background-position: center;
  background-size: cover;
  border-block: 1px solid rgba(216, 185, 120, .35);
}
/* dun, gegraveerd kaderlijntje binnen de band */
.lichtband::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  pointer-events: none;
}
.lichtband .wrap { position: relative; z-index: 1; }
.lichtband-logo {
  height: 132px;
  width: auto;
  margin: 0 auto 22px;
  opacity: .95;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .5));
}
.lichtband p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
  max-width: 660px;
  margin-inline: auto;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}
@media (max-width: 560px) {
  .lichtband-logo { height: 104px; }
}
@media (max-width: 820px) {
  .lichtband { padding: 84px 0; }
}

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.inview { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Kaarten: zachte beweging bij hover ---------- */
.stap, .geleg, .prijs, .spec {
  transition:
    opacity .6s ease,
    transform .38s cubic-bezier(.2, .6, .3, 1),
    box-shadow .32s ease,
    border-color .32s ease;
}
.geleg .icoon, .stap .nr, .spec img {
  transition: transform .35s cubic-bezier(.2, .6, .3, 1);
}
@media (hover: hover) {
  .stap:hover, .geleg:hover, .prijs:hover, .spec:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 56px -22px rgba(70, 52, 26, .32);
    border-color: rgba(184, 147, 74, .5);
  }
  .prijs.populair:hover {
    border-color: var(--goud);
    box-shadow: 0 30px 56px -20px rgba(184, 147, 74, .48);
  }
  .geleg:hover .icoon { transform: translateY(-3px) scale(1.1); }
  .stap:hover .nr { transform: scale(1.1); }
  .spec:hover img { transform: scale(1.045); }
}
@media (prefers-reduced-motion: reduce) {
  .stap, .geleg, .prijs, .spec,
  .geleg .icoon, .stap .nr, .spec img { transition: none; }
  .stap:hover, .geleg:hover, .prijs:hover, .spec:hover { transform: none; }
}

/* ---------- Gelegenheden ---------- */
.gelegenheden { background: var(--grijs-licht); }
.geleg-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.geleg {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: var(--rand);
  box-shadow: var(--schaduw);
}
.geleg .icoon { width: 34px; height: 34px; color: var(--goud); margin-bottom: 14px; }
.geleg h3 { font-size: 1.25rem; color: var(--groen-donker); margin-bottom: 6px; }
.geleg p { font-size: .93rem; color: var(--tekst-zacht); }

/* ---------- Prijzen ---------- */
.prijzen-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.prijs {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--schaduw);
  display: flex;
  flex-direction: column;
  border: var(--rand);
}
.prijs.populair {
  border: 1px solid var(--goud);
  box-shadow: 0 20px 46px -22px rgba(184, 147, 74, .4);
}
/* licht op zodra je hierboven bijpassend aantal cijfers aantikt */
.prijs.prijs-actief {
  border: 1px solid var(--goud);
  box-shadow:
    0 0 0 3px rgba(184, 147, 74, .22),
    0 30px 58px -18px rgba(184, 147, 74, .5);
  transform: translateY(-5px);
}
/* zorgt dat de bedragen op één lijn staan, ook zonder label */
.prijs:not(.populair)::before {
  content: "";
  display: block;
  height: 23px;
  margin-bottom: 14px;
}
.prijs .tag {
  align-self: center;
  background: var(--goud);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.prijs h3 { font-size: 1.4rem; color: var(--groen-donker); }
.prijs .bedrag {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  margin: 10px 0 4px;
}
.prijs .bedrag small { font-size: .9rem; font-weight: 400; color: var(--tekst-licht); }
.prijs p.sub { font-size: .86rem; color: var(--tekst-licht); }
.prijs .btn { margin-top: auto; }

.prijzen-cta {
  position: relative;
  max-width: 660px;
  margin: 30px auto 0;
  text-align: center;
  padding: 40px 36px 34px;
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(216, 185, 120, .16), transparent 60%),
    linear-gradient(180deg, var(--wit), var(--grijs-licht));
  border: 1px solid rgba(184, 147, 74, .3);
  box-shadow: 0 26px 60px -30px rgba(70, 52, 26, .4);
}
/* dun gegraveerd kaderlijntje */
.prijzen-cta::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(184, 147, 74, .22);
  pointer-events: none;
}
.prijzen-cta > * { position: relative; }
.prijzen-cta .cta-kop {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--groen-donker);
  line-height: 1.2;
}
.prijzen-cta .cta-sub {
  margin: 8px auto 22px;
  max-width: 380px;
  font-size: .92rem;
  color: var(--tekst-zacht);
}
.btn-offerte {
  background: var(--groen-donker);
  color: #fff;
  padding: 16px 34px;
  font-size: 1.02rem;
  box-shadow: 0 16px 34px -14px rgba(38, 63, 44, .55);
}
.btn-offerte svg { width: 20px; height: 20px; color: var(--goud-licht); }
.btn-offerte:hover { background: var(--groen); box-shadow: 0 20px 40px -14px rgba(38, 63, 44, .6); }
.prijzen-cta .cta-alt { margin-top: 16px; font-size: .88rem; color: var(--tekst-licht); }
.prijzen-cta .cta-alt a { color: var(--groen-donker); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.prijzen-cta .cta-alt a:hover { color: var(--goud); }

.prijzen-info {
  max-width: 720px;
  margin: 30px auto 0;
  background: var(--wit);
  border: var(--rand);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--schaduw);
}
.prijzen-info ul { list-style: none; }
.prijzen-info li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .93rem;
  color: var(--tekst-zacht);
}
.prijzen-info li::before {
  content: "";
  position: absolute; left: 2px; top: 15px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--goud);
}
.prijzen-info li strong { color: var(--groen-donker); }

/* ---------- Oplichtende cijfer-tegel (gedeeld) ---------- */
.cijfer-tegel {
  --tw: 56px;
  width: var(--tw);
  height: calc(var(--tw) * 1.24);
  flex: none;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  font-family: var(--font-serif);
  font-size: calc(var(--tw) * .64);
  font-weight: 700;
  line-height: 1;
  color: var(--groen-donker);
  background: var(--wit);
  border: 1px solid rgba(184, 147, 74, .45);
  border-radius: 9px;
  box-shadow: var(--schaduw);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color .35s ease, background .45s ease, border-color .45s ease, box-shadow .45s ease, transform .18s ease;
}
button.cijfer-tegel { font-family: var(--font-serif); }
.cijfer-tegel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 52% at 50% 46%, rgba(255, 190, 92, .6), transparent 70%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.cijfer-tegel:hover { transform: translateY(-2px); }
.cijfer-tegel.aan {
  color: #b5701c;
  background: linear-gradient(180deg, #fff6e6, #ffe8c2);
  border-color: rgba(255, 190, 92, .85);
  box-shadow:
    0 0 0 1px rgba(255, 190, 92, .5),
    0 6px 26px -2px rgba(255, 178, 74, .55),
    0 16px 40px -12px rgba(150, 96, 30, .35);
}
.cijfer-tegel.aan::after { opacity: 1; animation: tegelGloed 3.4s ease-in-out infinite; }
/* echte lamp-flikker: onregelmatig aan/uit/aan voordat 'm stabiel blijft branden */
.cijfer-tegel.ontsteek { animation: tegelOntsteek .7s cubic-bezier(.3, .1, .2, 1) both; }
.cijfer-tegel.ontsteek::after { animation: tegelOntstekenGloed .7s ease both; }
@keyframes tegelOntsteek {
  0%   { color: var(--groen-donker); box-shadow: var(--schaduw); }
  8%   { color: #d98a2c; box-shadow: 0 0 26px rgba(255, 190, 92, .9); }
  15%  { color: var(--groen-donker); box-shadow: var(--schaduw); }
  24%  { color: #e0973a; box-shadow: 0 0 18px rgba(255, 190, 92, .7); }
  32%  { color: var(--groen-donker); box-shadow: var(--schaduw); }
  44%  { color: #d98a2c; box-shadow: 0 0 30px rgba(255, 190, 92, .95); }
  56%  { color: #b5701c; box-shadow: 0 6px 26px -2px rgba(255, 178, 74, .4); }
  70%  { color: #d98a2c; box-shadow: 0 6px 30px -2px rgba(255, 178, 74, .6); }
  100% { color: #b5701c; }
}
@keyframes tegelOntstekenGloed {
  0%   { opacity: 0; }
  8%   { opacity: .9; }
  15%  { opacity: .12; }
  24%  { opacity: .7; }
  32%  { opacity: .08; }
  44%  { opacity: 1; }
  56%  { opacity: .5; }
  70%  { opacity: .85; }
  100% { opacity: 1; }
}
@keyframes tegelGloed {
  0%, 100% { opacity: .72; }
  50%      { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .cijfer-tegel, .cijfer-tegel::after { transition: none; }
  .cijfer-tegel.ontsteek, .cijfer-tegel.ontsteek::after { animation: none; }
  .cijfer-tegel.aan::after { animation: none; }
  .cb-hint.cb-hint-actief { animation: none; }
}

/* ---------- Beschikbare cijfers (klikbare rij) ---------- */
.cijfer-beschikbaar { text-align: center; margin-top: 34px; }
.cb-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--goud);
  margin-bottom: 14px;
}
.cb-rij {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cb-rij .cijfer-tegel { --tw: 50px; }
.cb-binnenkort {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--tekst-licht);
}
.cb-hint {
  margin-top: 4px;
  font-size: .76rem;
  color: var(--tekst-licht);
  opacity: .8;
  transition: color .2s ease;
}
.cb-hint.cb-hint-actief {
  color: var(--goud);
  opacity: 1;
  font-weight: 600;
  animation: cbHintPop .3s ease;
}
@keyframes cbHintPop {
  0%   { transform: scale(.94); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 560px) {
  .cb-rij { gap: 7px; }
  .cb-rij .cijfer-tegel { --tw: 40px; }
}

/* ---------- "Let op"-melding ---------- */
.let-op {
  max-width: 700px;
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 22px;
  text-align: left;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff8ec, #fbefd9);
  border: 1px solid rgba(184, 147, 74, .4);
  border-left: 4px solid var(--goud);
  font-size: .95rem;
  color: #6c5527;
}
.let-op svg { width: 26px; height: 26px; flex: none; color: var(--goud); }
.let-op strong { color: var(--groen-donker); }
@media (max-width: 560px) {
  .let-op { align-items: flex-start; }
}

/* ---------- Specificaties / Goed om te weten ---------- */
.specs { background: var(--grijs-licht); }
.specs-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.spec {
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--rand);
  box-shadow: var(--schaduw);
  display: flex;
  flex-direction: column;
}
.spec img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.spec-tekst { padding: 22px 24px 26px; }
.spec-tekst h3 { font-size: 1.2rem; color: var(--groen-donker); margin-bottom: 6px; }
.spec-tekst p { font-size: .93rem; color: var(--tekst-zacht); }
@media (max-width: 780px) {
  .specs-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ---------- FAQ ---------- */
#faq { background: var(--grijs-licht); }
.faq-lijst { max-width: 760px; margin: 42px auto 0; }
.faq-item {
  background: var(--wit);
  border: var(--rand);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--schaduw);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--groen-donker);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--groen); flex: none; }
.faq-item[open] summary::after { content: "\00d7"; }
.faq-item .antwoord { padding: 0 22px 20px; color: var(--tekst-zacht); font-size: .96rem; }

/* ---------- Contact ---------- */
.contact {
  position: relative;
  padding: clamp(46px, 6vw, 68px) 0;
  background:
    linear-gradient(rgba(16, 13, 9, .5), rgba(16, 13, 9, .7)),
    url("images/band-lampjes.jpeg") center / cover;
  color: #fff;
  text-align: center;
}
/* dun gegraveerd kader */
.contact::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 185, 120, .3);
  pointer-events: none;
}
.contact .wrap { position: relative; z-index: 1; }
.contact h2.kop { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.4rem); text-shadow: 0 2px 18px rgba(0, 0, 0, .55); }
.contact .intro { color: rgba(255, 255, 255, .88); margin-top: 12px; text-shadow: 0 2px 14px rgba(0, 0, 0, .5); }
.contact-details { text-shadow: 0 1px 10px rgba(0, 0, 0, .45); }
.contact-knoppen {
  margin-top: 26px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
/* alle contactknoppen in één rustige fine-line stijl */
.contact-knoppen .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
  box-shadow: none;
  font-weight: 500;
  letter-spacing: .01em;
}
.contact-knoppen .btn svg { color: var(--goud-licht); }
.contact-knoppen .btn:hover {
  background: rgba(255, 255, 255, .06);
  border-color: var(--goud-licht);
  transform: translateY(-2px);
}
/* WhatsApp = de hoofdknop: warm ingevuld */
.contact-knoppen .btn-wa {
  background: var(--grijs-licht);
  border-color: var(--grijs-licht);
  color: var(--groen-donker);
}
.contact-knoppen .btn-wa svg { color: var(--groen); }
.contact-knoppen .btn-wa:hover { background: #fff; border-color: #fff; }

.contact-details {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .92rem;
  color: rgba(255, 255, 255, .88);
  display: flex; gap: 10px 28px; justify-content: center; flex-wrap: wrap;
}
.contact-details a { text-decoration: none; }
.contact-details a:hover { color: var(--goud-licht); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--grijs-bg);      /* zelfde warme crème als de site */
  color: var(--tekst-zacht);
  text-align: center;
  padding: 40px 22px 40px;
  font-size: .85rem;
  border-top: 1px solid rgba(184, 147, 74, .3);
}
.site-footer .logo {
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 16px;
}
.site-footer .logo-mark { height: 66px; width: auto; }
.site-footer .logo-naam { font-size: 1.9rem; align-items: center; }
.site-footer .logo-naam em { font-size: .62rem; margin-top: 6px; }
@media (max-width: 560px) {
  .site-footer .logo-mark { height: 54px; }
  .site-footer .logo-naam { font-size: 1.5rem; }
  .site-footer .logo-naam em { font-size: .54rem; }
}
.site-footer a { color: var(--groen-donker); font-weight: 500; }
.site-footer a:hover { color: var(--goud); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .voordelen-grid { grid-template-columns: repeat(3, 1fr); }
  .stappen { grid-template-columns: repeat(2, 1fr); }
  .geleg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 8px;
    right: 8px;
    flex-direction: column;
    align-items: stretch;
    background: #fbfaf7;
    padding: 14px 18px 18px;
    gap: 4px;
    border-radius: 20px;
    box-shadow: 0 18px 40px -12px rgba(45, 33, 15, .3);
    border: 1px solid rgba(255, 255, 255, .5);
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav { gap: 2px; }
  .nav a:not(.btn) {
    padding: 12px 6px;
    font-size: .82rem;
    letter-spacing: .1em;
  }
  .nav a:not(.btn)::after { display: none; }
  .nav.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-toggle { display: block; }
}
@media (max-width: 720px) {
  section { padding: 58px 0; }
  .voordelen-grid { grid-template-columns: repeat(2, 1fr); }
  .prijzen-grid,
  .geleg-grid { grid-template-columns: 1fr; }
}
