/*
Theme Name: Valore Taxaties
Theme URI: https://valoretaxaties.nl
Author: Valore Taxaties
Author URI: https://valoretaxaties.nl
Description: Custom WordPress thema voor Valore Taxaties — erkende schadetaxateurs in Swolgen, Limburg.
Version: 1.0.0
License: Proprietary
Text Domain: valore-taxaties
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #0d0d0c;
  --cream-dark: #1c1c1a;
  --ink: #ede0c4;
  --ink-light: #8a7d60;
  --olive: #c9a84c;
  --olive-light: #dfc06a;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #0d0d0c;
  color: #ede0c4;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  background: rgba(8,8,7,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--olive); }

.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--olive);
  border-radius: 2px;
  color: var(--olive);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover { background: var(--olive); color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,26,24,0.72) 0%,
    rgba(26,26,24,0.35) 55%,
    rgba(26,26,24,0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 80px 80px;
  max-width: 680px;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250,249,246,0.78);
  max-width: 440px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--olive);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.9s forwards;
  width: fit-content;
}

.hero-btn:hover { background: var(--olive-light); }

.hero-dots {
  position: absolute;
  bottom: 36px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(250,249,246,0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.dot.active {
  background: var(--gold-light);
  width: 22px;
  border-radius: 3px;
}

/* ── STATS BAND ── */
.stats-band {
  background: #090908;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  max-width: 220px;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.14);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  margin-top: 4px;
}

/* ── SECTION SHARED ── */
section { padding: 100px 80px; }

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 80px;
}

.about-text .section-title { margin-bottom: 28px; }

.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.about-text p strong {
  color: var(--ink);
  font-weight: 500;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: linear-gradient(135deg,#c9a84c,#ddb849);
  color: #0a0a09;
  padding: 20px 28px;
  border-radius: 2px;
}

.about-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.about-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── DIENSTEN ── */
.diensten {
  background: #141412;
  padding: 100px 80px;
}

.diensten-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.diensten-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(201,168,76,0.1);
}

.dienst-card {
  background: #0d0d0c;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
  border: 1px solid rgba(201,168,76,0.08);
}

.dienst-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.dienst-card:hover::before { height: 100%; }
.dienst-card:hover { background: #1c1c1a; }

.dienst-icon {
  width: 44px; height: 44px;
  margin-bottom: 28px;
  opacity: 0.7;
}

.dienst-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--ink);
}

.dienst-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ink-light);
}

.dienst-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.06);
  line-height: 1;
}

/* ── WERKWIJZE ── */
.werkwijze {
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.werkwijze-header { margin-bottom: 64px; }

.stappen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

.stap {
  padding: 40px 32px;
  background: #1c1c1a;
  position: relative;
}

.stap-nr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}

.stap h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}

.stap p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ink-light);
}

/* ── WAAROM ── */
.waarom {
  background: #060605;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.waarom::before {
  content: 'Valore';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22vw;
  font-weight: 300;
  color: rgba(201,168,76,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
}

.waarom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.waarom-left .section-eyebrow { color: var(--gold-light); }
.waarom-left .section-title { color: var(--white); margin-bottom: 32px; }

.waarom-left p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(250,249,246,0.6);
  margin-bottom: 40px;
}

.waarom-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,176,122,0.3);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}

.waarom-link:hover { border-color: var(--gold-light); }

.waarom-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.waarom-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  transition: background 0.25s;
}

.waarom-item:hover { background: rgba(255,255,255,0.06); }

.waarom-item-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.waarom-item-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }

.waarom-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 6px;
}

.waarom-item p {
  font-size: 0.84rem;
  color: rgba(250,249,246,0.5);
  line-height: 1.65;
  margin: 0;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 80px;
  background: #0d0d0c;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left .section-title { margin-bottom: 28px; }

.contact-left p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #8a7d60;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 40px; height: 40px;
  background: #c9a84c;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 1.8; }

.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 3px;
}

.contact-item-text span {
  font-size: 0.95rem;
  color: #ede0c4;
}

/* ── CONTACT FORM (CF7 overrides) ── */
.contact-form {
  background: #141412;
  border: 1px solid rgba(201,168,76,0.18);
  padding: 48px;
  border-radius: 2px;
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 32px;
  color: #ede0c4;
}

.contact-form .wpcf7 { width: 100%; }

.contact-form .wpcf7-form p { margin-bottom: 20px; }

.contact-form .wpcf7-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: #090908;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #ede0c4;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form .wpcf7-form input[type="text"]:focus,
.contact-form .wpcf7-form input[type="email"]:focus,
.contact-form .wpcf7-form input[type="tel"]:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .wpcf7-form textarea:focus {
  border-color: var(--gold);
}

.contact-form .wpcf7-form textarea { resize: vertical; min-height: 100px; }

.contact-form .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 14px;
  background: var(--olive);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.contact-form .wpcf7-form input[type="submit"]:hover { background: var(--olive-light); }

.wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #e07b7b;
  margin-top: 4px;
  display: block;
}

.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 0.85rem;
}

.wpcf7-mail-sent-ok {
  border: 1px solid rgba(201,168,76,0.4) !important;
  background: rgba(201,168,76,0.08) !important;
  color: var(--gold-light) !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  border: 1px solid rgba(224,123,123,0.4) !important;
  background: rgba(224,123,123,0.06) !important;
  color: #e07b7b !important;
}

/* ── TEAM ── */
.team {
  background: #141412;
  padding: 80px 80px;
}

.team-inner { max-width: 1200px; margin: 0 auto; }
.team-header { margin-bottom: 56px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 340px);
  gap: 32px;
}

.team-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: #0d0d0c;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 2px;
  transition: border-color 0.25s;
}

.team-card:hover { border-color: rgba(201,168,76,0.35); }

.team-photo {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  filter: grayscale(20%) contrast(1.05);
  border: 2px solid rgba(201,168,76,0.25);
}

.team-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.team-info .team-role {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.team-info p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--ink-light);
}

.team-contact-links { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; }

.team-contact-links a {
  font-size: 0.8rem;
  color: rgba(201,168,76,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.team-contact-links a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #060605;
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-logo span { color: var(--gold); }

.footer-center {
  font-size: 0.78rem;
  color: rgba(250,249,246,0.3);
  text-align: center;
}

.footer-kvk {
  font-size: 0.75rem;
  color: rgba(250,249,246,0.25);
  text-align: right;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: #c9a84c;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(6,6,5,0.99);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  z-index: 99;
  flex-direction: column;
  padding: 16px 0 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu .mobile-cta {
  margin: 16px 28px 0;
  padding: 12px 20px;
  background: var(--olive);
  color: var(--white);
  text-align: center;
  border-radius: 2px;
  border-bottom: none;
}

/* ── TABLET ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
  .about-visual { order: -1; }
  .about-badge { bottom: -16px; left: 16px; }

  .diensten { padding: 64px 24px; }
  .diensten-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .diensten-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  section { padding: 64px 24px; }
  .werkwijze { padding: 64px 24px; }
  .werkwijze-header { margin-bottom: 40px; }
  .stappen { grid-template-columns: 1fr 1fr; }

  .waarom { padding: 64px 24px; }
  .waarom-inner { grid-template-columns: 1fr; gap: 40px; }

  .contact { padding: 64px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }

  footer { flex-direction: column; gap: 16px; text-align: center; padding: 36px 24px; }
  .footer-kvk { text-align: center; }

  .hero-content { padding: 80px 28px 60px; }
  .hero-dots { right: 28px; bottom: 28px; }

  .team { padding: 64px 24px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .stats-band { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 12px; border-right: 1px solid rgba(201,168,76,0.14); border-bottom: 1px solid rgba(201,168,76,0.14); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-bottom: none; }
  .stat-item:nth-child(5) { grid-column: span 2; border-right: none; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.65rem; }

  .diensten-grid { grid-template-columns: 1fr; }
  .dienst-card { padding: 32px 24px; }

  .stappen { grid-template-columns: 1fr; }
  .stap { padding: 28px 24px; }

  .about-badge { bottom: -12px; left: 12px; padding: 14px 20px; }
  .about-badge strong { font-size: 1.4rem; }

  .waarom-item { padding: 20px; gap: 14px; }

  .contact-form .wpcf7-form .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 80px 24px 56px; }
  .hero-sub { font-size: 0.88rem; }
  .hero-btn { padding: 12px 28px; font-size: 0.75rem; }

  .about, .diensten, .werkwijze, .waarom, .contact { padding: 56px 20px; }
  .werkwijze-header { margin-bottom: 32px; }
  .diensten-header { margin-bottom: 32px; }

  .team { padding: 56px 20px; }
  .team-card { flex-direction: column; padding: 24px 20px; }
}
