/* ============================================================
   IVR Photography - Ike van Ruiten
   ============================================================ */

:root {
  --tekst-schaal: 1;
  --roze: #E0A5B7;
  --roze-licht: #F7E9EE;
  --groen: #BEC539;
  --geel: #F2C94C;
  --wijn: #50152B;
  --beige: #D2C8BF;
  --goud: #9F8958;
  --bg: #FBF5F2;
  --wit: #FFFFFF;

  --font-hand: 'Caveat', cursive;
  --font-body: 'Albert Sans', system-ui, sans-serif;

  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --shadow-soft: 0 10px 40px rgba(80, 21, 43, .10);
  --shadow-lift: 0 18px 50px rgba(80, 21, 43, .18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: calc(17px * var(--tekst-schaal)); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--wijn);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--groen); color: var(--wijn); }

/* ---------- typografie ---------- */

.hand { font-family: var(--font-hand); font-weight: 600; line-height: 1.05; }

.eyebrow {
  font-size: 0.706rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--goud);
}

h1.hand { font-size: clamp(2.6rem, 7.5vw, 5.4rem); }
h2.hand { font-size: clamp(2rem, 5vw, 3.6rem); }

/* grote handgeschreven kop met kleinere subzin */
.kop-groot { font-size: clamp(3.1rem, 8vw, 6rem); }
.subzin { font-family: var(--font-hand); font-size: clamp(1.35rem, 2.8vw, 2rem); color: var(--roze); line-height: 1.1; margin-top: 0.235rem; }

p { max-width: 62ch; }

/* ---------- spark ---------- */

.spark {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.08em;
  animation: twinkle 3.2s ease-in-out infinite;
  transform-origin: center;
}
.spark svg { width: 100%; height: 100%; display: block; }
.spark.klein { width: .55em; height: .55em; vertical-align: .25em; }

@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(.78) rotate(18deg); opacity: .75; }
}

/* losse zwevende deco-sterretjes */
.deco-spark {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  animation: zweefspark 6s ease-in-out infinite, twinkle 3.4s ease-in-out infinite;
}
.deco-spark svg { width: 100%; height: 100%; }
.deco-spark.groot { width: 40px; height: 40px; }
.deco-spark.mini { width: 16px; height: 16px; }

@keyframes zweefspark {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.sectie-kop { position: relative; }
.sectie-kop .deco-spark { top: -6px; }

/* ---------- navigatie ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(80, 21, 43, .08);
}

.nav-logo img { height: 34px; width: auto; transition: transform .35s var(--ease-bounce); }
.nav-logo:hover img { transform: rotate(-4deg) scale(1.06); }

.nav-links { display: flex; gap: clamp(18px, 3vw, 40px); list-style: none; align-items: center; }

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.765rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 2px;
}

.nav-links a:not(.knop)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--groen);
  transition: right .3s var(--ease-bounce);
}
.nav-links a:not(.knop):hover::after,
.nav-links a.actief::after { right: 0; }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    background: none;
    border: 2px solid var(--wijn);
    border-radius: 12px;
    cursor: pointer;
    color: var(--wijn);
  }
  .nav-links {
    position: fixed;
    top: 71px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: var(--bg);
    z-index: 49;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .3s ease, transform .35s var(--ease-bounce), visibility 0s linear .35s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .3s ease, transform .35s var(--ease-bounce);
  }
  .nav-links a { font-size: 1.06rem; }
}

/* ---------- knoppen ---------- */

.knop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--wijn);
  color: var(--wit);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.824rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .3s var(--ease-bounce), background .3s, box-shadow .3s;
  box-shadow: var(--shadow-soft);
}
.knop:hover {
  background: var(--roze);
  color: var(--wijn);
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: var(--shadow-lift);
}
.knop.licht { background: var(--wit); color: var(--wijn); }
.knop.licht:hover { background: var(--groen); }
.knop.klein { padding: 0.588rem 1.176rem; font-size: 0.706rem; }
.knop.roze { background: var(--roze); color: var(--wijn); }
.knop.roze:hover { background: var(--wijn); color: var(--wit); }

.huur-blok { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.huur-blok .hint { font-family: var(--font-hand); font-size: 1.412rem; color: var(--roze); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(40px, 7vh, 90px) clamp(20px, 5vw, 72px) clamp(30px, 5vh, 60px);
  min-height: calc(100svh - 140px);
}

.hero-tekst .eyebrow { margin-bottom: 18px; }
.hero-tekst h1 { margin-bottom: 22px; animation: rijs .8s var(--ease-bounce) both; }
.hero-tekst h1 .accent { color: var(--roze); }
.hero-tekst p { font-size: 1.118rem; margin-bottom: 2.0rem; animation: rijs .8s .12s var(--ease-bounce) both; }
.hero-cta { animation: rijs .8s .22s var(--ease-bounce) both; }

@keyframes rijs {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-stapel { position: relative; height: min(72vh, 640px); }

.polaroid {
  position: absolute;
  background: var(--wit);
  padding: 12px 12px 40px;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease-bounce), box-shadow .5s;
  will-change: transform;
}
.polaroid img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.polaroid .label {
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.235rem;
  color: var(--wijn);
}
.polaroid:nth-child(1) { width: 56%; height: 62%; top: 2%; left: 2%; transform: rotate(-5deg); animation: zweef1 7s ease-in-out infinite; }
.polaroid:nth-child(2) { width: 50%; height: 56%; top: 20%; right: 0; transform: rotate(4deg); animation: zweef2 8s ease-in-out infinite; }
.polaroid:nth-child(3) { width: 46%; height: 48%; bottom: 0; left: 16%; transform: rotate(-2deg); animation: zweef3 9s ease-in-out infinite; }
.polaroid:hover { transform: rotate(0deg) scale(1.05) !important; box-shadow: var(--shadow-lift); z-index: 3; }

@keyframes zweef1 { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes zweef2 { 0%,100% { translate: 0 0; } 50% { translate: 0 10px; } }
@keyframes zweef3 { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-stapel { height: 420px; }
}

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  background: var(--wijn);
  color: var(--roze);
  padding: 14px 0;
  transform: rotate(-1deg) scale(1.02);
  margin: 10px -10px 0;
}
.marquee-baan { display: flex; gap: 46px; width: max-content; animation: schuif 30s linear infinite; }
.marquee span { font-family: var(--font-hand); font-size: 1.529rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 2.706rem; }
.marquee .ster { color: var(--groen); font-family: var(--font-body); font-size: 1.059rem; }

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

/* ---------- secties & galerij ---------- */

.sectie { padding: clamp(56px, 9vh, 110px) clamp(20px, 5vw, 72px); }
.sectie-kop { margin-bottom: clamp(30px, 5vh, 56px); }
.sectie-kop .eyebrow { margin-bottom: 10px; }
.sectie-kop p { margin-top: 14px; }

.galerij { columns: 3; column-gap: 26px; }
@media (max-width: 1020px) { .galerij { columns: 2; } }
@media (max-width: 620px) { .galerij { columns: 1; } }

.tegel {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 26px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transform: translateY(24px);
  opacity: 0;
  transition: opacity .7s ease, transform .7s var(--ease-bounce);
}
.tegel.zichtbaar { opacity: 1; transform: translateY(0); }
.tegel img { width: 100%; transition: transform .7s var(--ease-bounce); }
.tegel:hover img { transform: scale(1.05) rotate(.6deg); }

.tegel-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 20px 16px;
  background: linear-gradient(to top, rgba(80, 21, 43, .82), transparent);
  color: var(--wit);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.tegel-info .naam { font-family: var(--font-hand); font-size: 1.882rem; line-height: 1; transition: transform .4s var(--ease-bounce); }
.tegel:hover .naam { transform: rotate(-2deg) translateY(-2px); }
.tegel-info .cat { font-size: 0.647rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--roze); white-space: nowrap; }

.tegel .tegel-spark {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; height: 26px;
  opacity: 0;
  transform: scale(.4) rotate(-40deg);
  transition: opacity .35s, transform .45s var(--ease-bounce);
}
.tegel:hover .tegel-spark { opacity: 1; transform: scale(1) rotate(0); }

/* ---------- projectpagina ---------- */

.project-kop { padding: clamp(48px, 9vh, 100px) clamp(20px, 5vw, 72px) clamp(24px, 4vh, 48px); max-width: 1200px; }
.project-kop h1 { margin: 8px 0 20px; }
.project-kop p { font-size: 1.059rem; }

.terug {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.765rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 26px;
  color: var(--goud);
  transition: color .25s, transform .3s var(--ease-bounce);
}
.terug:hover { color: var(--wijn); transform: translateX(-4px); }

.project-galerij { columns: 3; column-gap: 22px; padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vh, 90px); }
@media (max-width: 1020px) { .project-galerij { columns: 2; } }
@media (max-width: 620px) { .project-galerij { columns: 1; } }

.project-galerij .foto {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
  border: 0;
  padding: 0;
  background: none;
  display: block;
  width: 100%;
  transform: translateY(24px);
  opacity: 0;
  transition: opacity .7s ease, transform .7s var(--ease-bounce);
}
.project-galerij .foto.zichtbaar { opacity: 1; transform: translateY(0); }
.project-galerij .foto img { width: 100%; transition: transform .6s var(--ease-bounce); }
.project-galerij .foto:hover img { transform: scale(1.03); }

.project-nav { display: flex; justify-content: space-between; gap: 20px; padding: 0 clamp(20px, 5vw, 72px) clamp(60px, 9vh, 100px); flex-wrap: wrap; }
.project-nav a { text-decoration: none; display: flex; flex-direction: column; gap: 4px; transition: transform .3s var(--ease-bounce); }
.project-nav a:hover { transform: translateY(-3px); }
.project-nav a .richting { font-size: 0.706rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--goud); }
.project-nav a .titel { font-family: var(--font-hand); font-size: 2.0rem; }
.project-nav a.volgende { text-align: right; margin-left: auto; }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(80, 21, 43, .94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vmin;
}
.lightbox.open { display: flex; animation: fadein .3s ease both; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lightbox button { position: absolute; background: none; border: none; color: var(--wit); cursor: pointer; font-size: 2.0rem; line-height: 1; padding: 0.824rem; transition: transform .3s var(--ease-bounce), color .25s; }
.lightbox button:hover { color: var(--groen); transform: scale(1.2); }
.lb-sluit { top: 16px; right: 20px; }
.lb-vorige { left: 12px; top: 50%; translate: 0 -50%; }
.lb-volgende { right: 12px; top: 50%; translate: 0 -50%; }

/* ---------- portretten ---------- */

.portret-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .portret-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portret-grid { grid-template-columns: 1fr; } }

.portret {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  border: 0; padding: 0; background: none;
  transform: translateY(24px);
  opacity: 0;
  transition: opacity .7s ease, transform .7s var(--ease-bounce);
}
.portret.zichtbaar { opacity: 1; transform: translateY(0); }
.portret img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .7s var(--ease-bounce); }
.portret:hover img { transform: scale(1.05); }
.portret .naam {
  position: absolute;
  bottom: 14px; left: 18px;
  font-family: var(--font-hand);
  font-size: 2.0rem;
  color: var(--wit);
  text-shadow: 0 2px 14px rgba(80, 21, 43, .6);
  transition: transform .4s var(--ease-bounce);
}
.portret:hover .naam { transform: rotate(-2deg); }

/* ---------- over mij ---------- */

.over { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
@media (max-width: 880px) { .over { grid-template-columns: 1fr; } .over-foto, .over-tekst { position: static; } }

.over-foto {
  position: sticky;
  top: 110px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  transform: rotate(-1.5deg);
  transition: transform .5s var(--ease-bounce);
}
.over-foto:hover { transform: rotate(0deg) scale(1.01); }
.over-foto img { width: 100%; }

.over-tekst { align-self: start; }
.over-home .over-tekst { position: sticky; top: 110px; }
.over-tekst h1 { margin-bottom: 28px; }
.over-tekst h2 { margin-bottom: 28px; }
.over-tekst p { margin-bottom: 20px; }

.quote {
  font-family: var(--font-hand);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  color: var(--roze);
  line-height: 1.15;
  margin: 30px 0;
  max-width: 24ch;
}

/* ---------- contact ---------- */

.contact-kaart {
  background: var(--wit);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 60px);
  max-width: none;
}
@media (max-width: 820px) { .contact-kaart { grid-template-columns: 1fr; } }

.contact-lijst { list-style: none; display: grid; gap: 20px; align-content: start; }
.contact-lijst a { display: inline-flex; align-items: center; gap: 0.706rem; text-decoration: none; font-size: 1.118rem; font-weight: 600; transition: color .25s, transform .3s var(--ease-bounce); }
.contact-lijst a:hover { color: var(--roze); transform: translateX(5px); }
.contact-lijst .icoon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--roze-licht); color: var(--wijn); flex: none; }

/* ---------- formulieren ---------- */

.formulier { display: grid; gap: 14px; }
.veld { display: grid; gap: 6px; }
.veld label { font-size: 0.706rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.veld input, .veld select, .veld textarea {
  font-family: var(--font-body);
  font-size: 0.882rem;
  color: var(--wijn);
  background: var(--wit);
  border: 2px solid var(--roze-licht);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .25s, box-shadow .25s;
}
.veld input:focus, .veld select:focus, .veld textarea:focus {
  outline: none;
  border-color: var(--roze);
  box-shadow: 0 0 0 4px rgba(224, 165, 183, .25);
}
.veld textarea { resize: vertical; min-height: 100px; }
.veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .veld-rij { grid-template-columns: 1fr; } }

.radio-pillen { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pillen label { position: relative; cursor: pointer; }
.radio-pillen input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pillen .pil {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--roze-licht);
  background: var(--wit);
  font-weight: 700;
  font-size: 0.824rem;
  color: var(--wijn);
  transition: all .3s var(--ease-bounce);
}
.radio-pillen input:checked + .pil { background: var(--groen); border-color: var(--groen); }
.radio-pillen input:focus-visible + .pil { outline: 3px solid var(--groen); outline-offset: 2px; }
.radio-pillen label:hover .pil { transform: translateY(-2px); border-color: var(--roze); }

.knop-verstuur { border: none; cursor: pointer; font-family: var(--font-body); justify-self: start; }

.footer .formulier .veld label { color: var(--roze); }
.footer .formulier .veld input,
.footer .formulier .veld select,
.footer .formulier .veld textarea {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(224, 165, 183, .35);
  color: var(--wit);
}
.footer .formulier .veld input::placeholder,
.footer .formulier .veld textarea::placeholder { color: var(--beige); }
.footer .formulier .veld select option { color: var(--wijn); }
.footer .radio-pillen .pil { background: rgba(255,255,255,.07); border-color: rgba(224,165,183,.35); color: var(--wit); }
.footer .radio-pillen input:checked + .pil { background: var(--groen); border-color: var(--groen); color: var(--wijn); }

/* ---------- footer ---------- */

.footer {
  background: var(--wijn);
  color: var(--roze-licht);
  padding: clamp(48px, 8vh, 80px) clamp(20px, 5vw, 72px) 34px;
  margin-top: 20px;
}
.footer-boven { margin-bottom: 44px; }
.footer-logo img { height: 62px; width: auto; }

.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr 1.2fr; gap: clamp(30px, 5vw, 70px); margin-bottom: 46px; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-kolom.formulier-kolom { grid-column: 1 / -1; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-kolom .kolom-titel { font-family: var(--font-hand); font-size: 1.765rem; color: var(--wit); margin-bottom: 0.941rem; }
.footer-kolom .footer-links { flex-direction: column; gap: 12px; display: flex; list-style: none; }
.footer-links a { text-decoration: none; font-size: 0.765rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transition: color .25s; }
.footer-links a:hover { color: var(--groen); }

.footer-contact { list-style: none; display: grid; gap: 12px; }
.footer-contact a { text-decoration: none; transition: color .25s; }
.footer-contact a:hover { color: var(--groen); }

.social-rij { display: flex; gap: 12px; margin-top: 18px; }
.social-rij a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--roze-licht);
  transition: transform .3s var(--ease-bounce), background .25s, color .25s;
}
.social-rij a:hover { background: var(--groen); color: var(--wijn); transform: translateY(-4px) rotate(-6deg); }

.footer-onder {
  border-top: 1px solid rgba(224, 165, 183, .25);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.765rem;
  color: var(--beige);
}
.footer-onder a { color: inherit; }
.footer-onder a:hover { color: var(--groen); }

/* ---------- voorwaarden ---------- */

.voorwaarden { max-width: 760px; }
.voorwaarden h2 { font-family: var(--font-hand); font-size: 2.0rem; margin: 2.0rem 0 0.588rem; }
.voorwaarden p, .voorwaarden li { font-size: 0.941rem; margin-bottom: 0.588rem; }
.voorwaarden ul { padding-left: 22px; }
.voorwaarden .disclaimer { background: var(--roze-licht); border-radius: 0.824rem; padding: 0.941rem 1.176rem; font-size: 0.824rem; margin-top: 1.765rem; }

/* ---------- Ike bubbel + widget ---------- */

.ike-widget { position: fixed; right: 22px; bottom: 22px; z-index: 90; }

.ike-bubbel {
  position: relative;
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 3px solid var(--wit);
  padding: 0;
  cursor: pointer;
  background: var(--wit);
  box-shadow: var(--shadow-lift);
  transition: transform .35s var(--ease-bounce);
}
.ike-bubbel:hover { transform: scale(1.08) rotate(-3deg); }
.ike-bubbel img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ike-bubbel .status {
  position: absolute;
  right: 2px; bottom: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--groen);
  border: 3px solid var(--wit);
  animation: puls 2s ease-in-out infinite;
}
@keyframes puls {
  0%,100% { box-shadow: 0 0 0 0 rgba(190,197,57,.6); }
  60% { box-shadow: 0 0 0 9px rgba(190,197,57,0); }
}

.ike-tooltip {
  position: absolute;
  right: 80px; bottom: 16px;
  background: var(--wijn);
  color: var(--wit);
  font-family: var(--font-hand);
  font-size: 1.235rem;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px) scale(.9);
  pointer-events: none;
  transition: opacity .3s, transform .35s var(--ease-bounce);
}
.ike-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  translate: 0 -50%;
  border: 7px solid transparent;
  border-left-color: var(--wijn);
  border-right: 0;
}
.ike-widget:hover .ike-tooltip,
.ike-bubbel:focus-visible + .ike-tooltip { opacity: 1; transform: translateX(0) scale(1); }
.ike-widget.open .ike-tooltip { opacity: 0 !important; }

.ike-paneel {
  position: absolute;
  right: 0; bottom: 84px;
  width: min(340px, calc(100vw - 44px));
  background: var(--wit);
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
  padding: 22px;
  opacity: 0;
  transform: translateY(16px) scale(.94);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .3s, transform .4s var(--ease-bounce);
}
.ike-widget.open .ike-paneel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.ike-paneel .paneel-kop { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ike-paneel .paneel-kop img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.ike-paneel .paneel-kop .titel { font-family: var(--font-hand); font-size: 1.529rem; line-height: 1; }
.ike-paneel .paneel-kop .sub { font-size: 0.706rem; color: var(--goud); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; gap: 0.353rem; }
.ike-paneel .paneel-kop .sub::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--groen); }

.widget-stap { display: none; }
.widget-stap.actief { display: block; animation: rijs .35s var(--ease-bounce) both; }
.widget-vraag { font-weight: 700; font-size: 0.882rem; margin-bottom: 0.706rem; }

.keuze-rij { display: grid; gap: 10px; }
.keuze-rij.dubbel { grid-template-columns: 1fr 1fr; }

.keuze {
  border: 2px solid var(--roze-licht);
  background: var(--roze-licht);
  color: var(--wijn);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.824rem;
  cursor: pointer;
  text-align: center;
  transition: transform .3s var(--ease-bounce), background .25s, border-color .25s;
}
.keuze:hover { background: var(--roze); border-color: var(--roze); transform: translateY(-2px) rotate(-.5deg); }
.keuze.spoed { background: var(--wijn); border-color: var(--wijn); color: var(--wit); }
.keuze.spoed:hover { background: var(--roze); border-color: var(--roze); color: var(--wijn); }
.keuze.gekozen { background: var(--groen); border-color: var(--groen); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips .keuze { padding: 0.529rem 0.824rem; font-size: 0.765rem; border-radius: 58.765rem; }

.widget-terug {
  background: none;
  border: none;
  color: var(--goud);
  font-weight: 700;
  font-size: 0.706rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
}
.widget-terug:hover { color: var(--wijn); }

.widget-acties { display: grid; gap: 10px; margin-top: 14px; }

.knop-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.882rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s var(--ease-bounce), filter .25s;
}
.knop-wa:hover { transform: translateY(-2px); filter: brightness(1.06); }

.knop-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--roze-licht);
  color: var(--wijn);
  border-radius: 14px;
  padding: 13px;
  font-weight: 700;
  font-size: 0.824rem;
  text-decoration: none;
  transition: transform .3s var(--ease-bounce), background .25s;
}
.knop-mail:hover { background: var(--roze); transform: translateY(-2px); }

.paneel-sluit { position: absolute; top: 0.706rem; right: 0.824rem; background: none; border: none; font-size: 1.294rem; line-height: 1; color: var(--goud); cursor: pointer; }
.paneel-sluit:hover { color: var(--wijn); }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s var(--ease-bounce); }
.reveal.zichtbaar { opacity: 1; transform: translateY(0); }

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .tegel, .project-galerij .foto, .portret, .reveal { opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible { outline: 3px solid var(--groen); outline-offset: 3px; border-radius: 6px; }


/* ---------- mobiele optimalisatie ---------- */

@media (max-width: 700px) {
  .deco-spark { display: none; }
  .sectie { padding-left: 18px; padding-right: 18px; }
  .hero { padding: 28px 18px 24px; gap: 26px; }
  h1.hand { font-size: clamp(2rem, 9.5vw, 2.8rem); }
  h2.hand { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .kop-groot { font-size: clamp(2.5rem, 13vw, 3.4rem); }
  .subzin { font-size: 1.35rem; }
  .hero-tekst p { font-size: 1rem; }
  .hero-stapel { height: 340px; }
  .polaroid { padding: 8px 8px 30px; }
  .polaroid .label { font-size: 1rem; }
  .marquee span { font-size: 1.15rem; }
  .huur-blok { gap: 12px; margin-top: 20px; }
  .huur-blok .hint { font-size: 1.15rem; }
  .tegel-info .naam { font-size: 1.5rem; }
  .project-kop { padding-left: 18px; padding-right: 18px; }
  .project-galerij { padding-left: 18px; padding-right: 18px; }
  .project-nav { padding-left: 18px; padding-right: 18px; }
  .project-nav a .titel { font-size: 1.5rem; }
  .contact-kaart { padding: 22px 18px; }
  .quote { font-size: 1.55rem; }
  .portret .naam { font-size: 1.6rem; }
  .footer { padding-left: 18px; padding-right: 18px; }
  .footer-kolom .kolom-titel { font-size: 1.5rem; }
  .ike-widget { right: 14px; bottom: 14px; }
  .ike-paneel { bottom: 78px; }
}

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

/* ---------- mobiel: over-mij niet sticky, foto en tekst gewoon onder elkaar ---------- */

@media (max-width: 880px) {
  .over-foto,
  .over-tekst,
  .over-home .over-tekst { position: static; top: auto; }
  .over-foto { transform: none; margin-bottom: 4px; }
  .over-foto:hover { transform: none; }
}
