/* ======================================================
   Inlijf — stylesheet
   ====================================================== */

/* --- Custom properties --- */
:root {
  --bg:            #faf8f4;
  --bg-dark:       #2b3a2e;
  --bg-alt:        #f2ede6;
  --text:          #2d2d2d;
  --text-muted:    #6b6b6b;
  --heading:       #1a2c1d;
  --accent:        #6b8f63;
  --accent-dark:   #4e6b48;
  --accent-light:  #e6efe4;
  --warm:          #c4956a;
  --border:        #e0d9d0;
  --radius:        6px;
  --shadow:        0 2px 16px rgba(0,0,0,.07);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.12);
  --font-heading:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --max-w:         1120px;
  --section-pad:   5rem 0;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* --- Utility --- */
.container {
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section { padding: var(--section-pad); }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--heading);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 300; letter-spacing: -.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
p + p { margin-top: .75rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* --- Cookie banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
}
.cookie-banner p { flex: 1; }
.cookie-banner a { color: var(--warm); text-decoration: underline; }
.cookie-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: .25rem .5rem;
  flex-shrink: 0;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link { display: flex; align-items: center; }
.logo { height: 44px; width: auto; }

/* Nav */
.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: color .2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--heading); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* --- Hero --- */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: .22;
}
.hero-mandala-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.hero-mandala {
  width: min(700px, 80vw);
  opacity: .08;
  transform: translateX(20%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 6rem;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.25rem;
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Intro --- */
.intro { background: var(--bg-alt); }
.intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.intro-text { max-width: 600px; }
.intro-text h2 { margin-bottom: 1rem; }
.intro-text p { color: var(--text-muted); }

.counter-block {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  flex-shrink: 0;
}
.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.counter-label {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* --- Behandelingen --- */
.behandelingen { background: var(--bg); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-image { aspect-ratio: 4/3; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-image img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { font-size: .95rem; color: var(--text-muted); }

/* --- Behandelingen extra --- */
.behandelingen-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.behandelingen-extra li {
  padding: 1.25rem 1.5rem;
  background: var(--accent-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.behandelingen-extra h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.behandelingen-extra p { font-size: .875rem; color: var(--text-muted); }

/* --- Waarom --- */
.waarom { background: var(--accent-light); }
.props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.props-grid li {
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
}
.props-grid h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.props-grid p { font-size: .9rem; color: var(--text-muted); }

/* --- Tarieven --- */
.tarieven { background: var(--bg-alt); }
.tarieven-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}
.tarief-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}
.tarief-card h3 { margin-bottom: .75rem; }
.tarief-prijs {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}
.tarief-prijs span { font-size: 1rem; color: var(--text-muted); font-family: var(--font-body); }
.tarief-card p { font-size: .9rem; color: var(--text-muted); }
.tarieven-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
}
.tarieven-note p + p { margin-top: .5rem; }
.tarieven-note a { color: var(--accent); }

/* --- Over mij --- */
.over-mij { background: var(--bg); }
.over-mij-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
}
.over-mij-portrait {
  position: sticky;
  top: 100px;
}
.over-mij-portrait img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
}
.over-mij-text h2 { margin-bottom: 1.25rem; }
.over-mij-text p { color: var(--text-muted); margin-bottom: 1rem; }
.over-mij-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.4;
}
.over-mij-feats {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.over-mij-feats li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.over-mij-feats strong { color: var(--heading); font-size: .95rem; }
.over-mij-feats span { color: var(--text-muted); font-size: .9rem; }
.over-mij-accred { font-size: .85rem; color: var(--text-muted); margin-top: 1.5rem !important; }
.over-mij-accred a { color: var(--accent); }

/* --- Contact --- */
.contact { background: var(--bg-dark); color: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { color: #fff; margin-bottom: 1rem; }
.contact-info p, .contact-info address { color: rgba(255,255,255,.7); }
.contact-info address { margin-top: 1.5rem; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
}
.required { color: var(--warm); }
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.35); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.1);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-status {
  font-size: .9rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(107,143,99,.2);
  color: #b2d4ac;
  border: 1px solid rgba(107,143,99,.4);
}
.form-status.error {
  display: block;
  background: rgba(196,100,80,.2);
  color: #e8a89a;
  border: 1px solid rgba(196,100,80,.4);
}
.contact .btn-primary { align-self: flex-start; }

/* --- Footer --- */
.site-footer { background: #1e2a20; color: rgba(255,255,255,.6); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
}
.footer-logo { filter: brightness(0) invert(1); opacity: .75; margin-bottom: .75rem; }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.5; }
.footer-col h4 {
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
  font-size: .75rem;
  letter-spacing: .1em;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  text-decoration: none;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-col li:not(:has(a)) { font-size: .875rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* --- Contact address block --- */
.contact-info address { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-info address p { color: rgba(255,255,255,.65); font-size: .95rem; }
.contact-info address strong { display: block; color: rgba(255,255,255,.9); font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .2rem; }
.contact-info address em { color: rgba(255,255,255,.45); font-size: .85rem; }

/* --- Legal pages --- */
.legal-header {
  background: var(--bg-dark);
  padding: 1.25rem 0;
}
.legal-header .header-inner { height: auto; }
.legal-body {
  padding: 4rem 0 6rem;
}
.legal-body .container { max-width: 760px; }
.legal-body h1 { margin-bottom: 2rem; }
.legal-body h2 { font-size: 1.3rem; margin: 2rem 0 .5rem; }
.legal-body p { color: var(--text-muted); margin-bottom: .85rem; }
.legal-body ol, .legal-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body li { color: var(--text-muted); margin-bottom: .5rem; }
.legal-body .back-link { display: inline-block; margin-bottom: 2rem; color: var(--accent); font-size: .9rem; text-decoration: none; }
.legal-body .back-link:hover { text-decoration: underline; }

/* ======================================================
   Responsive
   ====================================================== */

@media (max-width: 1024px) {
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .over-mij-inner { grid-template-columns: 220px 1fr; gap: 2.5rem; }
  .behandelingen-extra { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: none;
    padding: 1rem 0 1.5rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .main-nav a {
    display: block;
    padding: .75rem 1.5rem;
    font-size: 1rem;
  }
  .main-nav a::after { display: none; }
  .nav-cta { margin: .5rem 1.5rem 0; display: inline-block; width: auto; }
  .site-header { position: relative; }

  .hero-content { padding-block: 4rem; }

  .intro-inner { flex-direction: column; align-items: flex-start; }
  .counter-block { align-self: flex-start; }

  .cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .behandelingen-extra { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .props-grid { grid-template-columns: 1fr; }

  .tarieven-cards { grid-template-columns: 1fr; }

  .over-mij-inner { grid-template-columns: 1fr; }
  .over-mij-portrait { position: static; max-width: 240px; }
  .over-mij-portrait img { aspect-ratio: 1; }

  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
}
