/* ============ Webdesign in beeld — statische site ============ */
:root {
  --green: #0c2b2a;
  --green-dark: #0a2323;
  --pink: #f9e9ec;
  --pink-soft: #E5C8D7;
  --teal: #268084;
  --primary: #268084;
  --primary-hover: #1f6c70;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --text: #0c2b2a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,.08);
  --shadow-lg: 0 14px 40px rgba(0,0,0,.12);
  --container: 1200px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  background: transparent;
  color: var(--text);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(38,128,132,.25);
}
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 12px 28px rgba(38,128,132,.35); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-dark:hover { background: rgba(38,128,132,.06); border-color: rgba(38,128,132,.4); color: var(--primary); }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand span { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }
.nav-desktop { display: none; align-items: center; gap: 28px; }
.nav-desktop button.nav-link {
  background: none; border: 0; padding: 0;
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .2s;
}
.nav-desktop button.nav-link:hover { color: var(--primary); }
.menu-toggle {
  background: none;
  border: 0;
  padding: 8px;
  color: var(--text);
  display: inline-flex;
}
.menu-toggle svg { width: 26px; height: 26px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px 22px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile button.nav-link {
  text-align: left;
  background: none;
  border: 0;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

@media (min-width: 768px) {
  .brand span { display: inline; }
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}
@media (max-width: 480px) {
  .brand span { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--green);
  color: #fff;
  padding: 96px 0 128px;
  overflow: hidden;
  text-align: center;
}
.hero-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-decor .ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(38,128,132,.12);
}
.hero-decor .ring.r1 { top: -20%; right: -10%; width: 600px; height: 600px; }
.hero-decor .ring.r2 { top: -10%; right: -5%; width: 400px; height: 400px; border: 2px solid rgba(38,128,132,.18); }
.hero-decor .ring.r3 { top: 40%; left: -10%; width: 300px; height: 300px; border-color: rgba(229,200,215,.12); }
.hero-loep { position: absolute; opacity: .27; will-change: transform; }
.hero-loep.left { left: -48px; top: 96px; width: 200px; animation: floatA 7s ease-in-out infinite; display: none; }
.hero-loep.right { right: 32px; bottom: 64px; width: 130px; animation: floatB 8s ease-in-out infinite 1s; display: none; }
@media (min-width: 768px) {
  .hero-loep.left, .hero-loep.right { display: block; }
}
@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(-8deg); }
  50%     { transform: translateY(-14px) rotate(-4deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(18deg); }
  50%     { transform: translateY(10px) rotate(24deg); }
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.hero h1 .accent { color: var(--primary); display: inline-block; }
.hero p.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero .cta-row {
  display: flex; flex-direction: column; gap: 14px;
  align-items: center; justify-content: center;
}
@media (min-width: 640px) {
  .hero .cta-row { flex-direction: row; }
}

/* ===== Section base ===== */
section { padding: 96px 0; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.section-head { text-align: center; margin-bottom: 56px; }

/* ===== Pakketten ===== */
.pakketten { background: var(--pink); }
.pakketten .section-eyebrow { color: var(--green); }
.pakketten .section-title { color: var(--green); }
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 900px) {
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
}
.pkg-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  position: relative;
}
.pkg-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(38,128,132,.25); transform: translateY(-2px); }
.pkg-card.featured { border-color: rgba(38,128,132,.45); box-shadow: var(--shadow-lg); }
.pkg-card.featured::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--primary);
}
.pkg-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 12px; border-radius: 999px;
}
.pkg-head { padding: 32px 28px 20px; }
.pkg-card.featured .pkg-head { padding-top: 40px; }
.pkg-title { font-size: 20px; font-weight: 700; margin: 0; }
.pkg-price { margin-top: 18px; }
.pkg-price .amount { font-size: 38px; font-weight: 800; }
.pkg-price .meta { color: var(--muted); font-size: 14px; font-weight: 500; margin-left: 6px; }
.pkg-price .sub { display: block; margin-top: 4px; }
.pkg-price .sub .amount { font-size: 24px; color: var(--primary); }
.pkg-card:not(.featured) .pkg-price .sub .amount { color: var(--text); }
.pkg-desc { color: var(--muted); margin: 14px 0 0; }
.pkg-features { padding: 8px 28px 0; flex: 1; }
.pkg-features ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.pkg-features li { display: flex; gap: 12px; font-size: 14px; font-weight: 500; color: rgba(12,43,42,.85); }
.pkg-features svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--primary); margin-top: 2px; }
.pkg-foot { padding: 24px 28px 32px; }
.pkg-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 40px; }

/* ===== USP ===== */
.usps { background: var(--bg-soft); }
.usps-head { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 56px; }
.usps-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; margin: 0; }
.usps-head img { height: 44px; width: auto; }
.usp-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  max-width: 1120px; margin: 0 auto;
}
@media (min-width: 600px) { .usp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }
.usp {
  background: var(--teal);
  color: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .25s;
  display: flex; flex-direction: column; align-items: center;
}
.usp:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.usp-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.usp-icon svg { width: 28px; height: 28px; color: #fff; }
.usp h4 { font-size: 17px; font-weight: 700; margin: 0 0 10px; }
.usp p { color: rgba(255,255,255,.8); font-size: 14px; margin: 0; }

/* ===== Over ons ===== */
.about { background: #fff; position: relative; overflow: hidden; }
.about-decor1 {
  position: absolute; left: -128px; top: 80px;
  width: 256px; height: 256px; border-radius: 50%;
  border: 1px solid rgba(38,128,132,.1); pointer-events: none;
}
.about-decor2 {
  position: absolute; right: -128px; bottom: 80px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 2px solid rgba(229,200,215,.25); pointer-events: none;
}
.about-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; }
.about-mark { display: flex; justify-content: center; margin-bottom: 30px; }
.about-mark img { height: 64px; width: 64px; opacity: .8; }
.about .section-eyebrow { color: var(--primary); }
.about p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0 0 24px; }
.about-loc { margin-top: 48px; max-width: 440px; margin-left: auto; margin-right: auto; }
.about-loc-meta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--muted); font-size: 14px; margin-bottom: 12px;
}
.about-loc-meta svg { width: 16px; height: 16px; color: var(--primary); }
.about-map {
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.about-map iframe { width: 100%; height: 200px; border: 0; display: block; }

/* ===== Contact ===== */
.contact { background: var(--green); color: #fff; }
.contact .section-head h3 { color: #fff; }
.contact .section-eyebrow { color: var(--primary); }
.contact-card {
  max-width: 760px; margin: 0 auto;
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
@media (max-width: 600px) { .contact-card { padding: 24px 20px; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 14px; }
.field .help { color: var(--muted); font-size: 12px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field textarea {
  font: inherit;
  background: #f7f7f8;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(38,128,132,.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input[type="file"] {
  font: inherit; padding: 8px; background: #f7f7f8; border: 1px solid var(--border); border-radius: 8px;
}
.field input[type="file"]::file-selector-button {
  margin-right: 14px; padding: 8px 14px; border: 0;
  background: rgba(38,128,132,.12); color: var(--primary);
  border-radius: 6px; font-weight: 600; cursor: pointer;
}
.field input[type="file"]::file-selector-button:hover { background: rgba(38,128,132,.2); }

.row-2 { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .row-2 { grid-template-columns: 1fr 1fr; } }

/* package picker */
.pkg-pick { display: grid; gap: 10px; grid-template-columns: 1fr; margin-bottom: 18px; }
@media (min-width: 640px) { .pkg-pick { grid-template-columns: repeat(3, 1fr); } }
.pkg-pick label {
  display: block; cursor: pointer;
  border: 2px solid var(--border);
  background: #f7f7f8;
  border-radius: 10px;
  padding: 12px;
  transition: border-color .15s, background-color .15s, box-shadow .15s;
}
.pkg-pick label:hover { border-color: rgba(38,128,132,.4); }
.pkg-pick input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-pick input:checked + .pick-row { color: var(--text); }
.pkg-pick input:checked ~ .marker { display: none; } /* unused; using sibling on label */
.pkg-pick label:has(input:checked) { border-color: var(--primary); background: rgba(38,128,132,.06); box-shadow: var(--shadow-sm); }
.pick-row { display: flex; gap: 10px; align-items: flex-start; }
.pick-dot {
  flex-shrink: 0;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.pkg-pick label:has(input:checked) .pick-dot { border-color: var(--primary); background: var(--primary); }
.pkg-pick label:has(input:checked) .pick-dot::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff;
}
.pick-text .t1 { display: block; font-weight: 700; font-size: 14px; line-height: 1.2; }
.pick-text .t2 { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

.contact-tail { text-align: center; color: rgba(255,255,255,.6); font-size: 13px; margin-top: 24px; }

.field-error { color: #dc2626; font-size: 13px; margin-top: 4px; min-height: 0; }

.success-box, .error-box {
  display: none;
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 16px;
}
.success-box { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.error-box { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.success-box.show, .error-box.show { display: block; }
.success-box h4 { margin: 0 0 6px; font-size: 18px; }
.success-box p { margin: 0; }
.success-box button {
  margin-top: 14px;
  background: var(--primary); color: #fff; border: 0;
  padding: 10px 18px; border-radius: 8px; font-weight: 600; cursor: pointer;
}

/* ===== Projecten ===== */
.projects { background: #fff; padding-top: 64px; padding-bottom: 80px; }
.projects .section-eyebrow { color: var(--primary); }
.projects-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr;
  max-width: 880px; margin: 0 auto;
}
@media (min-width: 640px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
.project-card {
  display: block;
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  transition: transform .2s, box-shadow .25s;
}
.project-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.project-thumb {
  aspect-ratio: 16 / 10; background: #f3f4f6; overflow: hidden;
}
.project-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.project-card:hover .project-thumb img { transform: scale(1.05); }
.project-meta {
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.project-meta .name { font-weight: 600; }
.project-meta .more { color: var(--muted); font-size: 12px; }
.project-card:hover .project-meta .more { color: var(--primary); }

/* ===== Footer ===== */
.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid; gap: 44px; grid-template-columns: 1fr;
  margin-bottom: 44px; align-items: start;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-left { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 36px; height: 36px; filter: brightness(0) invert(1); }
.footer-brand span { font-weight: 700; font-size: 20px; }
.footer-left p { color: rgba(255,255,255,.55); font-size: 14px; max-width: 320px; margin: 0; line-height: 1.6; }
.footer-left a.cta { color: rgba(255,255,255,.65); font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-left a.cta:hover { color: var(--primary); }
.footer-right { display: flex; }
@media (min-width: 768px) { .footer-right { justify-content: flex-end; } }
.footer-right img { height: 180px; width: auto; }
@media (min-width: 768px) { .footer-right img { height: 220px; } }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
  align-items: center; justify-content: space-between;
  text-align: center;
}
@media (min-width: 600px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 12px; margin: 0; }
.footer-bottom a {
  color: rgba(255,255,255,.5); font-size: 12px;
  text-decoration: underline; text-underline-offset: 4px;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--primary); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Utility ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
