/* RijschoolWijsOpWeg — gedeelde stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #111111;
  --dark: #1a1a1a;
  --dark-mid: #2a2a2a;
  --gray: #6b7280;
  --gray-light: #e5e5e5;
  --off-white: #f9f8f6;
  --white: #ffffff;
  --gold: #b8965a;
  --gold-light: #cba96e;
  --gold-pale: #f5ead8;
  --whatsapp: #1faa53;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }
section { scroll-margin-top: 70px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
img { max-width: 100%; height: auto; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 5%;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: var(--white); letter-spacing: 0.02em; z-index: 1001; text-decoration: none; line-height: 1; }
.nav-logo span { color: var(--gold); }
.nav-logo small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.42em; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.nav-links { display: flex; gap: 1.7rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; letter-spacing: 0.03em; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 0.8rem; }
.nav-cta { background: var(--gold); color: var(--black); font-weight: 600; border: none; border-radius: 3px; padding: 0.55rem 1.2rem; font-size: 0.85rem; cursor: pointer; transition: background 0.2s; text-decoration: none; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.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; inset: 0; z-index: 999; background: var(--black); flex-direction: column; align-items: center; justify-content: center; gap: 1.9rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); text-decoration: none; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.5rem; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta { background: var(--gold); color: var(--black) !important; border-radius: 3px; padding: 0.9rem 2.2rem; font-family: 'DM Sans', sans-serif !important; font-size: 1rem !important; font-weight: 600; margin-top: 0.4rem; }

/* ── KNOPPEN ── */
.btn-gold, .btn-wa, .btn-line {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
  border-radius: 3px; padding: 0.85rem 1.6rem; text-decoration: none;
  display: inline-block; white-space: nowrap; transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent; cursor: pointer; text-align: center;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); }
.btn-wa { background: var(--whatsapp); color: var(--white); }
.btn-wa:hover { background: #23c05f; }
.btn-line { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-line:hover { background: var(--gold); color: var(--black); }
.btn-line.dark-line { margin-top: 2rem; }
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* ── HERO (home) ── */
.hero {
  background: var(--black);
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: 3rem; align-items: center;
  padding: 8.5rem 5% 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(184,150,90,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.6rem;
}
.hero-badge::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 700; line-height: 1.13;
  color: var(--white); margin-bottom: 1.3rem; letter-spacing: -0.01em;
}
.hero h1 em { color: var(--gold); }
.hero p { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 540px; }
.hero-usps { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; }
.hero-usps li { color: rgba(255,255,255,0.75); font-size: 0.92rem; display: flex; gap: 0.6rem; align-items: baseline; }
.hero-usps li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.hero-panel { position: relative; z-index: 2; }

/* Terugbelkaart */
.callback-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--gold);
  border-radius: 4px; padding: 1.8rem;
}
.callback-card h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: var(--white); margin-bottom: 0.4rem; }
.callback-card > p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1.1rem; }
.callback-form { display: flex; flex-direction: column; gap: 0.8rem; }
.callback-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-top: 0.9rem; }
.callback-note a { color: var(--gold); }

/* ── PAGE HERO (subpagina's) ── */
.page-hero { background: var(--black); padding: 7.5rem 5% 3.5rem; border-bottom: 2px solid var(--gold); }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 1.6rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-current] { color: rgba(255,255,255,0.75); }
.crumb-sep { margin: 0 0.35rem; }
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15;
  color: var(--white); margin-bottom: 1rem; max-width: 760px;
}
.page-intro { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.65); max-width: 640px; }

/* ── SECTIES ── */
section.light, section.off, section.dark { padding: 4.5rem 5%; }
section.light { background: var(--white); }
section.off { background: var(--off-white); }
section.dark { background: var(--dark); }
section.dark .section-title { color: var(--white); }
section.dark .section-sub { color: rgba(255,255,255,0.6); }
.section-tag { font-weight: 600; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.section-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.2; color: var(--dark); margin-bottom: 0.9rem; max-width: 780px; }
.section-sub { font-size: 0.98rem; color: var(--gray); line-height: 1.75; max-width: 640px; }
.section-sub a { color: var(--gold); font-weight: 600; }
.gold-line { width: 48px; height: 2px; background: var(--gold); margin: 0.9rem 0 1.8rem; }

/* ── KAARTEN ── */
.card-grid { display: grid; gap: 1.2rem; margin-top: 2.2rem; }
.card-grid.three { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card-grid.two { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card { background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 4px; padding: 1.8rem; transition: transform 0.25s, box-shadow 0.25s; }
.card.white { background: var(--white); }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.card h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: 0.5rem; }
.card p { font-size: 0.89rem; color: var(--gray); line-height: 1.7; }
.card-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.6rem; }
.card-eyebrow.gold { color: var(--gold); }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; color: var(--gold); font-weight: 600; font-size: 0.88rem; text-decoration: none; }
.card-link::after { content: '→'; transition: transform 0.2s; }
.card-link:hover::after { transform: translateX(4px); }
.featured-card { border-color: var(--gold); }

/* ── PRIJSTEASERS (home) ── */
.price-teasers { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.price-teaser { position: relative; display: block; background: var(--off-white); border: 1px solid var(--gray-light); border-radius: 4px; padding: 1.5rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.price-teaser:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.price-teaser.featured { background: var(--dark); border-color: var(--dark); }
.price-teaser.featured .pt-name { color: rgba(255,255,255,0.7); }
.price-teaser.featured .pt-price { color: var(--white); }
.price-teaser.featured .pt-sub { color: rgba(255,255,255,0.5); }
.pt-badge { position: absolute; top: 0.8rem; right: 0.8rem; background: var(--gold); color: var(--black); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px; padding: 0.15rem 0.55rem; }
.pt-name { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.pt-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.7rem; color: var(--dark); margin: 0.3rem 0 0.2rem; }
.pt-sub { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

/* ── STAPPEN ── */
.steps-list { margin-top: 2.5rem; display: flex; flex-direction: column; max-width: 640px; }
.step { display: flex; gap: 1.5rem; padding-bottom: 2.3rem; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; left: 20px; top: 44px; bottom: 0; width: 1px; background: rgba(184,150,90,0.3); }
.step-num { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; margin: 0.55rem 0 0.3rem; color: var(--white); }
.step-body p { font-size: 0.89rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── TABELLEN ── */
.table-wrap { overflow-x: auto; margin-top: 1.8rem; border: 1px solid var(--gray-light); border-radius: 4px; }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 540px; }
.price-table thead th { background: var(--dark); color: var(--white); font-weight: 600; text-align: left; padding: 0.85rem 1.1rem; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.price-table tbody th, .price-table tbody td { padding: 0.95rem 1.1rem; border-top: 1px solid var(--gray-light); text-align: left; }
.price-table tbody th { font-weight: 600; color: var(--dark); }
.price-table tbody td { color: var(--gray); }
.price-table .featured-row { background: var(--gold-pale); }
.price-table .featured-row td { color: var(--dark); }
.badge-gold-sm { background: var(--gold); color: var(--black); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 2px; padding: 0.15rem 0.5rem; margin-left: 0.4rem; vertical-align: middle; white-space: nowrap; }

/* ── LIJSTEN / DIVERSEN ── */
.check-list { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; max-width: 680px; }
.check-list li { display: flex; gap: 0.7rem; align-items: baseline; font-size: 0.93rem; color: var(--dark); line-height: 1.65; }
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.check-list a { color: var(--gold); font-weight: 600; }
.big-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 2.4rem; color: var(--dark); margin-top: 1.4rem; }
.big-price span { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 0.95rem; color: var(--gray); }
.info-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.9rem 2.5rem; margin-top: 1.8rem; max-width: 760px; }
.info-list div { display: flex; gap: 1rem; border-bottom: 1px solid var(--gray-light); padding-bottom: 0.7rem; }
.info-list dt { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); min-width: 92px; padding-top: 0.2rem; }
.info-list dd { font-size: 0.93rem; color: var(--dark); }
.info-list a { color: var(--dark); text-decoration: underline; text-decoration-color: var(--gold); }
.info-list a:hover { color: var(--gold); }

/* ── FAQ ── */
.faq-list { margin-top: 1.8rem; max-width: 720px; display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item { background: var(--white); border-radius: 3px; border: 1px solid var(--gray-light); overflow: hidden; }
section.light .faq-item { background: var(--off-white); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.05rem 1.3rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.93rem; color: var(--dark); transition: color 0.2s; gap: 1rem; }
.faq-question:hover { color: var(--gold); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; color: var(--gold); }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; font-size: 0.89rem; color: var(--gray); line-height: 1.7; padding: 0 1.3rem; }
.faq-item.open .faq-answer { max-height: 560px; padding: 0 1.3rem 1.05rem; }

/* ── FORMULIEREN ── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.form-input { width: 100%; padding: 0.85rem 1.05rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: 3px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; outline: none; transition: border-color 0.2s; }
.form-input::placeholder { color: rgba(255,255,255,0.45); }
.form-input:focus { border-color: var(--gold); }
.form-input option { color: var(--dark); background: var(--white); }
select.form-input { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23b8965a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.light-input { background: var(--white); border-color: var(--gray-light); color: var(--dark); }
.light-input::placeholder { color: var(--gray); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.contact-form-light { max-width: 620px; display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.8rem; }
.form-terms { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; text-align: left; }
.form-terms input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
.form-terms span { font-size: 0.86rem; color: rgba(255,255,255,0.75); line-height: 1.55; }
.dark-terms span { color: var(--gray); }
.form-terms a { color: var(--gold); text-decoration: underline; }
.form-submit { background: var(--gold); color: var(--black); font-family: 'DM Sans', sans-serif; font-weight: 700; border: none; border-radius: 3px; padding: 0.95rem; font-size: 0.95rem; cursor: pointer; transition: background 0.2s, opacity 0.2s; letter-spacing: 0.03em; }
.form-submit:hover:not(:disabled) { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.form-msg { display: none; border-radius: 3px; padding: 1rem; font-size: 0.9rem; }
.form-msg-success { background: rgba(184,150,90,0.15); border: 1px solid rgba(184,150,90,0.4); color: var(--white); }
.form-msg-error { background: rgba(220,60,60,0.12); border: 1px solid rgba(220,60,60,0.3); color: var(--white); }
.dark-msg.form-msg-success { color: #6d5426; background: var(--gold-pale); }
.dark-msg.form-msg-error { color: #8c2f2f; background: #fdecec; }

/* ── CTA-BLOK ── */
.cta-block { background: var(--black); text-align: center; padding: 4.5rem 5%; border-top: 2px solid var(--gold); }
.cta-dashes { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.4rem; }
.cta-dashes span { width: 26px; height: 3px; background: var(--gold); border-radius: 2px; }
.cta-block h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--white); margin-bottom: 0.8rem; }
.cta-block p { color: rgba(255,255,255,0.65); font-size: 0.97rem; line-height: 1.7; max-width: 520px; margin: 0 auto; }
.cta-block .cta-row { justify-content: center; }

/* ── JURIDISCHE PAGINA'S ── */
.legal .legal-content { max-width: 820px; }
.artikel { background: var(--off-white); border-radius: 4px; padding: 2rem; margin-bottom: 1rem; border: 1px solid var(--gray-light); }
.artikel h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--dark); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem; }
.artikel-num { background: var(--gold); color: var(--black); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.78rem; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.artikel p { font-size: 0.93rem; line-height: 1.75; color: var(--dark); margin-bottom: 0.55rem; }
.artikel p:last-child { margin-bottom: 0; }
.artikel a { color: var(--gold); }
.highlight { background: var(--gold-pale); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; padding: 0.8rem 1rem; font-size: 0.9rem; color: var(--dark); margin-top: 0.6rem; line-height: 1.6; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500; background: var(--whatsapp); color: var(--white); width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(31,170,83,0.45); transition: transform 0.2s; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 3.5rem 5% 1.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; max-width: 1100px; }
.footer-logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.35rem; color: var(--white); line-height: 1; margin-bottom: 0.9rem; }
.footer-logo span { color: var(--gold); }
.footer-logo small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.42em; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.footer-col p { font-size: 0.86rem; line-height: 1.7; }
.footer-col h3 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; padding: 0.22rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal strong { color: rgba(255,255,255,0.7); }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── COOKIES ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000; background: #111111; border-top: 2px solid #b8965a; padding: 1.3rem 5%; display: none; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-body { max-width: 620px; }
.cookie-text { color: rgba(255,255,255,0.8); font-size: 0.85rem; line-height: 1.6; margin: 0; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-link { background: none; border: none; padding: 0; margin-top: 0.5rem; color: rgba(255,255,255,0.65); font-family: 'DM Sans', sans-serif; font-size: 0.82rem; text-decoration: underline; cursor: pointer; }
.cookie-link:hover { color: var(--gold); }
.cookie-buttons { display: flex; gap: 0.7rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.85rem; padding: 0.7rem 1.3rem; border-radius: 3px; cursor: pointer; transition: background 0.2s, color 0.2s; white-space: nowrap; }
.cookie-btn:hover { background: var(--gold); color: var(--black); }
.cookie-btn:focus-visible, .cookie-link:focus-visible { outline: 2px solid #ffffff; outline-offset: 2px; }
.cookie-panel-overlay { position: fixed; inset: 0; z-index: 2100; background: rgba(0,0,0,0.65); display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.cookie-panel-overlay.open { display: flex; }
.cookie-panel { background: #111111; border: 1px solid rgba(255,255,255,0.12); border-top: 2px solid var(--gold); border-radius: 4px; max-width: 560px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 1.8rem; }
.cookie-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.cookie-panel-head h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; color: #ffffff; }
.cookie-panel-close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 0 0.3rem; }
.cookie-panel-close:hover { color: var(--gold); }
.cookie-option { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,0.09); }
.cookie-option-text h3 { font-size: 0.93rem; font-weight: 600; color: #ffffff; margin-bottom: 0.3rem; }
.cookie-option-text h3 span { display: inline-block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,150,90,0.4); border-radius: 2px; padding: 0.1rem 0.45rem; margin-left: 0.4rem; vertical-align: middle; }
.cookie-option-text p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.cookie-panel-actions { display: flex; gap: 0.7rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cookie-panel-actions .cookie-btn { flex: 1; min-width: 150px; }
.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; margin-top: 0.15rem; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; cursor: pointer; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); border-radius: 26px; transition: background 0.25s, border-color 0.25s; }
.slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #ffffff; border-radius: 50%; transition: transform 0.25s; }
.switch input:checked + .slider { background: var(--gold); border-color: var(--gold); }
.switch input:checked + .slider::before { transform: translateX(20px); background: #111111; }
.switch input:disabled + .slider { opacity: 0.55; cursor: not-allowed; }
.switch input:focus-visible + .slider { outline: 2px solid #ffffff; outline-offset: 2px; }

/* ── TOEGANKELIJKHEID / MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 7.5rem; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 6.5rem 5% 2.8rem; }
  section.light, section.off, section.dark { padding: 3.2rem 5%; }
  .cta-row { flex-direction: column; }
  .cta-row a { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-direction: column; gap: 0.4rem; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; }
  .cookie-panel { padding: 1.4rem; }
}
