/* =============================================
   AH Psychologie — Shared Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Playfair+Display:ital@1&display=swap');

/* ── Variables ─────────────────────────────── */
:root {
  --orange:     hsl(14.72, 67.09%, 46.47%);
  --dark-green: hsl(170.77, 37.14%, 13.73%);
  --beige:      hsl(22.86, 100%, 95.88%);
  --card-bg:    hsl(22.86, 100%, 97.5%);
  --text-dark:  hsl(170.77, 37.14%, 13.73%);
  --text-muted: hsl(169.57, 20.35%, 38%);
  --white:      #ffffff;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --max-w:      1200px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Italic emphasis uses Playfair Display for the serif italic contrast */
em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

/* ── Layout helpers ────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: filter 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover  { filter: brightness(0.92); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--orange);     color: var(--white); }
.btn-dark    { background: var(--dark-green); color: var(--white); }

/* ── Logo ──────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── Navigation ────────────────────────────── */
.site-header {
  background: var(--dark-green);
  padding: 0.75rem 1.5rem 0;
}
.navbar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ──────────────────────────────────── */
.hero-wrapper {
  background: var(--dark-green);
  padding: 0.75rem 1.5rem 2.5rem;
  border-bottom-left-radius: 3.5rem;
  border-bottom-right-radius: 3.5rem;
}
.hero-image-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-image-box img {
  width: 100%;
  height: 90vh;
  height: 90svh;
  object-fit: cover;
  display: block;
}
.hero-image-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(34, 197, 94, 0.38);
  border-radius: var(--radius-md);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2.5rem;
  gap: 1rem;
}
.hero-label {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.hero-heading {
  font-size: clamp(2.25rem, 1.8125rem + 1.9444vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 560px;
  letter-spacing: -0.03em;
}
.hero-heading em {
  color: var(--white);
}
.hero-contact-card {
  background: rgba(255, 247, 237, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 260px;
  flex-shrink: 0;
}
.hero-contact-card img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.hero-contact-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--white);
}
.hero-contact-info a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.2rem;
  text-decoration: none;
}
.hero-contact-info a:hover { color: var(--white); }

/* ── Section: Welcome ──────────────────────── */
.welcome-section {
  background: var(--beige);
  padding: 5rem 1.5rem;
}
.welcome-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 3rem;
  align-items: start;
}
.welcome-text h2 {
  font-size: clamp(1.875rem, 1.64rem + 1.04vw, 2.8125rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.welcome-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.treatment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.treatment-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.treatment-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.treatment-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.treatment-card-body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  flex: 1;
  line-height: 1.6;
}
.lees-meer {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.lees-meer:hover { gap: 0.5em; }

/* ── Feature bar ───────────────────────────── */
.feature-bar {
  background: var(--dark-green);
  padding: 1.5rem 1.5rem;
}
.feature-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.feature-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── Section: Direct aan de slag ───────────── */
.direct-section {
  background: var(--dark-green);
  padding: 5rem 1.5rem;
}
.direct-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}
.direct-text h2 {
  font-size: clamp(1.875rem, 1.64rem + 1.04vw, 2.8125rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.direct-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.direct-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.direct-images img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ── Section: Hoe werkt het ────────────────── */
.steps-section {
  background: var(--beige);
  padding: 5rem 1.5rem;
}
.section-label {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--text-muted);
  opacity: 0.3;
  border-radius: 2px;
  margin: 0.75rem auto 2.5rem;
  display: block;
}
.steps-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.steps-grid {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 220px;
  justify-content: space-between;
}
.step-badge {
  display: inline-flex;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  width: fit-content;
}
.step-card-bottom { display: flex; flex-direction: column; gap: 0.6rem; }
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── Footer ────────────────────────────────── */
.footer {
  background: var(--beige);
  padding: 4rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-tagline {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.footer-col-title {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.footer-contact a:hover { color: var(--orange); }
.footer-reg p {
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.footer-logo {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
}
.footer-logo .logo img {
  height: 48px;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--orange); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── Page hero (inner pages) ───────────────── */
.page-hero {
  background: var(--dark-green);
  padding: 0.75rem 1.5rem 3rem;
  border-bottom-left-radius: 3.5rem;
  border-bottom-right-radius: 3.5rem;
}
.page-hero-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.page-hero-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,40,30,0.7) 0%, rgba(20,40,30,0.35) 100%);
}
.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.page-hero-content .section-label { margin-bottom: 0.35rem; }
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
}

/* ── Content sections (inner pages) ─────────── */
.content-section {
  padding: 5rem 1.5rem;
}
.content-section.bg-beige { background: var(--beige); }
.content-section.bg-white { background: var(--white); }
.content-section.bg-dark  { background: var(--dark-green); color: var(--white); }
.content-block {
  max-width: 780px;
  margin: 0 auto;
}
.content-block h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.content-block h2.light { color: var(--white); }
.content-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.content-block p.light { color: rgba(255,255,255,0.8); }

/* ── Tarieven table ─────────────────────────── */
.tarieven-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.tarieven-table th,
.tarieven-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.9rem;
}
.tarieven-table th {
  font-weight: 700;
  background: var(--card-bg);
  color: var(--text-dark);
}
.tarieven-table tr:hover td { background: var(--card-bg); }
.tarieven-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ── Over mij layout ────────────────────────── */
.about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ── Contact form ───────────────────────────── */
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-info-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── Behandelingen overview ─────────────────── */
.treatments-grid {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.treatment-big-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.treatment-big-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
}
.treatment-big-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.treatment-big-card-body {
  padding: 1.75rem;
}
.treatment-big-card-body h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.treatment-big-card-body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ── Aanmelden form note ─────────────────────── */
.aanmelden-note {
  background: var(--card-bg);
  border-left: 3px solid var(--orange);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ── Prose (legal pages) ────────────────────── */
.prose h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.prose p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .welcome-grid    { grid-template-columns: 1fr; }
  .treatment-cards { grid-template-columns: 1fr; }
  .direct-inner    { grid-template-columns: 1fr; }
  .steps-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-top      { grid-template-columns: 1fr 1fr; }
  .about-grid      { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .navbar-card .btn { display: none; }
  .hamburger { display: flex; }
  .navbar-card { padding: 0.85rem 1.25rem; }
  .hero-content   { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .hero-contact-card { min-width: unset; width: 100%; }
  .hero-image-box img { height: 75vh; height: 75svh; }
  .steps-grid      { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr; gap: 2rem; }
  .direct-images   { grid-template-columns: 1fr; }
  .feature-bar-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* Mobile nav open state */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow);
  gap: 1rem;
  z-index: 100;
}
.nav-open .navbar-card .btn { display: inline-flex; }
.navbar-card { position: relative; }

/* ── Scroll animations ─────────────────────── */
.scroll-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Don't animate on reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .scroll-animate { opacity: 1; transform: none; transition: none; }
}

/* ── About hero (over-mij) ──────────────────── */
.about-hero {
  background: var(--dark-green);
  padding: 3rem 1.5rem 5rem;
}
.about-hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-hero-text .section-label { color: var(--orange); }
.about-hero-text h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin: 0.75rem 0 1.5rem;
  letter-spacing: -0.03em;
}
.about-hero-text > p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.about-meer-link {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}
.about-meer-link:hover { color: var(--white); border-color: white; }
.about-hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  display: block;
}

/* ── Anne sidebar card (tarieven) ──────────── */
.anne-sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 1.5rem;
}
.anne-sidebar img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}
.anne-sidebar-body {
  padding: 1.5rem;
}
.anne-sidebar-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}
.anne-sidebar-body .role-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  margin-top: 0.35rem;
}
.anne-sidebar-body > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.anne-sidebar-contact {
  margin-bottom: 1rem;
}
.anne-sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.anne-sidebar-contact a:hover { color: var(--orange); }
.anne-sidebar-contact svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Tarieven two-column layout ─────────────── */
.tarieven-two-col {
  padding: 5rem 1.5rem;
  background: var(--beige);
}
.tarieven-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.tarieven-content h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.tarieven-content > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ── Anne CTA section (behandelingen) ───────── */
.anne-cta-section {
  background: var(--orange);
  padding: 4rem 1.5rem;
}
.anne-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.anne-cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.anne-cta-inner > div > p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.anne-cta-photo {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  display: block;
}
.btn-white {
  background: var(--white);
  color: var(--orange);
}

/* ── Contact band ────────────────────────────── */
.contact-band {
  background: var(--dark-green);
  padding: 4rem 1.5rem 5rem;
  border-bottom-left-radius: 3.5rem;
  border-bottom-right-radius: 3.5rem;
}
.contact-band-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-band-left h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.contact-band-left > p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-band-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.contact-band-contact a:hover { color: var(--white); }
.contact-band-contact svg { color: var(--orange); width: 18px; height: 18px; flex-shrink: 0; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-form-card > p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* ── Full-width image ───────────────────────── */
.full-width-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── Aanmelden band ──────────────────────────── */
.aanmelden-band {
  background: var(--dark-green);
  padding: 4rem 1.5rem 5rem;
  border-bottom-left-radius: 3.5rem;
  border-bottom-right-radius: 3.5rem;
}
.aanmelden-band-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.aanmelden-band-left h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.aanmelden-band-left > p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.aanmelden-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.aanmelden-step-num {
  background: var(--orange);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.aanmelden-step-text h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.aanmelden-step-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.aanmelden-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.aanmelden-form-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.aanmelden-form-card > p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* ── Responsive additions ───────────────────── */
@media (max-width: 900px) {
  .about-hero-grid     { grid-template-columns: 1fr; }
  .about-hero-photo    { order: -1; }
  .about-hero-photo img { aspect-ratio: 4/3; }
  .tarieven-layout     { grid-template-columns: 1fr; }
  .anne-sidebar        { position: static; }
  .anne-cta-inner      { grid-template-columns: 1fr; }
  .anne-cta-photo      { display: none; }
  .contact-band-grid   { grid-template-columns: 1fr; }
  .aanmelden-band-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .full-width-image img { height: 250px; }
  .anne-cta-photo       { display: none; }
}
