/* BKCHR Accountants & Legal Professionals — stylesheet */

:root {
  --groen: #006233;
  --groen-hover: #0b7a45;
  --groen-donker: #00301f;
  --inkt: #1b2620;
  --tekst: #2c3a33;
  --tekst-licht: #5b6a62;
  --creme: #f7f4ed;
  --wit: #ffffff;
  --lijn: #e4dfd3;
  --schaduw: 0 2px 12px rgba(27, 38, 32, 0.08);
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--tekst);
  background: var(--wit);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--groen); text-decoration: none; }
a:hover { color: var(--groen-hover); }

h1, h2, h3 {
  color: var(--inkt);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 0.6em; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); margin-bottom: 0.7em; }
h3 { font-size: 1.15rem; margin-bottom: 0.5em; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wit);
  border-bottom: 1px solid var(--lijn);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 34px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: var(--inkt);
  font-weight: 600;
  font-size: 0.98rem;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--groen); }
.main-nav a.btn-primary { color: var(--wit); }
.main-nav a.btn-primary:hover { color: var(--wit); background: var(--groen-hover); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--lijn);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--inkt);
  margin: 5px 0;
}

/* dropdown diensten */
.nav-item { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  min-width: 300px;
  padding: 8px;
  list-style: none;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.dropdown a:hover { background: var(--creme); }

/* ---------- Knoppen ---------- */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--groen); color: var(--wit); }
.btn-primary:hover { background: var(--groen-hover); color: var(--wit); }
.btn-outline { border-color: var(--inkt); color: var(--inkt); background: transparent; }
.btn-outline:hover { background: var(--inkt); color: var(--wit); }
.btn-wit { background: var(--wit); color: var(--groen-donker); }
.btn-wit:hover { background: var(--creme); color: var(--groen-donker); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.cta-tel {
  font-weight: 700;
  color: var(--inkt);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Hero ---------- */

.hero { background: var(--creme); padding: 56px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: center;
}
.hero-grid img { border-radius: var(--radius); box-shadow: var(--schaduw); }
.kicker {
  display: inline-block;
  color: var(--groen);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.hero .intro { font-size: 1.12rem; color: var(--tekst); max-width: 56ch; }

/* ---------- Secties ---------- */

.sectie { padding: 64px 0; }
.sectie-creme { background: var(--creme); }
.sectie-kop { max-width: 62ch; margin-bottom: 36px; }

.usp-lijst {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px 28px;
  margin: 22px 0;
}
.usp-lijst li { padding-left: 30px; position: relative; font-weight: 600; color: var(--inkt); }
.usp-lijst li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--groen);
  font-weight: 800;
}

.kaarten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.kaart h3 a { color: var(--inkt); }
.kaart h3 a:hover { color: var(--groen); }
.kaart p { color: var(--tekst); flex-grow: 1; }
.kaart .meer { font-weight: 700; margin-top: 14px; }

.twee-kolommen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.twee-kolommen img { border-radius: var(--radius); box-shadow: var(--schaduw); }

blockquote {
  border-left: 4px solid var(--groen);
  background: var(--creme);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--inkt);
  margin: 28px 0;
}

.band-donker {
  background: var(--groen-donker);
  color: #e8efe9;
  padding: 56px 0;
}
.band-donker h2 { color: var(--wit); }
.band-donker p { color: #cfdcd2; max-width: 60ch; }
.band-donker a { color: #cfe9d8; }
.band-donker .cta-tel { color: var(--wit); }
.band-donker a.btn-wit { color: var(--groen-donker); }
.band-donker a.btn-wit:hover { color: var(--groen-donker); }

/* praktijkvoorbeeld-blokken */
.voorbeeld {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-left: 4px solid var(--groen);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 18px 0;
}
.voorbeeld strong { color: var(--inkt); }

/* FAQ */
.faq details {
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--wit);
}
.faq summary { font-weight: 700; color: var(--inkt); cursor: pointer; }
.faq details p { margin-top: 10px; color: var(--tekst); }

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

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}
.contact-info p { margin-bottom: 0.6em; }
.contact-info strong { color: var(--inkt); }

form label {
  display: block;
  font-weight: 700;
  color: var(--inkt);
  margin: 18px 0 6px;
  font-size: 0.95rem;
}
form input, form textarea, form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lijn);
  border-radius: 8px;
  font: inherit;
  color: var(--tekst);
  background: var(--wit);
}
form input:focus, form textarea:focus, form select:focus {
  outline: 2px solid var(--groen);
  border-color: var(--groen);
}
form button { margin-top: 24px; }
.form-status { margin-top: 14px; font-weight: 600; }

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

.site-footer {
  background: var(--inkt);
  color: #c4cec8;
  padding: 56px 0 32px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 36px;
  margin-bottom: 36px;
}
.site-footer h4 {
  color: var(--wit);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #c4cec8; }
.site-footer a:hover { color: var(--wit); }
.footer-logo img { height: 30px; width: auto; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #93a19a;
}

/* ---------- Sticky mobiele belbalk ---------- */

.mobiele-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--wit);
  border-top: 1px solid var(--lijn);
  box-shadow: 0 -2px 12px rgba(27, 38, 32, 0.12);
}
.mobiele-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  font-weight: 700;
  font-size: 0.98rem;
}
.mobiele-cta .bel { color: var(--wit); background: var(--groen); }
.mobiele-cta .whatsapp { color: var(--groen-donker); background: #dff0e5; }

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

@media (max-width: 860px) {
  .hero-grid, .twee-kolommen, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-grid > div:first-child { order: 1; }
  .hero-grid img { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wit);
    border-bottom: 1px solid var(--lijn);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    box-shadow: var(--schaduw);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--creme); }
  .main-nav .btn { margin-top: 14px; text-align: center; border: none; }
  .dropdown {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .dropdown a { border-bottom: none; padding: 8px 0; }

  .mobiele-cta { display: flex; }
  body { padding-bottom: 54px; }
  .sectie { padding: 48px 0; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
