﻿:root {
  --bg-main: #fffaf4;
  --bg-soft: #ffe9d2;
  --surface: #fffefb;
  --surface-muted: #fff5e8;
  --text: #3f3024;
  --heading: #6f3c28;
  --accent: #bc6a38;
  --accent-hover: #9f5429;
  --accent-soft: #efbe7d;
  --sage-soft: #dce8c8;
  --border: #ebd0b7;
  --focus: #8d4d2f;
  --shadow: 0 16px 38px rgba(142, 84, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at 88% -22%, #ffd8b0 0%, #ffe8d2 30%, transparent 63%),
    radial-gradient(circle at 8% 6%, #fff0dd 0%, transparent 48%),
    radial-gradient(circle at 72% 78%, #eef6dd 0%, transparent 35%),
    var(--bg-main);
}

a {
  color: var(--accent);
  text-underline-offset: 0.2rem;
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--heading);
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 0.85rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 0.95rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin-top: 0;
}

.container {
  width: min(92%, 72rem);
  margin-inline: auto;
}

.section-pad {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(255, 236, 216, 0.74) 0%, rgba(250, 244, 229, 0.45) 68%, rgba(239, 246, 224, 0.34) 100%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #ffffff;
  color: var(--heading);
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(188, 106, 56, 0.25);
  background: rgba(255, 250, 244, 0.95);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading);
  text-decoration: none;
}

.brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(188, 106, 56, 0.3);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #8a4a2f;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-list a:hover {
  background: #ffe4ca;
  color: #743c23;
}

.site-nav {
  width: auto;
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(188, 106, 56, 0.45);
  border-radius: 0.75rem;
  background: #fff7ee;
  color: #7b3f2c;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.menu-icon::before {
  transform: translateY(-0.36rem);
}

.menu-icon::after {
  transform: translateY(0.24rem);
}

.hero {
  padding-top: clamp(4.6rem, 9vw, 6rem);
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
}

.hero-grid > div {
  position: relative;
  padding: clamp(1.2rem, 3vw, 2.15rem);
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 248, 240, 0.96) 0%, rgba(255, 240, 224, 0.9) 100%);
  box-shadow: var(--shadow);
}

.hero-grid > div::after {
  content: "";
  position: absolute;
  inset: auto -2.25rem -2.25rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 106, 56, 0.16) 0%, rgba(188, 106, 56, 0) 68%);
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 0.5rem;
  color: #96512f;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.lead {
  max-width: 60ch;
  font-size: clamp(1.04rem, 1.4vw, 1.14rem);
}

.button {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.78rem 1.18rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--accent);
  color: #f9fffe;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

.button-secondary {
  background: #ffe8d5;
  color: #7b3f2c;
}

.button-secondary:hover {
  background: #ffdaba;
  color: #643120;
}

.button-small {
  margin-top: 0;
  padding: 0.6rem 0.95rem;
  font-size: 0.92rem;
}

.panel,
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
}

.panel h3,
.card h3 {
  color: #7a4128;
}

.section-pad h2::after {
  content: "";
  display: block;
  width: 3.15rem;
  height: 0.2rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 72%, rgba(188, 106, 56, 0) 100%);
}

.section-pad .container > p {
  max-width: 66ch;
}

.about-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.6rem;
}

.about-copy p {
  margin: 0;
}

.about-copy .panel {
  margin-top: 0.9rem;
}

.psychologist-photo {
  margin: 0 auto;
  width: min(100%, 22rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.psychologist-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.psychologist-photo figcaption {
  padding: 0.65rem 0.85rem 0.8rem;
  font-size: 0.9rem;
  color: #6b3a24;
}

.timeline,
.checklist,
.contact-list {
  margin: 0;
  padding-left: 1.15rem;
}

.panel {
  padding: 1.2rem;
  margin-top: 1.2rem;
}

.timeline li,
.checklist li,
.contact-list li {
  margin-bottom: 0.5rem;
}

.offer-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.card {
  padding: 1.05rem;
  background: var(--surface-muted);
  border-top: 4px solid rgba(188, 106, 56, 0.56);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 28px rgba(142, 84, 49, 0.18);
}

.notice {
  border-left: 6px solid var(--accent);
  background: linear-gradient(180deg, #fff7ed 0%, #fffef9 100%);
}

.practical-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-form {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

.form-field {
  margin: 0 0 0.8rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #6a3a24;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: #fffdf8;
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(141, 77, 47, 0.22);
  outline-offset: 1px;
  border-color: #bf6a3a;
}

.form-note {
  margin: 0.6rem 0 0;
  font-size: 0.93rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.35rem;
}

th,
td {
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--border);
  padding: 0.74rem;
}

thead th {
  background: #ffe8d4;
}

tbody tr:nth-child(odd) td,
tbody tr:nth-child(odd) th {
  background: #fff8ee;
}

.small-note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 0.8rem;
  box-shadow: 0 10px 25px rgba(142, 84, 49, 0.16);
}

.map-panel {
  display: flex;
  flex-direction: column;
}

.map-panel iframe {
  flex: 1;
  min-height: 22rem;
}

.site-footer {
  border-top: 1px solid rgba(188, 106, 56, 0.28);
  background: #ffefdf;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.policy-grid {
  display: grid;
  gap: 0.5rem;
}

.policy-main {
  padding-top: 5.25rem;
}

.page-intro {
  margin-bottom: 1rem;
}

.cookie-popup {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(92%, 45rem);
  padding: 1rem;
  background: #fffdfa;
  border: 1px solid var(--border);
  border-top: 5px solid var(--accent);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  z-index: 2500;
}

.cookie-popup[hidden] {
  display: none;
}

.cookie-popup h2 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.cookie-popup p {
  margin-bottom: 0.75rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#over-mij,
#aanbod,
#tarieven,
#opleiding-ervaring,
#contact {
  scroll-margin-top: 6.5rem;
}

@media (min-width: 48rem) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
    gap: 1.25rem;
    align-items: center;
  }

  .psychologist-photo {
    margin: 0 0 0 auto;
    width: 100%;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practical-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  #contact .contact-grid .panel {
    height: 100%;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 64rem) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
    gap: 1.5rem;
  }

  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 47.99rem) {
  .about-layout {
    justify-items: center;
    text-align: left;
  }

  .about-copy {
    width: 100%;
  }

  .psychologist-photo {
    margin-top: 0.35rem;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
  }

  body.nav-ready .menu-toggle {
    display: inline-flex;
  }

  body.nav-ready .site-nav {
    display: none;
  }

  body.nav-ready .site-nav.is-open {
    display: block;
  }

  body.nav-ready .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding-top: 0.25rem;
  }

  body.nav-ready .site-nav .nav-list a {
    justify-content: flex-start;
  }

  body.nav-ready .menu-toggle[aria-expanded="true"] .menu-icon {
    background: transparent;
  }

  body.nav-ready .menu-toggle[aria-expanded="true"] .menu-icon::before {
    transform: translateY(0) rotate(45deg);
  }

  body.nav-ready .menu-toggle[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-2px) rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
