/* ’t Kuierhuus — pedicure aan huis
   Kleuren uit het logo: diepblauw, okergeel, groen, warme perzik/zand. */

:root {
  --navy: #123a6b;
  --terra: #a9541f;
  --terra-dark: #7f3c12;
  --gold: #e3a21f;
  --gold-dark: #c98c12;
  --green: #4e7c33;
  --peach: #fbe9d6;
  --sand: #f5e9d3;
  --ground: #fdf8f0;
  --white: #ffffff;
  --ink: #3f3a33;
  --muted: #6b5f52;
  --line: #e8dcc8;
  --whatsapp: #1f9d55;
  --radius: 18px;
  --shadow-soft: 0 6px 24px rgba(63, 58, 51, 0.08);
  --shadow-lift: 0 14px 36px rgba(63, 58, 51, 0.14);
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;
  --container: 1120px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ground);
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
  text-wrap: pretty;
}
h1 { font-size: clamp(2.1rem, 1.3rem + 3vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }
p + p { margin-top: 1em; }

a { color: var(--terra); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terra-dark); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--navy); color: var(--white);
  padding: 10px 16px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { top: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(63, 58, 51, 0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 84px;
}
.brand { display: flex; flex-direction: column; gap: 1px; text-decoration: none; }
.brand-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.75rem; color: var(--navy); letter-spacing: -0.01em; line-height: 1.1;
}
.brand-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) {
  font-weight: 500; color: var(--muted); text-decoration: none;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:not(.btn):hover { color: var(--navy); }
.nav a:not(.btn)[aria-current="page"] { color: var(--navy); font-weight: 600; border-bottom-color: var(--gold); }
.nav-phone { margin-left: 8px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); color: var(--navy); cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 26px; border-radius: 999px;
  font-weight: 700; font-size: 1.02rem; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); color: var(--navy); }
.btn-ghost { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #17804a; color: var(--white); }
.btn-small { min-height: 44px; padding: 10px 20px; font-size: 0.95rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.bg-white { background: var(--white); }
.bg-peach { background: var(--peach); }
.bg-sand { background: var(--sand); }

.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green);
  margin-bottom: 14px;
}
.lead { font-size: 1.2rem; }
.measure { max-width: 700px; }
.stack { display: flex; flex-direction: column; gap: 20px; }
.center { text-align: center; align-items: center; }
.center .measure { margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); }
.small { font-size: 0.95rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 255, 255, 0.75), transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(227, 162, 31, 0.18), transparent 70%),
    var(--peach);
  padding: 64px 0 96px;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; }
.hero-logo { width: min(560px, 90vw); height: auto; mix-blend-mode: multiply; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--navy);
  font-size: 0.9rem; font-weight: 700; padding: 8px 16px; border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.badge::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 0 rgba(78, 124, 51, 0.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(78, 124, 51, 0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(78, 124, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 124, 51, 0); }
}
.hero h1 { max-width: 860px; }
.hero .lead { max-width: 640px; font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); }

/* Page hero (subpagina's) */
.page-hero { padding: 72px 0 56px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.card-sand { background: var(--sand); }
.card-icon { width: 30px; height: 30px; margin-bottom: 4px; }
.card h3 { margin-bottom: 2px; }
.step-nr {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand); color: var(--navy); font-weight: 700;
}

/* ---------- Twee kolommen / foto ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-text { display: flex; flex-direction: column; gap: 18px; }
.photo-frame { position: relative; justify-self: center; width: min(420px, 100%); }
.photo-frame::before {
  content: ""; position: absolute; inset: 0;
  transform: translate(14px, 14px) rotate(-1.5deg);
  background: var(--sand); border-radius: 26px; z-index: 0;
}
.photo-frame img {
  position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 4 / 5;
  object-fit: cover; object-position: center 40%; border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

/* ---------- Werkgebied ---------- */
.places {
  font-family: var(--font-display); font-size: clamp(1.4rem, 1rem + 1.5vw, 1.9rem);
  color: var(--navy); line-height: 1.5;
}
.places span { color: var(--gold); padding: 0 4px; }

/* ---------- Highlight / callout ---------- */
.callout {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-left: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px;
  font-weight: 600; color: var(--navy); font-size: 1.05rem;
}
.callout svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }

.price-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.price-box .headline { font-family: var(--font-display); font-size: 1.55rem; color: var(--navy); line-height: 1.4; margin-bottom: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sand); border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-logo { width: 280px; height: auto; mix-blend-mode: multiply; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h3 { font-size: 1.25rem; margin-bottom: 4px; }
.footer-col a { color: var(--ink); text-decoration: none; }
.footer-col a:hover { color: var(--terra); text-decoration: underline; }
.footer-bottom {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 0.9rem; color: var(--muted);
}

/* ---------- Zwevende WhatsApp-knop ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 56px; padding: 0 20px 0 16px; border-radius: 999px;
  background: var(--whatsapp); color: var(--white); text-decoration: none; font-weight: 700;
  box-shadow: 0 10px 30px rgba(31, 157, 85, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 14px 34px rgba(31, 157, 85, 0.45); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .badge::before { animation: none; }
  .btn, .card, .wa-float { transition: none; }
  .btn:hover, .card:hover, .wa-float:hover { transform: none; }
}

/* ---------- Responsief ---------- */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; box-shadow: 0 16px 30px rgba(63, 58, 51, 0.12);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a:not(.btn)[aria-current="page"] { border-bottom-color: var(--line); }
  .nav-phone { margin: 16px 0 0; align-self: flex-start; }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 64px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .card { padding: 24px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .hero-inner { align-items: flex-start; text-align: left; }
  .hero .lead { max-width: none; }
  .center { text-align: left; align-items: flex-start; }
  .center .measure { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { width: 240px; }
  .wa-float { right: 16px; bottom: 16px; }
  .wa-float span { display: none; }
  .wa-float { padding: 0; width: 56px; justify-content: center; }
  .brand-name { font-size: 1.5rem; }
}
