/* ============================================================
   WBIC.nl — Shared stylesheet
   ============================================================ */
:root {
  --ink:        #141413;
  --ink-soft:   #3a3a37;
  --muted:      #69727d;
  --soft:       #9aa3ad;
  --beige:      #cabb9f;
  --beige-deep: #b8a583;
  --beige-soft: #e6dcc6;
  --beige-mist: #f1e9d4;
  --cream:      #faf9f5;
  --offwhite:   #f5f1e6;
  --white:      #ffffff;
  --line:       rgba(20,20,19,0.08);
  --line-strong:rgba(20,20,19,0.14);
  --font-heading: "Quicksand", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  22px;
  --radius-xl:  28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(20,20,19,0.04);
  --shadow-md: 0 12px 32px -12px rgba(20,20,19,0.18);
  --shadow-lg: 0 30px 60px -25px rgba(184,165,131,0.45);
  --ease-out: cubic-bezier(.2,.8,.25,1);
  --ease-soft: cubic-bezier(.65,0,.35,1);
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
:focus-visible { outline: 2px solid var(--beige-deep); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 16px; top: 16px; background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 6px; z-index: 200; }
.stage { position: relative; isolation: isolate; overflow: hidden; background: var(--cream); }
.bg-mesh {
  position: absolute; inset: -20%; z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, var(--beige) 0px, transparent 38%),
    radial-gradient(circle at 82% 18%, var(--beige-soft) 0px, transparent 40%),
    radial-gradient(circle at 70% 78%, var(--beige-mist) 0px, transparent 42%),
    radial-gradient(circle at 22% 82%, var(--beige) 0px, transparent 40%),
    radial-gradient(circle at 50% 50%, var(--offwhite) 0px, transparent 55%);
  background-color: var(--cream);
  background-size: 200% 200%;
  animation: meshShift 18s ease-in-out infinite;
  will-change: background-position, transform;
}
@keyframes meshShift {
  0%,100% { background-position: 0% 0%;     transform: scale(1)    rotate(0deg); }
  25%     { background-position: 100% 0%;   transform: scale(1.06) rotate(1deg); }
  50%     { background-position: 100% 100%; transform: scale(1.10) rotate(0deg); }
  75%     { background-position: 0% 100%;   transform: scale(1.06) rotate(-1deg); }
}
.bg-aurora {
  position: absolute; inset: -10%; z-index: 1; pointer-events: none;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(202,187,159,0)   0deg,
    rgba(202,187,159,.55) 60deg,
    rgba(230,220,198,0) 120deg,
    rgba(217,201,168,.55) 180deg,
    rgba(241,233,212,0) 240deg,
    rgba(202,187,159,.55) 300deg,
    rgba(202,187,159,0) 360deg);
  mix-blend-mode: multiply;
  filter: blur(60px);
  animation: spinAurora 28s linear infinite;
  will-change: transform;
}
@keyframes spinAurora { to { transform: rotate(360deg); } }
.bg-orb { position: absolute; z-index: 1; pointer-events: none; border-radius: 50%; filter: blur(80px); mix-blend-mode: multiply; will-change: transform; }
.bg-orb.a { width: 820px; height: 820px; top: -300px; left: -240px;
  background: radial-gradient(circle, rgba(202,187,159,.85), transparent 65%);
  animation: drift1 16s ease-in-out infinite alternate; }
.bg-orb.b { width: 900px; height: 900px; bottom: -350px; right: -240px;
  background: radial-gradient(circle, rgba(217,201,168,.85), transparent 65%);
  animation: drift2 20s ease-in-out infinite alternate; }
.bg-orb.c { width: 600px; height: 600px; top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(230,220,198,.8), transparent 65%);
  animation: drift3 24s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(260px,160px) scale(1.25); } }
@keyframes drift2 { to { transform: translate(-220px,-140px) scale(1.20); } }
@keyframes drift3 { 0% { transform: translate(-80px,-50px) scale(.95); } 100% { transform: translate(120px,100px) scale(1.18); } }
.nav {
  position: relative; z-index: 10;
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px;
}
.nav .brand img { height: 56px; width: auto; transition: opacity .3s ease; }
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); text-decoration: none;
  font-weight: 500; font-size: 15px;
  transition: color .2s ease;
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { color: var(--beige-deep); }
.nav-links a.active {
  color: var(--beige-deep);
}
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; border-radius: 2px;
  background: var(--beige-deep);
}
.hero {
  position: relative; z-index: 5;
  max-width: 1080px; margin: 0 auto;
  padding: 80px 24px 100px;
  text-align: center;
}
.hero.compact { padding: 60px 24px 60px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--beige-deep);
  box-shadow: 0 0 12px rgba(184,165,131,0.7);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .55; transform: scale(0.85); }
}
.hero h1 { font-size: clamp(38px, 6.4vw, 78px); line-height: 1.04; margin: 0 0 24px; }
.hero.compact h1 { font-size: clamp(34px, 5vw, 60px); }
.hero h1 .grad {
  background: linear-gradient(120deg, #b8a583 0%, #cabb9f 45%, #8a7a5a 80%, #b8a583 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: gradText 9s ease-in-out infinite;
}
@keyframes gradText {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.hero p.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 720px; margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-row { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600; font-size: 15px;
  transition: transform .25s var(--ease-out), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-primary {
  background: var(--ink); color: var(--cream);
  box-shadow: 0 16px 38px -16px rgba(20,20,19,.5);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--beige-deep); border-color: var(--beige-deep);
  box-shadow: 0 22px 50px -16px rgba(184,165,131,.6);
}
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.trust { position: relative; z-index: 5; max-width: 1000px; margin: 0 auto; padding: 0 24px 80px; text-align: center; }
.trust .label { font-size: 11px; letter-spacing: .22em; color: var(--soft); text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.trust .row { display: flex; flex-wrap: wrap; gap: 24px 44px; justify-content: center; color: var(--muted); font-weight: 500; font-size: 14px; }
.trust .row span { display: inline-flex; align-items: center; gap: 8px; }
.trust .row span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--beige-deep); }
.section { max-width: var(--container); margin: 0 auto; padding: 100px 24px; }
.section h2 { font-size: clamp(30px, 3.8vw, 46px); text-align: center; margin: 0 0 14px; }
.section .sub { text-align: center; color: var(--muted); max-width: 660px; margin: 0 auto 56px; font-size: 16px; line-height: 1.7; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .3s var(--ease-out), border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(202,187,159,.18), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--beige); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--beige), var(--beige-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700; font-size: 18px;
  box-shadow: 0 12px 28px -10px rgba(184,165,131,.5);
  position: relative;
}
.card h3 { margin: 18px 0 10px; font-size: 20px; position: relative; }
.card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; position: relative; }
.bullets {
  list-style: none; padding: 0; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px 32px;
  max-width: 920px;
}
.bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--ink-soft);
}
.bullets li::before {
  content: ""; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--beige), var(--beige-deep));
  margin-top: 1px;
  box-shadow: 0 6px 14px -6px rgba(184,165,131,.6);
}
.cta-strip {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 100px;
  padding: 60px 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--beige-soft), var(--beige) 100%);
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.cta-strip::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.6), transparent 50%);
  pointer-events: none;
}
.cta-strip h3 { margin: 0 0 12px; font-size: clamp(24px, 2.8vw, 34px); position: relative; }
.cta-strip p { margin: 0 0 26px; color: #5a5037; position: relative; font-size: 16px; }
.cta-strip .btn { position: relative; }
.contact-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) { .contact-wrap { grid-template-columns: 1fr; padding-top: 40px; } }
.contact-info h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 14px; }
.contact-info p { color: var(--muted); margin: 0 0 28px; font-size: 16px; line-height: 1.7; }
.contact-meta {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.contact-meta li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-weight: 500;
}
.contact-meta li .label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--soft); font-weight: 600; display: block; }
.contact-meta li .value { color: var(--ink); }
.contact-meta li a { text-decoration: none; }
.contact-meta li a:hover { color: var(--beige-deep); }
.contact-meta li .ico {
  width: 38px; height: 38px; flex: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--beige), var(--beige-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: var(--font-heading);
  box-shadow: 0 8px 18px -8px rgba(184,165,131,.6);
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-card h3 { margin: 0 0 6px; font-size: 22px; }
.form-card .form-sub { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.field { display: block; margin-bottom: 18px; }
.field label {
  display: block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--cream);
  font-family: inherit; font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--beige-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(202,187,159,.25);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form-card button[type="submit"] {
  width: 100%;
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--cream);
  font-weight: 600; font-size: 15px;
  margin-top: 8px;
  transition: transform .25s var(--ease-out), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.form-card button[type="submit"]:hover {
  background: var(--beige-deep); border-color: var(--beige-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(184,165,131,.6);
}
footer {
  border-top: 1px solid var(--line);
  padding: 36px 24px;
  text-align: center;
  color: var(--soft);
  font-size: 13px;
}
footer a { color: var(--muted); text-decoration: none; margin: 0 10px; }
footer a:hover { color: var(--ink); }
@media (max-width: 1024px) { .nav { padding: 22px 24px; } }
@media (max-width: 640px) {
  .nav { padding: 20px 18px; }
  .nav-links { gap: 18px; }
  .nav .brand img { height: 44px; }
  .hero { padding: 40px 18px 70px; }
  .section { padding: 70px 18px; }
  .cta-strip { margin: 30px 18px 70px; padding: 44px 24px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .form-card { padding: 26px; }
}
body.has-intro .intro-iris {
  position: fixed; z-index: 100;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 0 200vmax var(--cream);
  pointer-events: none;
  animation:
    irisOpen 1.8s cubic-bezier(.7,0,.3,1) 0.4s forwards,
    irisFinish 0.6s ease 7.8s forwards;
}
@keyframes irisOpen {
  0%   { width: 0;       height: 0;       box-shadow: 0 0 0 200vmax var(--cream); }
  100% { width: 240vmax; height: 240vmax; box-shadow: 0 0 0 200vmax rgba(250,249,245,0); }
}
@keyframes irisFinish { to { opacity: 0; } }
body.has-intro .intro-glow {
  position: fixed; z-index: 101;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%,-50%) scale(0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202,187,159,.55) 0%, rgba(202,187,159,0) 60%);
  filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  animation: glowIn 1.6s ease 0.6s forwards, glowOut 1.0s ease 6.0s forwards;
}
@keyframes glowIn { 0% { opacity: 0; transform: translate(-50%,-50%) scale(0.4); } 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@keyframes glowOut { to { opacity: 0; } }
body.has-intro .intro-ring {
  position: fixed; z-index: 101;
  top: 50%; left: 50%;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 2px solid var(--beige-deep);
  transform: translate(-50%,-50%) scale(0.6);
  opacity: 0;
  pointer-events: none;
  animation: ringPulse 1.6s ease-out 2.0s forwards;
}
@keyframes ringPulse {
  0%   { opacity: 0;   transform: translate(-50%,-50%) scale(0.5); }
  30%  { opacity: 0.7; }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(2.4); }
}
body.has-intro .intro-logo {
  position: fixed; z-index: 102;
  top: 50%; left: 50%;
  width: 260px; height: auto;
  transform: translate(-50%,-50%) scale(0.5);
  opacity: 0;
  filter: drop-shadow(0 0 0 rgba(184,165,131,0));
  animation: logoEmerge 1.4s cubic-bezier(.2,.8,.2,1) 0.9s forwards;
}
@keyframes logoEmerge {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.5);  filter: drop-shadow(0 0 0 rgba(184,165,131,0)); }
  60%  { opacity: 1; transform: translate(-50%,-50%) scale(1.08); filter: drop-shadow(0 30px 60px rgba(184,165,131,.5)); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1);    filter: drop-shadow(0 18px 40px rgba(184,165,131,.35)); }
}
body.has-intro .intro-text {
  position: fixed; z-index: 101;
  top: calc(50% + 180px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  max-width: 94vw;
  pointer-events: none;
  animation: textBlockOut 0.7s ease 5.6s forwards;
}
body.has-intro .intro-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  margin-right: .25em;
  animation: wordIn 0.9s cubic-bezier(.2,.7,.2,1) forwards;
}
body.has-intro .intro-text .word:nth-child(1) { animation-delay: 2.4s; }
body.has-intro .intro-text .word:nth-child(2) { animation-delay: 2.65s; }
body.has-intro .intro-text .word:nth-child(3) { animation-delay: 2.9s; }
body.has-intro .intro-text .word:nth-child(4) { animation-delay: 3.15s; color: var(--beige-deep); }
body.has-intro .intro-text .word:nth-child(5) { animation-delay: 3.4s;  color: var(--beige-deep); }
@keyframes wordIn { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes textBlockOut { to { opacity: 0; transform: translateX(-50%) translateY(-14px); filter: blur(4px); } }
body.has-intro .nav .brand img { opacity: 0; animation: navLogoIn 0.4s ease 7.3s forwards; }
@keyframes navLogoIn { to { opacity: 1; } }
body.has-intro .nav-links,
body.has-intro .hero,
body.has-intro .trust { opacity: 0; transform: translateY(20px); }
body.has-intro .nav-links { animation: pageRise 0.9s var(--ease-out) 7.3s forwards; }
body.has-intro .hero       { animation: pageRise 1.0s var(--ease-out) 7.4s forwards; }
body.has-intro .trust      { animation: pageRise 1.0s var(--ease-out) 7.6s forwards; }
body.has-intro .section,
body.has-intro .cta-strip,
body.has-intro footer { opacity: 0; animation: pageFade 1.0s ease 7.5s forwards; }
@keyframes pageRise { to { opacity: 1; transform: translateY(0); } }
@keyframes pageFade { to { opacity: 1; } }
@media (max-width: 640px) {
  body.has-intro .intro-logo { width: 200px; }
  body.has-intro .intro-glow { width: 460px; height: 460px; }
  body.has-intro .intro-ring { width: 200px; height: 200px; }
  body.has-intro .intro-text { top: calc(50% + 140px); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-mesh, .bg-aurora, .bg-orb, .hero h1 .grad, .eyebrow::before { animation: none !important; }
  body.has-intro .intro-iris,
  body.has-intro .intro-glow,
  body.has-intro .intro-ring,
  body.has-intro .intro-logo,
  body.has-intro .intro-text { display: none !important; }
  body.has-intro .nav .brand img,
  body.has-intro .nav-links,
  body.has-intro .hero,
  body.has-intro .trust,
  body.has-intro .section,
  body.has-intro .cta-strip,
  body.has-intro footer { opacity: 1 !important; transform: none !important; animation: none !important; }
}
