/* =========================================================
   Lotte Boersma – VA voor de Zorg
   Design system: kleuren, typografie, layout
   ========================================================= */

:root {
  --beige: #FAFAF8;
  --brown: #5c4033;
  --brown-dark: #4a3329;
  --soft-yellow: #efe2bb;
  --soft-yellow-dark: #e4d29f;
  --text-dark: #33302c;
  --text-on-brown: #f6f1e6;
  --white: #ffffff;
  --max-width: 1140px;
  --radius: 14px;
  --font-heading: 'Recoleta', 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--beige);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 0.5em 0;
  font-weight: 600;
  color: var(--brown-dark);
}

section h2, section h3 {
  color: var(--brown-dark);
}

.section--brown h1,
.section--brown h2,
.section--brown h3 {
  color: #eef4f8;
}

p {
  margin: 0 0 1em 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--soft-yellow);
  color: var(--brown);
  font-weight: 600;
  font-family: var(--font-body);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--soft-yellow-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid transparent;
  color: var(--brown);
}

/* Uitzondering: de knop in de hero-foto op Home behoudt de bruine lijn */
.hero-content .btn {
  border-color: var(--brown);
}

.btn--outline:hover {
  background: var(--soft-yellow);
  color: var(--brown);
}

/* Op bruine vlakken worden knoppen wit/blauwig i.p.v. geel */
.section--brown .btn,
.section--brown .btn--outline {
  background: #eef4f8;
  border-color: #eef4f8;
  color: var(--brown);
}

.section--brown .btn:hover,
.section--brown .btn--outline:hover {
  background: #d9e8f2;
  border-color: #d9e8f2;
  color: var(--brown);
}

.btn--dark {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--text-on-brown);
}

.btn--dark:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--beige);
  border-bottom: 1px solid rgba(92, 64, 51, 0.12);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0;
  line-height: 1.2;
}

.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.7;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brown);
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--brown);
  display: block;
}

/* ---------- Sections ---------- */

section {
  padding: 88px 0;
}

.section--beige {
  background: var(--beige);
  color: var(--text-dark);
}

/* Bruin vlak dat pas bij de helft van de foto begint (verticale knip) en doorloopt tot de rechterrand */
.diensten-photo-split {
  position: relative;
  z-index: 0;
}

.diensten-photo-split::before {
  content: "";
  position: absolute;
  top: -88px;
  bottom: -88px;
  left: calc(17% + 2px);
  right: -100vw;
  background: #594136;
  z-index: -1;
}

.diensten-photo-split .intro-text {
  color: var(--text-on-brown);
}

.diensten-photo-split .intro-text .eyebrow {
  color: var(--soft-yellow);
}

.diensten-photo-split .intro-text p {
  color: var(--text-on-brown);
}

.diensten-photo-split .intro-text a {
  color: var(--soft-yellow);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .diensten-photo-split::before {
    left: 0;
  }
}

.section--brown {
  background: #594136;
  color: var(--text-on-brown);
}

.section--brown p {
  color: var(--text-on-brown);
}

.section--tight {
  padding: 56px 0;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
  display: block;
}

.section--brown .eyebrow {
  color: var(--soft-yellow);
}

/* ---------- Hero (foto met tekst erin verwerkt) ---------- */

.hero {
  padding: 0;
}

.hero-media {
  position: relative;
  min-height: 620px;
  height: 46vw;
  max-height: 780px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(51, 48, 44, 0.85) 0%, rgba(51, 48, 44, 0.5) 38%, rgba(51, 48, 44, 0) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  padding: 48px 24px 64px;
  color: var(--text-on-brown);
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-on-brown);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.hero-tagline-accent {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1em;
  animation: heroAccentSpring 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

@keyframes heroAccentSpring {
  0% {
    color: var(--text-on-brown);
    font-family: var(--font-body);
    font-size: 1em;
    transform: translateY(10px);
    opacity: 0;
  }
  45% {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1em;
    transform: translateY(-5px);
    opacity: 1;
  }
  70% {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1em;
    transform: translateY(1px);
  }
  100% {
    color: var(--text-on-brown);
    font-family: var(--font-body);
    font-size: 1em;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tagline-accent {
    animation: none;
  }
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  margin-bottom: 28px;
  color: var(--text-on-brown);
}

/* Headliner direct onder de hero-foto */

.hero-headliner {
  padding: 56px 0;
}

.hero-headliner-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  color: var(--brown);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.35;
}

/* ---------- Intro (photo + text) ---------- */

.intro-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.intro-split img {
  box-shadow: 0 20px 40px -18px rgba(92, 64, 51, 0.3);
}

.intro-photo--compact {
  width: 85%;
  margin: 0 auto;
}

.zorgervaring-photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -18px rgba(92, 64, 51, 0.3);
  margin-top: 28px;
}

/* Pijl onder de lead-tekst op de taken-detailpagina's, wijzend naar de taken hieronder */
.hero-arrow-down {
  display: inline-block;
  margin: 20px auto 0;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--brown);
  text-align: center;
  width: 100%;
  animation: hero-arrow-bounce 1.6s ease-in-out infinite;
}

@keyframes hero-arrow-bounce {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(8px) rotate(4deg); }
}

/* ---------- Diensten kolommen ---------- */

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.dienst-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 12px 30px -18px rgba(92, 64, 51, 0.25);
  min-width: 0;
}

.dienst-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--soft-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--brown);
}

.dienst-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  overflow-wrap: break-word;
  word-break: break-word;
}

#aanbod .dienst-card h3 {
  display: inline-block;
  background: #eef4f8;
  border-left: 3px solid var(--soft-yellow);
  border-radius: 0 4px 4px 0;
  padding: 8px 14px;
}

.dienst-card-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.7;
  margin-bottom: 2px;
}

.dienst-card ul {
  margin: 0;
  padding-left: 20px;
}

.dienst-card li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.dienst-card p {
  font-size: 0.95rem;
}

/* Zorgervaring die ik meeneem in mijn werk (Over mij): wit/blauwige vlakken met volledig doorgetrokken gele lijn onderaan */
.diensten-grid--zorgervaring .dienst-card {
  background: #eef4f8;
  border-bottom: 4px solid var(--soft-yellow);
}

/* Vier manieren waarop ik je ontzorg (Home): wit/blauwige vlakken met sierlijke gele streep onderaan, klikbaar naar Diensten */
.diensten-grid--home .dienst-card {
  background: #eef4f8;
  position: relative;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.diensten-grid--home .dienst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -16px rgba(92, 64, 51, 0.35);
}

.diensten-grid--home .dienst-card-cta {
  margin-top: auto;
  padding-top: 18px;
}

/* Dienst-kaarten die doorlinken naar een eigen detailpagina */
.dienst-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dienst-card--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -16px rgba(92, 64, 51, 0.35);
}

/* Taken-detailpagina's (Office management, Communicatie, Vormgeving, Automatisering & AI): wit/blauwige vakjes met geel lijntje rechtsboven */
.diensten-grid--taken .dienst-card {
  background: #eef4f8;
  position: relative;
}

.diensten-grid--taken .dienst-card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: var(--soft-yellow);
}

/* Duidelijk zichtbare "knop"-tekst onderaan klikbare dienst-kaarten */
.dienst-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}

.dienst-card-cta::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

a.dienst-card:hover .dienst-card-cta::after,
.dienst-card--link:hover .dienst-card-cta::after {
  transform: translateX(4px);
}

.diensten-grid--home .dienst-card::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 24px;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: var(--soft-yellow);
}

/* ---------- Missiebanner ---------- */

.missie-banner {
  text-align: center;
}

.missie-banner blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 820px;
  margin: 0 auto;
  color: #eef4f8;
  line-height: 1.35;
}

/* ---------- Testimonials ---------- */

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px -18px rgba(92, 64, 51, 0.2);
}

.testimonial-card p.quote {
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
}

.testimonial-placeholder {
  background: var(--white);
  border: 2px dashed rgba(92, 64, 51, 0.25);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--text-dark);
  opacity: 0.75;
  margin-top: 40px;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 20px;
}

/* ---------- Page header (interior pages) ---------- */

.page-hero {
  padding: 64px 0 56px;
  text-align: left;
}

.text-highlight {
  background: #eddaa0;
  padding: 2px 6px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  max-width: 780px;
}

/* Over mij, Diensten, Zorgervaring, Contact, Blog: headline 25% kleiner dan de standaard page-hero h1 */
.page-hero h1.h1--compact {
  font-size: clamp(1.425rem, 2.25vw, 1.95rem);
}

.page-hero p.lead {
  max-width: 680px;
  font-size: 1.1rem;
}

/* ---------- Lists with checks ---------- */

.check-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  padding-left: 32px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brown);
  font-weight: 700;
}

.section--brown .check-list li::before {
  color: var(--soft-yellow);
}

.cross-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  display: grid;
  gap: 14px;
  opacity: 0.75;
}

.cross-list li {
  padding-left: 32px;
  position: relative;
}

.cross-list li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-dark);
  font-weight: 700;
}

.match-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

/* ---------- Tarief box ---------- */

.tarief-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 30px -18px rgba(92, 64, 51, 0.25);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: tariefBoxIn 0.7s ease-out both;
}

.tarief-box--accent {
  background: var(--soft-yellow);
  transition: background 0.2s ease;
}

.tarief-box--accent:hover {
  background: #eddaa0;
}

.tarief-box .bedrag {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--brown);
}

@keyframes tariefBoxIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tarief-box {
    animation: none;
  }
}

/* ---------- Booking box ---------- */

.booking-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 30px -18px rgba(92, 64, 51, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.booking-box h2 {
  margin-bottom: 8px;
}

.booking-box p {
  margin: 0;
  max-width: 44ch;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.contact-info-list li {
  display: flex;
  gap: 12px;
  font-size: 1rem;
}

.contact-info-list .label {
  font-weight: 600;
  color: var(--brown);
  min-width: 90px;
}

form.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(92, 64, 51, 0.25);
  background: var(--white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brown);
}

.form-note {
  font-size: 0.85rem;
  opacity: 0.75;
}

#form-status {
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.2em;
}

#form-status.success {
  color: #3a6b3e;
}

/* ---------- Blog ---------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 30px -18px rgba(92, 64, 51, 0.25);
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 24px;
}

.blog-card .eyebrow {
  margin-bottom: 8px;
}

.blog-card h2 {
  font-size: 1.4rem;
}

.blog-card p {
  flex-grow: 1;
}

.blog-card .btn {
  justify-self: start;
  margin-top: 12px;
}

article.blog-article {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 32px;
}

article.blog-article h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

article.blog-article h3 {
  margin-top: 1.6em;
}

article.blog-article ul {
  padding-left: 22px;
}

article.blog-article ul li {
  margin-bottom: 8px;
}

.article-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--brown);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.article-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(92, 64, 51, 0.2);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--beige);
  color: var(--text-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-grid h3 {
  color: var(--brown-dark);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.site-footer .logo {
  color: var(--brown);
}

.site-footer .logo span {
  color: var(--text-dark);
  opacity: 0.8;
}

.footer-tagline-bar {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 18px;
  background: var(--soft-yellow);
  color: var(--brown);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

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

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-social-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: currentColor;
  opacity: 0.75;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(92, 64, 51, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .intro-split,
  .contact-grid,
  .match-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-content {
    max-width: 100%;
    padding: 56px 20px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(51, 48, 44, 0.88) 0%, rgba(51, 48, 44, 0.55) 45%, rgba(51, 48, 44, 0) 75%);
  }

  .intro-split .intro-image {
    order: -1;
  }

  .intro-photo--compact {
    width: 100%;
  }

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

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

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

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--beige);
    border-bottom: 1px solid rgba(92, 64, 51, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav.is-open {
    max-height: 320px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }

  .main-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(92, 64, 51, 0.08);
  }

  .nav-toggle {
    display: flex;
  }

  section {
    padding: 56px 0;
  }

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

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

  .tarief-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
