:root{
  --bg: #f7f2ea;
  --surface: #ffffff;
  --surface-soft: #efe7db;
  --text: #2f2a26;
  --muted: #6f6558;
  --line: rgba(47, 42, 38, 0.10);

  --brand: #a67c2e;
  --brand-dark: #7a5b22;
  --brand-light: #c6a15a;
  --brand-soft: rgba(166, 124, 46, 0.12);

  --accent: #3a322b;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(58, 40, 18, 0.10);
  --shadow-soft: 0 10px 24px rgba(58, 40, 18, 0.08);
  --container: 1240px;

  --font-sans: "Manrope", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --step--1: clamp(.88rem, .84rem + .18vw, .95rem);
  --step-0: clamp(1rem, .96rem + .25vw, 1.08rem);
  --step-1: clamp(1.18rem, 1.06rem + .5vw, 1.35rem);
  --step-2: clamp(1.55rem, 1.3rem + 1vw, 2.15rem);
  --step-3: clamp(2rem, 1.65rem + 2vw, 3.45rem);

  --space-1: clamp(.6rem, .5rem + .3vw, .8rem);
  --space-2: clamp(.9rem, .75rem + .6vw, 1.2rem);
  --space-3: clamp(1.2rem, 1rem + 1vw, 1.8rem);
  --space-4: clamp(1.6rem, 1.25rem + 1.5vw, 2.5rem);
  --space-5: clamp(2.2rem, 1.7rem + 2.2vw, 3.5rem);
  --space-6: clamp(3rem, 2.2rem + 3vw, 5rem);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0 0 var(--space-2); font-size:var(--step-0); }
h1,h2,h3{
  margin:0 0 var(--space-2);
  line-height:1.12;
  letter-spacing:-0.03em;
}
h1,h2{ font-family:var(--font-serif); }
h1{ font-size:var(--step-3); }
h2{ font-size:var(--step-2); }
h3{ font-size:var(--step-1); }

.container{
  width:min(var(--container), 100% - 2 * var(--space-3));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:.8rem;
  background:var(--text);
  color:#fff;
  padding:.75rem 1rem;
  border-radius:4px;
  z-index:999;
}
.skip-link:focus{ left:.8rem; }

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(12px);
  background:rgba(252, 250, 246, 0.9);
  border-bottom:1px solid var(--line);
}
.site-header.is-elevated{
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
}

.brand-logo{
  width:clamp(100px, 10vw, 150px);
  height:auto;
  object-fit:contain;
}

.nav{ position:relative; }
.nav-menu{
  display:flex;
  align-items:center;
  gap:1.2rem;
}
.nav-menu a{
  font-weight:700;
  color:rgba(47,41,36,.86);
}
.nav-menu a:hover{ color:var(--brand-dark); }
.nav-menu a[aria-current="page"]{
  color:var(--brand-dark);
}

.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:6px;
  border:1px solid var(--line);
  background:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  position:relative;
}
.nav-toggle-lines::before{ position:absolute; top:-6px; left:0; }
.nav-toggle-lines::after{ position:absolute; top:6px; left:0; }

.sr-only{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  padding:.95rem 1.3rem;
  font-weight:700;
  font-family:var(--font-sans);
  border:1px solid transparent;
  transition:transform .2s ease, filter .2s ease, background .2s ease;
}
.btn:hover{ transform:translateY(-1px); }

.btn-primary{
  background:linear-gradient(135deg, var(--brand-light), var(--brand));
  color:#fff;
  box-shadow:var(--shadow-soft);
}
.btn-primary:hover{
  filter:brightness(.97);
}
.site-header .btn-primary{ color:#fff !important; }

.btn-ghost{
  background:rgba(255,255,255,.7);
  color:var(--text);
  border-color:rgba(47,41,36,.14);
}
.btn-light{
  background:#fff;
  color:var(--brand-dark);
}
.btn-block{ width:100%; }

.hero{
  position:relative;
  overflow:hidden;
  padding:var(--space-6) 0 var(--space-5);
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 450px at 85% 5%, rgba(199,175,133,.18), transparent 60%),
    radial-gradient(800px 420px at 0% 30%, rgba(155,122,69,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0));
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:var(--space-4);
  align-items:center;
}

.kicker,
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  font-size:var(--step--1);
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
  margin-bottom:var(--space-1);
}
.kicker::before,
.section-kicker::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:2px;
  background:var(--brand);
  box-shadow:0 0 0 6px rgba(155,122,69,.16);
  margin-right:8px;
}
.section-kicker-light{ color:rgba(255,255,255,.8); }
.section-kicker-light::before{
  background:#fff;
  box-shadow:0 0 0 6px rgba(255,255,255,.12);
}

.section-kicker::before{
  display: none;
}

.kicker::before{
  display:none;
}

.lead,
.section-lead{
  color:var(--muted);
  max-width:62ch;
}
.section-lead-light{ color:rgba(255,255,255,.82); }

.accent{
  color:var(--brand-dark);
  position:relative;
}
.accent::after{
  display:none;
}

.hero-actions{
  display:flex;
  gap:.9rem;
  flex-wrap:wrap;
  margin-top:var(--space-3);
}

.hero-card{
  background:rgba(255,255,255,.8);
  border:1px solid rgba(155,122,69,.16);
  box-shadow:var(--shadow);
  border-radius:10px;
  padding: 0.5rem;
}

.hero-logo{
  width:100%;
  height:280px;
  object-fit:cover;
  object-position:center;
  border-radius:6px;
}

.hero-card-title{
  font-size:1.1rem;
  font-weight:800;
  margin-bottom:.2rem;
}
.hero-card-text{
  color:var(--muted);
}
.hero-list{
  margin:1rem 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.6rem;
}
.hero-list li{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
}
.hero-list li::before{
  content:"";
  width:10px;
  height:10px;
  margin-top:.45rem;
  border-radius:2px;
  background:var(--brand);
  flex:0 0 auto;
}

.usp-row{
  margin-top:var(--space-5);
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:var(--space-3);
}

.usp-card,
.service-card,
.feature-card,
.info-box,
.about-logo-card,
.team-card{
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  border-radius:8px;
}

.usp-card{
  padding:1.2rem;
}
.usp-card p{ color:var(--muted); margin:0; }

.usp-icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:6px;
  background:var(--brand-soft);
  color:var(--brand-dark);
  font-weight:800;
  margin-bottom:1rem;
}
.usp-icon svg{
  width:22px;
  height:22px;
}

.section{ padding:var(--space-6) 0; }
.section-soft{
  background:
    radial-gradient(1000px 300px at 10% 0%, rgba(199,175,133,.12), transparent 60%),
    radial-gradient(900px 300px at 90% 100%, rgba(155,122,69,.08), transparent 60%),
    var(--surface-soft);
}
.section-dark{
  background:linear-gradient(135deg, #372d22, #6f5431);
  color:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:var(--space-5);
  align-items:center;
}
.about-logo-card{
  padding: 0.5rem;
}
.about-logo-card img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:8px;
}

.info-boxes{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1rem;
  margin:var(--space-3) 0;
}
.info-box{
  padding:1rem;
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.info-box strong{ font-size:.95rem; }
.info-box span{ color:var(--muted); }

.checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.7rem;
}
.checklist li{
  display:flex;
  gap:.75rem;
  color:rgba(47,41,36,.88);
}
.checklist li::before{
  content:"";
  width:10px;
  height:10px;
  border-radius: 50px;
  background:var(--brand);
  margin-top:.45rem;
  box-shadow:0 0 0 6px rgba(155,122,69,.12);
  flex:0 0 auto;
}

.section-head{
  margin-bottom:var(--space-4);
}

.cards-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:var(--space-3);
}
.service-card{
  overflow:hidden;
}
.service-top{
  height:8px;
  background:linear-gradient(90deg, var(--brand-light), var(--brand));
}
.service-body{
  padding:1.2rem;
}
.service-body p{ color:var(--muted); }

.team-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:var(--space-3);
}
.team-card{
  overflow:hidden;
}
.team-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}
.team-card-body{
  padding:1.2rem;
}
.team-card-body p{
  color:var(--muted);
  margin:0;
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.2rem;
  padding:var(--space-4);
  border:1px solid rgba(255,255,255,.14);
  border-radius:10px;
  background:rgba(255,255,255,.04);
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:var(--space-4);
  align-items:start;
}
.contact-points{
  display:grid;
  gap:.8rem;
  margin-top:var(--space-3);
}
.contact-point{
  background:#fff;
  border:1px solid var(--line);
  border-radius:6px;
  padding:.9rem 1rem;
}

.form{
  font-family:var(--font-sans);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:10px;
  padding:1.2rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.9rem;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field--full{ grid-column:1 / -1; }

label{
  font-weight:800;
  font-size:var(--step--1);
}
input,
select,
textarea{
  font:inherit;
  padding:.9rem 1rem;
  border-radius:6px;
  border:1px solid rgba(47,41,36,.14);
  background:#fff;
  outline:none;
}
input:focus,
select:focus,
textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(155,122,69,.12);
}
textarea{
  resize:vertical;
  min-height:150px;
}

.footer{
  background:#fff;
  border-top:1px solid var(--line);
  padding:2rem 0 1rem;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:1.5rem;
}

.footer-col h3{
  margin:0 0 .5rem;
  line-height:1.2;
}

.footer-col p{
  margin:.15rem 0;
  line-height:1.35;
}

.footer-col a{
  display:block;
  margin:.15rem 0;
  line-height:1.35;
}

.footer-logo{
  width:140px;
  margin-bottom:.8rem;
}

.footer .muted{
  margin:.35rem 0 0;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.made-by{
  font-size:0.9rem;
  color:var(--muted);
  text-decoration:none;
  transition:color 0.2s ease;
}

.made-by:hover{
  color:var(--brand);
}

.muted{
  color:var(--muted);
  font-size: 14px;
}

.reveal{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .6s ease, transform .6s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 980px){
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards-3,
  .usp-row,
  .team-grid,
  .footer-grid,
  .info-boxes{
    grid-template-columns:1fr;
  }

  .form{
    grid-template-columns:1fr;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 760px){
  .nav-toggle{
    display:inline-flex;
  }

  .nav{
    position:static;
  }

  .nav-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:.4rem;
    padding:1rem;
    background:rgba(255,255,255,.98);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    border-left:none;
    border-right:none;
    border-radius:0;
    box-shadow:0 12px 24px rgba(0,0,0,.08);
    z-index:100;
  }

  .nav-menu.is-open{
    display:flex;
  }

  .nav-menu a{
    width:100%;
    padding:.9rem 0;
    border-radius:0;
  }

  .nav-menu a:hover{
    background:var(--brand-soft);
  }

  .brand-logo{
    width:120px;
    height:67.5px;
  }

  .hero-logo,
  .about-logo-card img,
  .team-card img{
    height:220px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none; transform:none; opacity:1; }
  .btn{ transition:none; }
}

.whatsapp-wrapper {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
}

.whatsapp-button {
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: #25D366;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-button svg {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-chat {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: 82px;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.18);
}

.whatsapp-chat.is-open {
  display: flex;
}

.whatsapp-chat-header {
  display: flex;
  align-items: center;
  padding: 14px;
  background: #25D366;
  color: #ffffff;
}

.whatsapp-chat-header-text h3 {
  margin: 0;
  font-size: 16px;
}

.whatsapp-chat-header-text p {
  margin: 4px 0 0;
  font-size: 13px;
}

.whatsapp-chat-close {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.whatsapp-chat-body {
  padding: 16px;
  background: #f6f6f6;
}

.whatsapp-chat-body p {
  margin: 0;
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
}

.whatsapp-chat-footer {
  display: flex;
  gap: 8px;
  padding: 12px;
}

#kayne-chat-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.whatsapp-send-button {
  border: none;
  background: #25D366;
  color: #fff;
  width: 45px;
  border-radius: 10px;
  cursor: pointer;
}

/* mobiel */

@media (max-width: 768px) {

  .whatsapp-wrapper {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-button {
    width: 58px;
    height: 58px;
  }

  .whatsapp-button svg {
    width: 26px;
    height: 26px;
  }

}

.footer{
  background:#fff;
  border-top:1px solid rgba(47, 42, 38, 0.18);
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;

  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(47, 42, 38, 0.18);
}

/* Kleur Swatches Styling */
.color-swatch-container {
  margin-top: 8px;
  padding: 12px;
  background: rgba(0,0,0,0.02);
  border-radius: 12px;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.swatch, .swatch-other {
  width: 42px;
  height: 42px;
  border-radius: 2px; /* De gevraagde 50px radius */
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  position: relative;
}

.swatch:hover, .swatch-other:hover {
  transform: scale(1.15);
  z-index: 2;
}

.swatch.is-selected, .swatch-other.is-selected {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--soft-green-2);
  transform: scale(1.1);
}

.swatch-other {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--muted);
  font-size: 1.2rem;
  border: 2px dashed rgba(0,0,0,0.15);
}

#color-display-name {
  margin-top: 5px;
  min-height: 1.2em;
}