:root {
  --green-dark: #1f5f59;
  --green-mid: #4d8a8b;
  --green-soft: #dfeceb;
  --sand: #f6f1e8;
  --sand-deep: #e8dcc8;
  --text: #213231;
  --muted: #5c6e6b;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(22, 52, 49, 0.12);
  --radius: 22px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fcfbf8;
  line-height: 1.65;
}
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green-mid); }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.alt { background: var(--sand); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.section-label, .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-mid);
  margin-bottom: 1rem;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 700;
}
h1 { font-size: clamp(3.2rem, 6.4vw, 5.9rem); }
h2 { font-size: clamp(2.45rem, 4.4vw, 3.7rem); }
h3 { font-size: 1.85rem; }
.hero .eyebrow { color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.35); }
p { margin: 0 0 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(252, 251, 248, 0.88);
  border-bottom: 1px solid rgba(31, 95, 89, 0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 0;
}
.brand { display: flex; align-items: center; gap: 0.9rem; font-weight: 700; color: var(--green-dark); }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { font-size: 1.25rem; letter-spacing: 0.04em; }
.site-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.site-nav a { font-weight: 600; }
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17,44,41,0.72) 0%, rgba(17,44,41,0.42) 43%, rgba(17,44,41,0.10) 100%),
    url('assets/wandeling-heide.jpg') center/cover no-repeat;
  color: var(--white);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 2rem;
  align-items: end;
  padding: 5rem 0;
}
.lead { font-size: 1.1rem; max-width: 42rem; color: rgba(255,255,255,0.9); }
.hero-card, .card, .quote-card, .contact-form, .pricing-banner, .credentials-box {
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-card {
  background: rgba(255,255,255,0.92);
  color: var(--text);
  padding: 1.75rem;
}
.hero-card ul { margin: 0; padding-left: 1.2rem; }
.hero-card li { margin-bottom: 0.65rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.95rem 1.45rem; font-weight: 700; transition: 0.2s ease;
}
.button.primary { background: var(--green-dark); color: var(--white); }
.button.primary:hover { background: #184943; color: var(--white); transform: translateY(-1px); }
.button.secondary {
  background: rgba(255,255,255,0.13); color: var(--white); border: 1px solid rgba(255,255,255,0.3);
}
.button.secondary:hover { background: rgba(255,255,255,0.22); color: var(--white); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.intro-grid, .two-col, .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.quote-card { background: var(--white); padding: 2rem; }
.quote-card img { width: 100%; object-fit: contain; }
.image-stack { position: relative; min-height: 650px; }
.large-photo {
  width: 82%; border-radius: var(--radius); height: 560px; object-fit: cover;
}
.small-photo {
  width: 46%; position: absolute; right: 0; bottom: 0; height: 360px; object-fit: cover;
  border-radius: var(--radius); border: 10px solid #fcfbf8;
}
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.card {
  background: var(--white); padding: 2rem; border: 1px solid rgba(31, 95, 89, 0.08);
}
.pricing-banner {
  margin-top: 2rem; padding: 1.6rem 1.8rem; background: linear-gradient(135deg, var(--green-soft), #f7f8f4);
  display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 1.5rem; align-items: center;
}
.image-band { background: linear-gradient(180deg, #fbfaf7 0%, #eef4f3 100%); }
.steps { display: grid; gap: 1.4rem; margin-top: 2rem; }
.steps > div {
  display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-items: start;
}
.steps span {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green-dark); color: var(--white);
  display: grid; place-items: center; font-weight: 700;
}
.process-photo-wrap img {
  width: 100%; height: 620px; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.credentials-box {
  background: var(--green-dark); color: var(--white); padding: 2rem 2.2rem;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 2rem; align-items: center;
}
.credentials-box .section-label { color: rgba(255,255,255,0.65); }
.contact-form {
  background: var(--white); padding: 2rem;
  display: grid; gap: 1rem;
}
.contact-form label { display: grid; gap: 0.45rem; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.95rem 1rem; border-radius: 14px; border: 1px solid rgba(31, 95, 89, 0.15);
  font: inherit; color: var(--text); background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid rgba(77, 138, 139, 0.25); border-color: var(--green-mid);
}
.full { width: 100%; }
.form-note, .contact-list, .site-footer { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.contact-list li { margin-bottom: 0.5rem; }
.site-footer { padding: 1.4rem 0 2rem; background: #fcfbf8; border-top: 1px solid rgba(31,95,89,0.08); }
.footer-wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 980px) {
  .hero-grid, .intro-grid, .two-col, .contact-grid, .pricing-banner, .credentials-box, .cards.three {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-grid { padding: 4rem 0; }
  .image-stack { min-height: auto; display: grid; gap: 1rem; }
  .large-photo, .small-photo, .process-photo-wrap img { width: 100%; position: static; height: auto; }
  .small-photo { border-width: 0; }
}
@media (max-width: 720px) {
  .site-nav { display: none; }
  .section { padding: 4.25rem 0; }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
}
