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

:root {
  --black:  #0e0e0e;
  --dark:   #181818;
  --gold:   #c8a96e;
  --gold-d: rgba(200,169,110,.14);
  --gold-b: rgba(200,169,110,.22);
  --cream:  #f5f1eb;
  --white:  #ffffff;
  --border: #e2ddd6;
  --muted:  #8a8580;
  --text:   #1e1e1e;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPE HELPERS ── */
.label {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.label-light { color: rgba(200,169,110,.65); }
.label-center { text-align: center; }

h2.display {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--black);
  letter-spacing: -.015em;
}
h2.display em { font-style: italic; color: var(--gold); }
h2.display.light { color: var(--white); }
h2.display.centered { text-align: center; }
.about-wrap h2.display,
.diensten-wrap h2.display,
.ww-wrap h2.display,
.reviews-wrap h2.display { color: var(--white); }
.about-wrap .body-copy { color: rgba(255,255,255,.55); }

.gold-rule { width: 44px; height: 1px; background: var(--gold); margin: 1.75rem 0; }

.body-copy {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 500px;
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(14,14,14,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-b);
}
.nav-logo-img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold-b);
  color: var(--gold) !important;
  padding: .48rem 1.2rem;
  border-radius: 1px;
  transition: all .2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; border-color: var(--gold) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 1px; transition: all .3s; }

/* ── HERO SPLIT ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 620px;
  padding-top: 68px;
}
.hero-left {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5% 8% 3.5%;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-b) 35%, var(--gold-b) 65%, transparent);
}
.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.hero-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
h1.hero-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -.015em;
  margin-bottom: 1.4rem;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.2rem;
}
.hero-btns { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  font-weight: 400;
}
.badge-check { color: var(--gold); font-size: .85rem; }

.btn-gold {
  display: inline-block;
  padding: .88rem 2.1rem;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: all .2s;
}
.btn-gold:hover { background: #d9bc80; transform: translateY(-1px); }

.btn-ghost {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.44);
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--gold); }

.btn-outline-white {
  display: inline-block;
  padding: .88rem 2rem;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 1px;
  border: 2px solid rgba(255,255,255,.45);
  transition: all .2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.06); }

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--black);
  overflow: hidden;
  padding: .95rem 0;
  border-top: 1px solid var(--gold-b);
  border-bottom: 1px solid var(--gold-b);
}
.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mq-scroll 30s linear infinite;
}
.mq-group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex-shrink: 0;
}
.mq-item {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(200,169,110,.68);
}
.mq-sep { color: rgba(200,169,110,.28); font-size: .46rem; flex-shrink: 0; }
@keyframes mq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── OVER ONS ── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
  padding: 110px 8% 130px;
  background: var(--dark);
}
.about-photo-col { position: relative; }
.photo-frame {
  border-radius: 1px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.floating-card {
  position: absolute;
  bottom: -3.5rem; right: -2rem;
  background: var(--black);
  border: 1px solid var(--gold-b);
  border-radius: 1px;
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}
.fc-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .82rem;
  color: rgba(255,255,255,.78);
}
.fc-icon { color: var(--gold); font-size: .72rem; }

.about-text-col { padding-top: 1.5rem; }
.about-text-col .body-copy + .body-copy { margin-top: 1rem; }

/* ── DIENSTEN TILES ── */
.diensten-wrap {
  padding: 110px 8%;
  background: var(--black);
}
.diensten-head { text-align: center; margin-bottom: 3.5rem; }
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}
.tile {
  background: var(--dark);
  padding: 2.6rem 2.2rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: background .28s ease;
}
.tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .28s ease;
}
.tile:hover::after { width: 100%; }
.tile:hover { background: var(--black); }
.tile:hover .t-num { color: rgba(200,169,110,.5); }
.tile:hover .t-name { color: var(--white); }
.tile:hover .t-desc { color: rgba(255,255,255,.5); }

.t-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .9rem;
  transition: color .28s;
}
.t-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .45rem;
  transition: color .28s;
}
.t-desc {
  font-size: .855rem;
  color: var(--muted);
  line-height: 1.6;
  transition: color .28s;
}

.tiles-footer-text {
  margin-top: 2rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.8;
  letter-spacing: .01em;
  text-align: center;
}

/* ── PHOTO INTERMEZZO ── */
.intermezzo {
  position: relative;
  height: 52vh;
  min-height: 340px;
  overflow: hidden;
}
.intermezzo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  filter: brightness(.58);
}
.intermezzo-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}
.intermezzo-quote {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -.01em;
  padding: 0 10%;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.intermezzo-sub {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── PORTFOLIO ── */
.portfolio-wrap {
  background: var(--dark);
  padding: 100px 0 0;
}
.portfolio-head {
  padding: 0 8% 3.5rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
}
.pg-item {
  position: relative;
  overflow: hidden;
  background: #1f1f1f;
}
.pg-item.tall { grid-row: span 2; }
.pg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .52s ease;
}
.pg-item:hover img { transform: scale(1.06); }
.pg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,.82) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 1.4rem 1.6rem;
  opacity: 0;
  transition: opacity .3s;
}
.pg-item:hover .pg-overlay { opacity: 1; }
.pg-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── WERKWIJZE ── */
.ww-wrap {
  padding: 110px 8%;
  background: var(--dark);
}
.ww-head { margin-bottom: 4.5rem; }
.ww-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
}
.ww-step {
  padding: 2.5rem 2.5rem 0 0;
  position: relative;
}
.ww-step::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 36px; height: 2px;
  background: var(--gold);
}
.ww-n {
  font-family: 'Cormorant Garant', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(200,169,110,.16);
  line-height: .85;
  margin-bottom: 1.3rem;
}
.ww-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .55rem;
}
.ww-text {
  font-size: .855rem;
  color: var(--muted);
  line-height: 1.68;
  max-width: 200px;
}

/* ── REVIEWS ── */
.reviews-wrap {
  padding: 110px 8%;
  background: var(--black);
  text-align: center;
}
.review-stage {
  max-width: 740px;
  margin: 3.5rem auto 0;
  min-height: 220px;
  position: relative;
}
.r-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn .4s ease;
}
.r-slide.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.r-stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 2rem;
}
blockquote.r-text {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.52;
  position: relative;
  padding: 0 1rem;
}
blockquote.r-text::before {
  content: '\201C';
  position: absolute;
  top: -2rem; left: -1.5rem;
  font-family: 'Cormorant Garant', serif;
  font-size: 7rem;
  color: var(--gold);
  opacity: .12;
  line-height: 1;
  pointer-events: none;
}
.r-attr {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 2rem;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.r-attr-line { width: 28px; height: 1px; background: var(--gold); }
.r-dots {
  display: flex; justify-content: center; gap: .55rem; margin-top: 3rem;
}
.r-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer; padding: 0;
  transition: background .2s;
}
.r-dot.active { background: var(--gold); }

/* ── CONTACT ── */
.contact-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 700px;
  background: var(--dark);
}
.contact-photo {
  position: relative;
  overflow: hidden;
}
.contact-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.38);
}
.contact-info-over {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem 3rem;
  gap: 1.8rem;
}
.ci-item { display: flex; flex-direction: column; gap: .2rem; }
.ci-lbl {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.ci-val {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  line-height: 1.45;
}
.ci-val:hover { color: var(--gold); }

.contact-form-panel {
  background: var(--dark);
  padding: 5rem 5% 5rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-panel .display { margin: 0 0 2.5rem; }

.cform { display: flex; flex-direction: column; gap: 1.1rem; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cform-group { display: flex; flex-direction: column; gap: .4rem; }
.cform-group label {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.cform-group input,
.cform-group textarea,
.cform-group select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1px;
  color: var(--white);
  padding: .82rem 1rem;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.cform-group input:focus,
.cform-group textarea:focus,
.cform-group select:focus { border-color: var(--gold); }
.cform-group textarea { resize: vertical; min-height: 110px; }
.cform-group select option { background: var(--dark); }
.cform-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 1px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
  align-self: flex-start;
  min-width: 220px;
}
.cform-submit:hover { background: #d9bc80; transform: translateY(-1px); }
#form-msg {
  display: none;
  font-size: .875rem;
  padding: .7rem .9rem;
  border-radius: 1px;
}

/* ── FOOTER ── */
footer.site-footer {
  background: var(--black);
  padding: 4rem 8% 2.5rem;
  text-align: center;
  border-top: 1px solid var(--gold-b);
}
.footer-logo-img { height: 48px; width: auto; }
.footer-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; flex-wrap: wrap;
  margin: 2rem 0;
}
.footer-nav a {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-nav .dot { color: rgba(255,255,255,.18); font-size: .5rem; }
.footer-rule { width: 44px; height: 1px; background: var(--gold-b); margin: 0 auto 2rem; }
.footer-copy {
  font-size: .74rem;
  color: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; flex-wrap: wrap;
}
.footer-copy a { color: inherit; text-decoration: none; }
.footer-copy a:hover { color: var(--gold); }

/* ── CHATBOT ── */
.chat-panel {
  padding: 0 !important;
  overflow: hidden;
  min-height: 530px;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start !important;
  background: var(--dark) !important;
}
.chat-hdr {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gold-b);
  background: rgba(14,14,14,.65);
  flex-shrink: 0;
}
.chat-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chat-nm { font-size: .82rem; font-weight: 600; color: var(--white); }
.chat-st { font-size: .63rem; color: #5cb85c; letter-spacing: .05em; margin-top: .12rem; }
.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  overscroll-behavior: contain;
}
.chat-msgs::-webkit-scrollbar { width: 3px; }
.chat-msgs::-webkit-scrollbar-thumb { background: var(--gold-b); border-radius: 2px; }
.cmsg {
  max-width: 85%;
  padding: .58rem .95rem;
  font-size: .855rem;
  line-height: 1.62;
  white-space: pre-line;
  animation: cmsgIn .2s ease;
}
@keyframes cmsgIn { from { opacity:0; transform:translateY(5px); } to { opacity:1; transform:none; } }
.cmsg-bot {
  align-self: flex-start;
  background: rgba(200,169,110,.09);
  border: 1px solid var(--gold-b);
  color: rgba(255,255,255,.86);
  border-radius: 2px 10px 10px 2px;
}
.cmsg-user {
  align-self: flex-end;
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
  border-radius: 10px 2px 2px 10px;
}
.cmsg-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: .65rem .95rem;
  background: rgba(200,169,110,.09);
  border: 1px solid var(--gold-b);
  border-radius: 2px 10px 10px 2px;
}
.cmsg-typing span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: tdot .9s infinite;
}
.cmsg-typing span:nth-child(2) { animation-delay: .18s; }
.cmsg-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes tdot { 0%,60%,100%{opacity:.2;transform:scale(1)} 30%{opacity:1;transform:scale(1.3)} }
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
  padding: .6rem 1.4rem;
  border-top: 1px solid rgba(200,169,110,.07);
  flex-shrink: 0;
  min-height: 48px;
  align-items: center;
}
.cchip {
  background: transparent;
  border: 1px solid var(--gold-b);
  color: rgba(200,169,110,.85);
  padding: .3rem .8rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .18s;
}
.cchip:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.chat-inp-row {
  display: flex;
  border-top: 1px solid var(--gold-b);
  flex-shrink: 0;
  background: var(--dark);
}
.chat-inp {
  flex: 1;
  background: var(--dark);
  border: none;
  color: var(--white);
  padding: .85rem 1.2rem;
  font-size: .875rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}
.chat-inp::placeholder { color: rgba(255,255,255,.24); }
.chat-btn {
  background: var(--dark);
  border: none;
  border-left: 1px solid var(--gold-b);
  color: var(--gold);
  padding: 0 1.25rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s;
  flex-shrink: 0;
}
.chat-btn:hover { background: rgba(200,169,110,.12); }

/* ── FLOAT SOCIALS ── */
.socials-fixed {
  position: fixed;
  bottom: 5.5rem; right: 1.5rem;
  z-index: 99;
  display: flex; flex-direction: column; gap: .5rem;
}
.sf-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 14px rgba(0,0,0,.28);
  transition: transform .2s;
}
.sf-btn:hover { transform: translateY(-2px); }
.sf-btn svg { width: 20px; height: 20px; }
.sf-chat { background: var(--gold); }
.sf-wa { background: #25D366; }
.sf-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  animation: lbIn .24s ease;
}
@keyframes lbIn {
  from { transform: scale(.93); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.lb-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: .4rem .7rem;
  transition: color .18s;
}
.lb-close:hover { color: var(--gold); }
.pg-item { cursor: pointer; }

/* ── SCROLL TOP ── */
#totop {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 99;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--black);
  border: none; border-radius: 50%;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s;
  display: flex; align-items: center; justify-content: center;
}
#totop.visible { opacity: 1; pointer-events: auto; }
#totop:hover { transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ww-steps { grid-template-columns: repeat(2, 1fr); }
  .ww-step { padding-bottom: 2.5rem; }
}

@media (max-width: 900px) {
  /* nav */
  .nav-cta { display: none; }

  /* sections */
  .about-wrap { grid-template-columns: 1fr; gap: 5rem; padding: 80px 6% 90px; }
  .diensten-wrap { padding: 80px 6%; }
  .ww-wrap { padding: 80px 6%; }
  .reviews-wrap { padding: 80px 6%; }
  .portfolio-wrap { padding-top: 80px; }
  .portfolio-head { padding: 0 6% 3rem; }

  /* hero — flex-kolom zodat foto op volledige hoogte toont zonder overlap */
  .hero-split { display: flex; flex-direction: column; height: auto; min-height: unset; }
  .hero-left { min-height: 65vh; padding: calc(68px + 3rem) 6% 3rem; }
  .hero-left::after { display: none; }
  .hero-right img { width: 100%; height: auto; object-fit: initial; display: block; }

  /* about */
  .about-photo-col { margin-bottom: 3.5rem; }
  .floating-card { right: 0; bottom: -3rem; }

  /* diensten */
  .tiles { grid-template-columns: repeat(2, 1fr); }

  /* portfolio — 2 kolommen */
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
  .pg-overlay { opacity: 1; }

  /* intermezzo */
  .intermezzo { min-height: 260px; }

  /* reviews */
  .review-stage { min-height: auto; margin: 2rem auto 0; }

  /* contact */
  .contact-split { grid-template-columns: 1fr; }
  .contact-photo { height: 440px; }
  .contact-info-over { gap: 1.2rem; padding: 2.5rem 6%; }
}

@media (max-width: 680px) {
  /* nav */
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--dark); padding: 1.5rem 6%; gap: 1.5rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* sections */
  .about-wrap { padding: 60px 5% 70px; gap: 0; }
  .diensten-wrap { padding: 60px 5%; }
  .ww-wrap { padding: 60px 5%; }
  .reviews-wrap { padding: 60px 5%; }
  .portfolio-wrap { padding-top: 60px; }
  .portfolio-head { padding: 0 5% 2.5rem; }
  .contact-form-panel { padding: 0; }

  /* hero */
  h1.hero-title { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .hero-sub { font-size: .93rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .btn-gold, .btn-outline-white { width: 100%; text-align: center; }
  .hero-badges { gap: 1rem; }

  /* about — foto op volledige breedte, floating card eronder */
  .photo-frame { aspect-ratio: unset; overflow: visible; }
  .photo-frame img { width: 100%; height: auto; }
  .about-photo-col { margin-bottom: 0; }
  .floating-card {
    position: static;
    right: auto; bottom: auto;
    margin-top: 1.2rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* diensten */
  .tiles { grid-template-columns: 1fr; }

  /* portfolio — 1 kolom */
  .portfolio-grid { grid-template-columns: 1fr; gap: 3px; }

  /* werkwijze */
  .ww-steps { grid-template-columns: 1fr; }
  .ww-step { padding-bottom: 2.5rem; }

  /* reviews */
  blockquote.r-text::before { display: none; }
  blockquote.r-text { padding: 0; font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
  .r-dots { margin-top: 2rem; }

  /* contact & chatbot */
  .cform-row { grid-template-columns: 1fr; }
  .contact-photo { height: 400px; }
  .contact-info-over { gap: 1rem; padding: 2rem 5%; }
  .ci-val { font-size: .82rem; }
  .chat-panel { min-height: 430px; height: auto; }

  /* footer */
  footer.site-footer { padding: 3rem 5% 2rem; }
  .footer-copy { flex-direction: column; gap: .5rem; }
  .footer-copy .dot { display: none; }
}

@media (max-width: 420px) {
  h1.hero-title { font-size: clamp(2rem, 10.5vw, 2.8rem); }
  .hero-left { padding: calc(68px + 2rem) 5% 2.5rem; }
  .about-wrap { padding: 50px 5% 60px; }
}

@media (max-width: 420px) {
  h1.hero-title { font-size: clamp(2rem, 10.5vw, 2.8rem); }
  .hero-left { padding: calc(68px + 2rem) 5% 2.5rem; }
  .hero-right { height: 70vw; }
  .about-wrap { padding: 50px 5% 60px; }
}
