/* 't Groene Bosch — Design tokens */
:root {
  --cream: #F5F2ED;
  --forest: #2D4A3E;
  --forest-dark: #2B5337;
  --forest-hover: #23452C;
  --cta-band: #2F5B3D;
  --footer-bg: #2B5337;
  --subfooter-bg: #244832;
  --moss: #5A7A6B;
  --sage: #9CAF88;
  --sage-light: #E6EFE6;
  --sage-20: rgba(156, 175, 136, 0.2);
  --sage-30: rgba(156, 175, 136, 0.3);
  --sage-40: rgba(156, 175, 136, 0.4);
  --sage-50: rgba(156, 175, 136, 0.5);
  --cream-95: rgba(245, 242, 237, 0.95);
  --header-cream: #F5EFE4;
  --header-border: #E4DCCD;
  --forest-80: rgba(45, 74, 62, 0.8);
  --max-w: 72rem;
  --max-w-sm: 48rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--forest);
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.container-sm {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header — Nuova Cura stijl */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--header-border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 78px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--forest-dark);
}

.brand-mark {
  height: 4.25rem;
  width: auto;
  max-width: 14rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(45, 74, 62, 0.2)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

.brand-name {
  font-weight: 700;
  font-size: 1.125rem;
}

/* Nav met meeschuivende underline */
.nav {
  position: relative;
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--header-border);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.875rem;
  text-decoration: none;
  color: var(--forest-dark);
  font-weight: 600;
  font-size: 0.9375rem;
}

.nav-link:hover {
  opacity: 0.9;
}

.nav-item {
  position: relative;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown {
  position: absolute;
  left: 0;
  top: 2.75rem;
  min-width: 220px;
  background: #111;
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Meeschuivende underline indicator */
.nav-indicator {
  position: absolute;
  left: 0;
  bottom: 0.375rem;
  height: 2px;
  width: 40px;
  background: var(--forest-dark);
  border-radius: 999px;
  transform: translateX(0);
  transition: transform 0.22s ease, width 0.22s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.header-cta {
  margin-left: auto;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: var(--forest-dark);
  color: white;
}

.header-cta:hover {
  background: var(--forest-hover);
}

.menu-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--forest-dark);
  cursor: pointer;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--header-border);
  background: var(--header-cream);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  color: var(--forest-dark);
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-nav-link:hover {
  background: var(--sage-light);
}

.mobile-cta-btn {
  margin-top: 0.5rem;
  justify-content: center;
}

/* Legacy: behoud voor andere components */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 3.6rem;
  width: auto;
  max-width: 20rem;
  object-fit: contain;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--moss);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--forest);
  color: var(--forest);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  border: 1px solid var(--header-border);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.65);
}

/* Hero split — Nuova Cura: grote foto, overlay card rechts */
.hero-split {
  padding: 0;
  background: var(--cream);
  margin-bottom: 0;
}

.hero-split-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-split-media {
  height: min(48vh, 320px);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.hero-split-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}

.hero-split-card {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(43, 83, 55, 0.96), rgba(43, 83, 55, 0.94));
  color: #fff;
  padding: 2rem 1.5rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-split-wrap {
    display: block;
    height: min(52vh, 460px);
  }

  .hero-split-media {
    position: absolute;
    inset: 0;
    height: auto;
  }

  .hero-split-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(380px, 42%, 520px);
    padding: 2rem 2.25rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  }
}

.hero-split-title {
  margin: 0 0 0.75rem;
  font-size: clamp(22px, 2.2vw, 38px);
  line-height: 1.12;
  word-break: normal;
  overflow-wrap: break-word;
  font-weight: 700;
}

.hero-split-sub {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-split-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-split-actions .btn {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.hero-split-card .btn-primary {
  background: var(--cream);
  color: var(--forest);
}

.hero-split-card .btn-primary:hover {
  background: rgba(245, 242, 237, 0.9);
}

.hero-split-card .btn-ghost {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}

.hero-split-card .btn-ghost:hover {
  background: rgba(245, 242, 237, 0.9);
  border-color: rgba(245, 242, 237, 0.9);
}

/* Hero (origineel, voor andere pagina's) */
.hero {
  background: var(--cream);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 7rem 1.5rem;
  }
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
  }
}

.hero-content {
  min-width: 0;
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero-subline {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--moss);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subline {
    font-size: 1.25rem;
  }
}

.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero afbeelding-blok */
.hero-image-block {
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--header-border);
  box-shadow: 0 4px 12px rgba(45, 74, 62, 0.08);
  background: white;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .hero-image-block {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .hero-image-block {
    max-width: 28rem;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--header-cream) 0%, rgba(230, 239, 230, 0.5) 100%);
  padding: 1.5rem;
  text-align: center;
}

.hero-image-placeholder span {
  font-size: 0.875rem;
  color: var(--moss);
}

.hero-image-hint {
  font-size: 0.75rem !important;
  margin-top: 0.25rem;
  color: var(--sage) !important;
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

/* Alternating section backgrounds for subpages */
.section-alt-cream {
  background: var(--cream);
}

.section-alt-cream-soft {
  background: var(--header-cream);
}

.section-alt-sage-soft {
  background: rgba(230, 239, 230, 0.6);
}

/* Content sections – two-column layout for Missie & Visie */
.content-section {
  padding: 2.5rem 0;
}

.content-section .content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: stretch;
}

.content-section .content-text,
.content-section .content-image {
  height: 100%;
}

.content-section .content-text {
  max-width: 44rem;
}

.content-section .content-image {
  max-width: 28rem;
  justify-self: end;
  display: flex;
}

.content-section .content-image img {
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--header-border);
  object-fit: cover;
  display: block;
}

.content-section .content-image--contain img {
  object-fit: contain;
  object-position: center;
}

.content-section--reverse .content-grid {
  direction: rtl;
}

.content-section--reverse .content-text,
.content-section--reverse .content-image {
  direction: ltr;
}

@media (max-width: 900px) {
  .content-section {
    padding: 2.25rem 0;
  }

  .content-section .content-grid {
    grid-template-columns: 1fr;
  }

  .content-section .content-image {
    justify-self: start;
  }

  .content-section .content-image img {
    height: auto;
  }

  .content-section--reverse .content-grid {
    direction: ltr;
  }
}

/* Scheiding tussen hero en content */
.section-divider {
  height: 1px;
  background: var(--header-border);
  margin: 0 1.5rem;
}

@media (min-width: 768px) {
  .section-divider {
    margin: 0 2rem;
  }
}

/* Content blocks — visuele scheiding tussen secties */
.content-block {
  margin: 1.5rem 1rem;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  background: white;
  border: 1px solid var(--header-border);
  box-shadow: 0 1px 3px rgba(45, 74, 62, 0.04);
}

@media (min-width: 768px) {
  .content-block {
    margin: 2rem 1.5rem;
    padding: 2.5rem 2rem;
  }
}

.content-block--tint {
  background: var(--header-cream);
  border-color: var(--header-border);
}

.content-block--sage {
  background: rgba(230, 239, 230, 0.6);
  border-color: rgba(156, 175, 136, 0.25);
}

.content-block .section-title {
  margin-bottom: 1.5rem;
}

.content-block .section {
  padding: 0;
}

.content-block .timeline {
  margin-top: 1rem;
}

.content-block .trust-block {
  background: none;
  padding: 0;
}

.content-block .trust-grid {
  gap: 2rem;
}

.section-compact {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section-compact {
    padding: 4rem 0;
  }
}

/* Werken bij – compactere spacing alleen op deze pagina */
.page-werken-bij .section {
  padding: 2.25rem 0;
}
@media (min-width: 768px) {
  .page-werken-bij .section {
    padding: 2.75rem 0;
  }
}
.page-werken-bij .section-compact {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .page-werken-bij .section-compact {
    padding: 2.5rem 0;
  }
}
.page-werken-bij .section-title {
  margin-bottom: 1.5rem;
}
.page-werken-bij .section-werken-tight {
  padding: 1.5rem 0;
}

/* Contact – compactere spacing alleen op deze pagina */
.page-contact .section {
  padding: 2.25rem 0;
}
@media (min-width: 768px) {
  .page-contact .section {
    padding: 2.75rem 0;
  }
}
.page-contact .section-title {
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.875rem;
  }
}

/* Route tiles / Card grid */
.grid-3 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-2-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid var(--sage-30);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
  }
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--sage-50);
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-link:hover .card-title {
  color: var(--moss);
}

.card-icon {
  color: var(--sage);
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.card:hover .card-icon {
  color: var(--moss);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 0.5rem;
  transition: color 0.2s;
}

.card-title-sm {
  font-size: 1.125rem;
}

.card-description {
  font-size: 0.875rem;
  color: var(--moss);
  line-height: 1.6;
  margin: 0;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
}

.card-link:hover .card-arrow {
  text-decoration: underline;
}

/* Timeline */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: var(--sage-30);
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.375rem;
}

.timeline-dot-inner {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: var(--sage-50);
  transition: all 0.3s;
}

.timeline-step.active .timeline-dot-inner {
  background: var(--forest);
  transform: scale(1.25);
  box-shadow: 0 0 0 4px var(--sage-30);
}

.timeline-content {
  flex: 1;
  min-width: 0;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--sage-20);
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.timeline-step.active .timeline-content {
  border-color: var(--forest);
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  transition: color 0.2s;
}

.timeline-step.active .timeline-content h3 {
  color: var(--forest);
}

.timeline-step:not(.active) .timeline-content h3 {
  color: var(--moss);
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--moss);
  line-height: 1.6;
  margin: 0;
}

/* Trust block */
.trust-block {
  background: rgba(156, 175, 136, 0.05);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .trust-block {
    padding: 6rem 0;
  }
}

.trust-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.trust-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--moss);
  margin-bottom: 0.75rem;
}

.trust-checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--sage-30);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232D4A3E'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 0.75rem;
  background-position: center;
}

.trust-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-content li {
  margin-bottom: 0.75rem;
  color: var(--moss);
  line-height: 1.6;
}

/* CTA band */
/* CTA band — Laag 1: aparte beslis-zone */
.cta-band {
  background: var(--cta-band);
  color: var(--cream);
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .cta-band {
    padding: 2.5rem 1.5rem;
  }
}

.cta-band-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-band p {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
  .cta-band p {
    font-size: 1.25rem;
  }
}

.cta-band-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-band .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: var(--cream);
  color: var(--forest);
}

.cta-band .btn-primary:hover {
  background: rgba(245, 242, 237, 0.9);
}

.cta-band .btn-secondary {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-width: 2px;
  border-color: var(--cream);
  color: var(--cream);
}

.cta-band .btn-secondary:hover {
  background: var(--cream);
  color: var(--forest);
}

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--sage-30);
  border-radius: 0.5rem;
  overflow: hidden;
  background: white;
  margin-bottom: 0.75rem;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: var(--forest);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: background 0.2s;
}

.faq-trigger:hover {
  background: rgba(156, 175, 136, 0.05);
}

.faq-trigger:focus {
  outline: 2px solid var(--sage);
  outline-offset: -2px;
}

.faq-trigger svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--moss);
  transition: transform 0.2s;
}

.faq-item.open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 24rem;
}

.faq-answer-inner {
  padding: 0.75rem 1.5rem 1rem;
  font-size: 0.875rem;
  color: var(--moss);
  line-height: 1.6;
  border-top: 1px solid var(--sage-20);
}

/* Footer */
/* Footer — Laag 2 + 3 */
.footer {
  color: var(--cream);
}

.footer-main {
  background: var(--footer-bg);
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .footer-main {
    padding: 4rem 1.5rem;
  }
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 2.5rem 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem 4rem;
  }
}

.footer-brand-col {
  min-width: 0;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(245, 242, 237, 0.9);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.footer-value {
  font-size: 0.8125rem;
  color: rgba(245, 242, 237, 0.75);
  margin: 0;
  font-style: italic;
}

.footer-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: rgba(245, 242, 237, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav,
.footer-contact-col p {
  font-size: 0.8125rem;
  color: rgba(245, 242, 237, 0.85);
  margin: 0;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.35rem;
}

.footer a {
  color: rgba(245, 242, 237, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--cream);
}

/* Subfooter — Laag 3 */
.footer-sub {
  background: var(--subfooter-bg);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-sub-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(245, 242, 237, 0.6);
}

.footer-sub-inner a {
  color: rgba(245, 242, 237, 0.6);
}

.footer-sub-inner a:hover {
  color: var(--cream);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  order: 2;
}

@media (min-width: 640px) {
  .footer-copyright {
    width: auto;
    flex: 1;
    order: 0;
  }
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sage-40);
  border-radius: 0.375rem;
  background: white;
  color: var(--forest);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(90, 122, 107, 0.6);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--sage);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  accent-color: var(--forest);
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: var(--moss);
}

/* Mobile menu */
.menu-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--forest);
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--header-border);
  background: var(--header-cream);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-inner {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  padding: 0.5rem 0;
}

.mobile-cta {
  padding: 1rem 1.5rem;
  background: var(--sage-light);
  border-top: 1px solid var(--header-border);
}

.mobile-cta .btn-primary {
  display: block;
  text-align: center;
  width: 100%;
  justify-content: center;
}

/* Flash messages */
.flash {
  padding: 1rem 1.5rem;
  background: var(--sage-20);
  border: 1px solid var(--sage-30);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.flash p {
  margin: 0;
  font-weight: 500;
  color: var(--forest);
}

.flash p + p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--moss);
  font-weight: normal;
}

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-weight: 500;
  text-decoration: none;
}

.link-arrow:hover {
  text-decoration: underline;
}

.link-arrow svg {
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
