/* =========================================================
   BRAND KIT — dedrum.studio
   ========================================================= */
:root{
  --bg: #F7F4EE;                 /* eggshell */
  --ink: #101010;

  --card: rgba(255,255,255,.92);
  --cardSoft: rgba(255,255,255,.86);

  --brand: #5B7553;              /* groen (menu) */

  --accent-red: #c44648;         /* rood (footer) */
  --accent-teal: #186d75;
  --accent-yellow: #f8ce6b;
  --accent-sage: #79a0a0;

  --ink-80: rgba(16,16,16,.80);
  --ink-60: rgba(16,16,16,.60);
  --ink-35: rgba(16,16,16,.35);
  --ink-18: rgba(16,16,16,.18);

  --brand-soft: rgba(91,117,83,.16);

  --maxw: 1040px;
  --pad: 18px;
  --pad-mobile: 14px;

  --radius: 18px;
  --pill: 999px;

  --border: 2px solid var(--ink);
  --shadow: 7px 7px 0 rgba(16,16,16,.12);
  --shadow-sm: 4px 4px 0 rgba(16,16,16,.10);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --card-pad: 18px;
  --card-gap: 12px;
  --icon-pill: 42px;
}

/* =========================================================
   BASE
   ========================================================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 750;
  letter-spacing: -0.01em;
}

.wrap{
  max-width: var(--maxw);
  margin:0 auto;
  padding: var(--pad);
}
@media (max-width:760px){
  .wrap{ padding: var(--pad-mobile); }
}

a{ color: inherit; text-decoration:none; }
a:visited{ color: inherit; }
a:hover{ color: inherit; }
a:active{ color: inherit; }
a:focus-visible{
  outline: 3px solid rgba(91,117,83,.35);
  outline-offset: 3px;
  border-radius: 10px;
}

.ms{
  font-family:"Material Symbols Rounded";
  font-variation-settings:"FILL" 0,"wght" 600,"GRAD" 0,"opsz" 24;
  font-size: 20px;
  line-height: 1;
  display:inline-block;
}

.sub{
  margin: 10px 0 0;
  line-height: 1.7;
  color: var(--ink-80);
  font-weight: 750;
  max-width: 86ch;
}

.pageTitle{
  margin:0;
  font-weight: 950;
  letter-spacing: -0.05em;
  font-size: clamp(1.6rem, 4.6vw, 2.2rem);
  display:flex;
  align-items:center;
  gap:10px;
}

h1{
  margin:0;
  font-size: clamp(1.9rem, 5.2vw, 2.7rem);
  letter-spacing:-0.05em;
  font-weight: 950;
}

/* =========================================================
   TOPBAR + NAV (ALTIJD GROEN)
   ========================================================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0 0;
}

.topbarInner{
  background: var(--brand);                 /* groen */
  border: var(--border);
  border-radius: var(--pill);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.95);
}

.logo{
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
  padding: 8px 12px;
  border-radius: var(--pill);
  color: rgba(255,255,255,.96);
}
.dotBrand{ color: var(--accent-yellow); }   /* dot op groen = mooi contrast */

.nav{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

.navLink, .navButton{
  padding: 10px 12px;
  border-radius: var(--pill);
  border: var(--border);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  font-weight: 950;
  color: var(--ink);
}

.navButton{
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
}

.navLink:hover, .navButton:hover{
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0 rgba(16,16,16,.10);
}

/* Mobile menu */
.menuToggle{
  display:none;
  border: var(--border);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  border-radius: var(--pill);
  padding: 10px 12px;
  cursor: pointer;
  color: var(--ink);
}
.menuToggle:active{
  transform: translate(1px,1px);
  box-shadow: 2px 2px 0 rgba(16,16,16,.10);
}

.menuBackdrop{
  position: fixed;
  inset:0;
  background: rgba(16,16,16,.35);
  backdrop-filter: blur(6px);
  z-index: 50;
}

.mobileMenu{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 14px;
  width: min(520px, calc(100% - 22px));
  z-index: 60;
  border: var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.94);
  overflow: hidden;
}

.mobileMenuTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 2px solid rgba(16,16,16,.12);
  background: rgba(91,117,83,.18);
}

.mobileBrand{
  font-weight: 950;
  letter-spacing:-0.04em;
  font-size: 1.15rem;
}

.menuClose{
  border: var(--border);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  border-radius: var(--pill);
  padding: 10px 12px;
  cursor: pointer;
  color: var(--ink);
}

.mobileMenuLinks{
  padding: 12px;
  display:grid;
  gap: 10px;
}

.mobileLink{
  display:flex;
  align-items:center;
  gap: 10px;
  border: var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  padding: 12px 12px;
  font-weight: 950;
  color: var(--ink);
}

.mobileCTA{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border: var(--border);
  border-radius: 16px;
  background: rgba(91,117,83,.18);
  box-shadow: var(--shadow-sm);
  padding: 14px 12px;
  font-weight: 950;
  color: var(--ink);
}

@media (max-width: 760px){
  .navDesktop{ display:none; }
  .menuToggle{ display:inline-flex; align-items:center; justify-content:center; }
  .topbar{ padding-top: 10px; }
  .topbarInner{ border-radius: 22px; padding: 10px 12px; }
  .logo{ font-size: 1.25rem; padding: 10px 10px; }
}

/* =========================================================
   UNIVERSAL CARD SYSTEM
   ========================================================= */
.card{
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--card-pad);
  overflow: hidden;
  color: var(--ink);
}

.cardSoft{ background: var(--cardSoft); }

.cardAccentRed{ background: var(--accent-red); color: rgba(255,255,255,.98); }
.cardAccentTeal{ background: var(--accent-teal); color: rgba(255,255,255,.98); }
.cardAccentSage{ background: var(--accent-sage); color: rgba(255,255,255,.98); }
.cardAccentYellow{ background: var(--accent-yellow); color: var(--ink); }

.cardAccentRed .sub,
.cardAccentTeal .sub,
.cardAccentSage .sub{ color: rgba(255,255,255,.88); }
.cardAccentYellow .sub{ color: rgba(16,16,16,.80); }

.cardHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--card-gap);
  flex-wrap: wrap;
}
.cardHeaderLeft{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.iconPill{
  width: var(--icon-pill);
  height: var(--icon-pill);
  border-radius: var(--pill);
  border: var(--border);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow-sm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
  color: var(--ink);
}

.cardTitle{
  margin:0;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing:-0.03em;
  min-width: 0;
}

.cardActions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.pillButton{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--pill);
  border: var(--border);
  background: rgba(91,117,83,.18);
  box-shadow: var(--shadow-sm);
  font-weight: 950;
  color: var(--ink);
}
.pillButton.white{ background: rgba(255,255,255,.92); }

.cardAccentRed .pillButton,
.cardAccentTeal .pillButton,
.cardAccentSage .pillButton{
  background: rgba(255,255,255,.92);
  color: var(--ink);
}

.pillButton:hover{
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0 rgba(16,16,16,.10);
}
.pillButton:active{
  transform: translate(1px,1px);
  box-shadow: 2px 2px 0 rgba(16,16,16,.10);
}

/* =========================================================
   GRID
   ========================================================= */
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}
@media (min-width: 900px){
  .grid{ grid-template-columns: 1fr 1fr; }
  .cardWide{ grid-column: 1 / -1; }
}

/* =========================================================
   HERO (homepage) — blijft zoals je had
   ========================================================= */
.hero{
  margin-top: 18px;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--card);
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 340px;
}
.heroLeft{
  padding: 22px;
  background: rgba(91,117,83,.14);
  border-right: var(--border);
}
.heroRight{
  padding: 18px;
  background: var(--cardSoft);
  display:flex;
  align-items:center;
  justify-content:center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--pill);
  border: var(--border);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  margin: 0 0 12px;
  font-weight: 950;
  color: var(--ink);
}

.heroActions{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}

.microRow{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.microPill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--pill);
  border: 2px solid var(--ink-18);
  background: rgba(255,255,255,.65);
  font-weight: 900;
  color: rgba(16,16,16,.82);
}

/* =========================================================
   FOOTER — ALTIJD ROOD
   ========================================================= */
.siteFooter{
  margin-top: 18px;
  padding: 12px 0 2px;
}

.footerShell{
  background: var(--accent-red);           /* rood */
  border: var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.96);
}

.footerTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,.20);
}

.footerBrand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
}

.footerBrandPill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--pill);
  border: 2px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  box-shadow: var(--shadow-sm);
  color: rgba(255,255,255,.96);
}

.footerGrid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

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

.footerCol{
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  padding: 12px;
}

.footerColTitle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,.18);
  margin-bottom: 10px;
  color: rgba(255,255,255,.96);
}

.footerList{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.footerItemLink{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  box-shadow: var(--shadow-sm);
  padding: 12px 12px;
  font-weight: 950;
  color: rgba(255,255,255,.96);
}

.footerItemLink:hover{
  transform: translate(-1px,-1px);
  box-shadow: 5px 5px 0 rgba(16,16,16,.12);
}

.footerItemLeft{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.footerIconPill{
  width: 38px;
  height: 38px;
  border-radius: var(--pill);
  border: 2px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.16);
  box-shadow: var(--shadow-sm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
  color: rgba(255,255,255,.96);
}

.footerMeta{
  display:flex;
  align-items:center;
  gap: 8px;
  color: rgba(255,255,255,.78);
  font-weight: 900;
}

.footerBottomNote{
  margin-top: 12px;
  color: rgba(255,255,255,.85);
  font-weight: 850;
  line-height: 1.5;
  text-align:center;
}

/* =========================================================
   TARIEVEN — FAQ DETAILS (werkt op alle browsers)
   ========================================================= */
.faqList{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}

.faqItem{
  border: var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faqItem summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.faqItem summary::-webkit-details-marker{ display:none; }

.faqItem summary .chev{
  width: 38px;
  height: 38px;
  border-radius: var(--pill);
  border: var(--border);
  background: rgba(91,117,83,.16);
  box-shadow: var(--shadow-sm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.faqItem[open] summary .chev{
  background: rgba(91,117,83,.24);
}

.faqBody{
  padding: 0 14px 14px;
  color: var(--ink-80);
  font-weight: 750;
  line-height: 1.75;
}

.priceRow{
  display:flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.priceMain{
  font-size: clamp(1.8rem, 4.2vw, 2.2rem);
  font-weight: 950;
  letter-spacing:-0.04em;
}

.priceNote{
  color: rgba(16,16,16,.70);
  font-weight: 850;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .pillButton:hover, .navLink:hover, .navButton:hover, .footerItemLink:hover{ transform:none; }
}