/* =======================================================
   Alkema's Workshop — stylesheet
   Fris, kleurrijk, warm. Merkkleuren uit het logo.
   ======================================================= */

:root {
  /* Merkkleuren (uit het logo) */
  --pink:   #e6007e;
  --red:    #ed1c24;
  --orange: #f7941d;
  --yellow: #ffc20e;
  --green:  #8cc63f;
  --blue:   #29abe2;

  /* Basis */
  --ink:    #2c2634;
  --muted:  #6d6577;
  --cream:  #fff9f1;
  --tint:   #fdf1ec;
  --card:   #ffffff;
  --line:   #efe6dc;

  --grad-hero: linear-gradient(135deg, #fff4ec 0%, #ffeaf4 45%, #eaf6fd 100%);
  --grad-brand: linear-gradient(100deg, var(--pink), var(--orange) 60%, var(--yellow));

  --radius:   18px;
  --radius-lg: 28px;
  --shadow:   0 14px 40px -18px rgba(60, 30, 55, .28);
  --shadow-sm: 0 6px 20px -12px rgba(60, 30, 55, .35);
  --shadow-lift: 0 26px 60px -22px rgba(60, 30, 55, .40);

  --ff-head: "Fraunces", Georgia, serif;
  --ff-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
:target { scroll-margin-top: 90px; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

h1, h2, h3 { font-family: var(--ff-head); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .8em 1.5em; border-radius: 999px;
  font-family: var(--ff-body); font-weight: 800; font-size: 1rem;
  letter-spacing: .01em; line-height: 1; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  will-change: transform;
}
.btn-lg { padding: 1em 1.9em; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 12px 26px -12px rgba(230, 0, 126, .7);
  background-size: 140% 140%; background-position: 0% 50%;
}
.btn-primary:hover { transform: translateY(-2px); background-position: 100% 50%; box-shadow: 0 18px 30px -12px rgba(230, 0, 126, .75); }
.btn-ghost {
  background: #fff; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line), var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 2px var(--pink), var(--shadow-sm); color: var(--pink); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 12px 26px -14px rgba(37, 211, 102, .9); }
.btn-whatsapp:hover { transform: translateY(-2px); background: #20bd5a; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 249, 241, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand-logo { height: 42px; width: auto; transition: transform .3s ease; }
.brand:hover .brand-logo { transform: rotate(-3deg) scale(1.04); }

.nav { display: flex; align-items: center; gap: clamp(4px, 1.4vw, 22px); }
.nav-link {
  font-weight: 700; color: var(--ink); padding: .5em .2em; position: relative; font-size: .98rem;
}
.nav-link::after {
  content: ""; position: absolute; left: .2em; right: .2em; bottom: .15em; height: 3px; border-radius: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; }
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2.5px; border-radius: 3px; background: var(--ink);
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-hero); padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(90px, 12vw, 150px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center;
  position: relative; z-index: 2;
}
.eyebrow {
  display: inline-block; font-weight: 800; letter-spacing: .04em; text-transform: none;
  color: var(--pink); font-size: .95rem; margin-bottom: 18px;
  background: #fff; padding: .45em 1em; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero-title { font-size: clamp(2.5rem, 6vw, 4.3rem); font-weight: 700; margin-bottom: 22px; }
.ink-brush { color: var(--pink); position: relative; white-space: nowrap; }
.ink-brush::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 4%; height: .5em; z-index: -1; border-radius: 8px;
  background: linear-gradient(90deg, rgba(255,194,14,.55), rgba(140,198,63,.55));
  transform: rotate(-1.2deg);
}
.hero-lead { font-size: 1.14rem; color: var(--muted); max-width: 34em; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 26px; color: var(--muted); font-size: .98rem; }
.hero-badges li { display: flex; align-items: center; gap: .5em; }
.hero-badges li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--grad-brand); }
.hero-badges strong { color: var(--ink); }

/* Hero visual — collage */
.hero-visual { position: relative; min-height: 420px; }
.photo-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-lift); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card--main {
  position: relative; aspect-ratio: 4/3; transform: rotate(1.5deg); border: 7px solid #fff; z-index: 2;
}
.photo-card--float { position: absolute; width: 42%; aspect-ratio: 1; border: 6px solid #fff; z-index: 3; }
.photo-card--a { right: -6%; top: -9%; transform: rotate(6deg); animation: floaty 6s ease-in-out infinite; }
.photo-card--b { left: -8%; bottom: -8%; transform: rotate(-6deg); animation: floaty 7s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }

.paint-dot { position: absolute; border-radius: 50%; z-index: 1; filter: blur(.3px); }
.dot-1 { width: 26px; height: 26px; background: var(--yellow); top: 8%; left: 12%; }
.dot-2 { width: 16px; height: 16px; background: var(--blue); bottom: 14%; right: 6%; }
.dot-3 { width: 20px; height: 20px; background: var(--green); bottom: 2%; left: 40%; }

/* Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 1; }
.blob--1 { width: 420px; height: 420px; background: #ffd9ec; top: -120px; right: -80px; }
.blob--2 { width: 380px; height: 380px; background: #d7eefc; bottom: -140px; left: -120px; }

.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 2; }
.wave-divider svg { width: 100%; height: clamp(60px, 8vw, 110px); }
.wave-divider path { fill: var(--cream); }

/* ---------- Sections ---------- */
.section { padding: clamp(60px, 9vw, 110px) 0; position: relative; }
.section--tint { background: var(--tint); }
.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head .eyebrow { color: var(--orange); }
.section-title { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.section-intro { color: var(--muted); font-size: 1.1rem; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: var(--card); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 16px;
  font-size: 1.7rem; margin-bottom: 18px;
  background: color-mix(in srgb, var(--c) 16%, #fff); box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--c) 30%, #fff);
}
.feature h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .98rem; }

/* How it works + price */
.how-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(30px, 5vw, 56px); align-items: start; }
.steps { display: grid; gap: 14px; }
.steps li {
  display: flex; gap: 20px; align-items: flex-start; background: var(--card);
  border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .25s ease;
}
.steps li:hover { transform: translateX(6px); }
.step-num {
  flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.3rem; color: #fff; background: var(--grad-brand);
  box-shadow: 0 8px 18px -8px rgba(230,0,126,.6);
}
.steps h3 { font-size: 1.15rem; margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: .97rem; }

.price-card {
  background: linear-gradient(160deg, #2c2634, #443a52); color: #fff; border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow-lift); position: relative; overflow: hidden;
  position: sticky; top: 96px;
}
.price-card::before {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: var(--grad-brand); opacity: .35; filter: blur(30px); top: -70px; right: -60px;
}
.price-eyebrow { position: relative; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; opacity: .8; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 20px; position: relative; }
.price-amount { font-family: var(--ff-head); font-size: 4rem; font-weight: 700; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-per { font-weight: 700; opacity: .85; }
.price-list { display: grid; gap: 12px; margin-bottom: 26px; position: relative; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; opacity: .95; }
.price-list li::before { content: "✓"; color: var(--green); font-weight: 900; flex: none; }
.price-note { margin-top: 16px; font-size: .88rem; opacity: .7; text-align: center; position: relative; }

/* ---------- Gallery ---------- */
.gallery { columns: 4; column-gap: 16px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: 16px; overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm); cursor: pointer; background: #fff; display: block;
}
.gallery-item img { width: 100%; transition: transform .5s ease; }
.gallery-item::after {
  content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.6rem;
  background: linear-gradient(0deg, rgba(44,38,52,.5), rgba(44,38,52,.15)); opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(26px, 4vw, 48px); align-items: start; }
.contact-info { display: grid; gap: 8px; }
.contact-line {
  display: flex; gap: 16px; align-items: center; padding: 16px 18px; background: var(--card);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .2s ease;
}
a.contact-line:hover { transform: translateY(-3px); }
.ci-icon { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 1.35rem; background: color-mix(in srgb, var(--c) 16%, #fff); }
.contact-info .btn-whatsapp { margin-top: 10px; }

.contact-form { background: var(--card); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8em 1em; border-radius: 12px; border: 2px solid var(--line);
  background: #fffdfa; font-family: inherit; font-size: 1rem; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(230,0,126,.12);
}
.field textarea { resize: vertical; }
.form-hint { margin-top: 14px; font-size: .86rem; color: var(--muted); text-align: center; }
.form-hint a { color: var(--pink); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #efeaf2; padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer-logo { height: 48px; background: #fff; padding: 8px 12px; border-radius: 12px; margin-bottom: 16px; }
.footer-brand p { color: #bdb4c6; max-width: 30em; font-size: .96rem; }
.footer-nav { display: grid; gap: 10px; align-content: start; }
.footer-nav a, .footer-contact a { color: #cfc7d8; transition: color .2s ease; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact p { color: #bdb4c6; font-size: .96rem; margin-bottom: 4px; }
.footer-contact strong { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 8px; color: #a99fb4; font-size: .88rem; }
.to-top { color: #cfc7d8; font-weight: 700; }
.to-top:hover { color: #fff; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(28, 22, 34, .93);
  display: flex; align-items: center; justify-content: center; padding: 4vw;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img { max-width: 90vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); border: 5px solid #fff; }
.lb-close, .lb-nav {
  position: absolute; color: #fff; background: rgba(255,255,255,.12); border-radius: 50%;
  display: grid; place-items: center; transition: background .2s ease, transform .2s ease;
}
.lb-close { top: 20px; right: 24px; width: 50px; height: 50px; font-size: 2rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 2.4rem; }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-close:hover, .lb-nav:hover { background: var(--pink); }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.eyebrow--reveal { opacity: 0; animation: fadeUp .8s .1s ease forwards; }
.hero-title { opacity: 0; animation: fadeUp .8s .22s ease forwards; }
.hero-lead { opacity: 0; animation: fadeUp .8s .34s ease forwards; }
.hero-actions { opacity: 0; animation: fadeUp .8s .46s ease forwards; }
.hero-badges { opacity: 0; animation: fadeUp .8s .58s ease forwards; }
.hero-visual { opacity: 0; animation: fadeIn 1s .5s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .price-card { position: static; max-width: 460px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { columns: 3; }
}
@media (max-width: 768px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 18px clamp(20px,5vw,40px) 28px; gap: 4px;
    box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .38s cubic-bezier(.5,.2,.2,1); z-index: 55;
  }
  .nav.open { transform: translateY(0); }
  .nav-link { padding: .8em .2em; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 12px 0 0; }
  .nav-toggle { display: block; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; margin-top: 20px; max-width: 460px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-visual { min-height: 300px; }
  .photo-card--float { width: 46%; }
  .lb-nav { width: 46px; height: 46px; font-size: 2rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}