/* Shared foundation — brand themes override CSS variables */
:root {
  --bg: #0f1412;
  --bg-elevated: #1a211e;
  --text: #f2f5f1;
  --text-muted: #a8b3ab;
  --accent: #6f9b6a;
  --accent-2: #c6e06a;
  --accent-3: #f0e27a;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 2px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--accent-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-3);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Availability — discreet, not a takeover */
.availability-notice {
  background: color-mix(in srgb, var(--accent) 18%, var(--bg));
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.availability-inner {
  padding: 0.65rem 0;
  display: grid;
  gap: 0.15rem;
}

.availability-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.availability-message,
.availability-hours {
  margin: 0;
  color: var(--text-muted);
}

.availability-hours {
  font-size: 0.82rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
}

.brand-name {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 16rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-hub {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  padding: clamp(3rem, 8vh, 5rem) 0 clamp(2.5rem, 6vh, 4rem);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.hero-logo {
  margin-bottom: 1.25rem;
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-2);
}

.hero h1,
.content-block h1,
.contact-intro h1,
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
}

.lede,
.section-lede {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #0b0f0d;
}

.btn-primary:hover {
  background: var(--accent-2);
  color: #0b0f0d;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

/* Content */
.content-block,
.contact-page,
.brand-picker {
  padding: clamp(2.5rem, 6vh, 4.5rem) 0;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent-2);
  transform: skewX(-18deg);
}

/* Hub picker — links, not card-UI chrome beyond interaction */
.picker-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.picker-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem 1.2rem 1.4rem;
  text-decoration: none;
  color: var(--text);
  border-top: 3px solid var(--accent);
  background: linear-gradient(165deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.picker-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(165deg, color-mix(in srgb, var(--accent) 22%, transparent), transparent 75%);
  color: var(--text);
}

.picker-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.picker-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.picker-cta {
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--accent-2);
}

.picker-card.theme-administratie {
  --accent: #6ca974;
  --accent-2: #d4eb3f;
}

.picker-card.theme-coaching {
  --accent: #ff843e;
  --accent-2: #f6d94a;
}

.picker-card.theme-design {
  --accent: #00a99d;
  --accent-2: #66d3c2;
}

/* Contact */
.contact-form {
  max-width: 34rem;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 600;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 70%, white);
  outline-offset: 1px;
}

.field span,
.form-errors,
.captcha-hint {
  color: #f0a8a0;
  font-size: 0.88rem;
}

.captcha-hint {
  color: var(--text-muted);
}

.flash-success {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent-2);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.footer-meta,
.footer-copy {
  margin: 0.25rem 0 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.85rem;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.social-links a:hover {
  color: var(--accent-2);
}

.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.25rem;
}

.service-grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.service-grid p {
  margin: 0;
  color: var(--text-muted);
}

.testimonials blockquote {
  margin: 1.25rem 0 0;
  padding: 1rem 0 1rem 1rem;
  border-left: 3px solid var(--accent);
  color: var(--text-muted);
}

.testimonials blockquote p {
  margin: 0 0 0.65rem;
  color: var(--text);
}

.testimonials footer {
  font-size: 0.9rem;
}

.newsletter-form {
  max-width: 28rem;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.consent input {
  margin-top: 0.25rem;
}

.flash-error {
  padding: 0.85rem 1rem;
  border-left: 3px solid #f0a8a0;
  background: color-mix(in srgb, #f0a8a0 14%, transparent);
  margin-bottom: 1rem;
}

.legal-page {
  padding: clamp(2rem, 5vh, 3.5rem) 0 4rem;
  max-width: 46rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.5rem;
}

.legal-page section p,
.legal-page li {
  color: var(--text-muted);
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.legal-brand-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.terms-frame {
  width: 100%;
  min-height: 70vh;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  margin-top: 0.75rem;
}

.podcast-embed {
  margin-top: 1.25rem;
  max-width: 42rem;
}

.podcast-embed iframe {
  display: block;
  width: 100%;
  min-height: 232px;
  border: 0;
  background: var(--bg-elevated);
}

.podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.podcast-soon,
.podcast-cta {
  margin-top: 1rem;
  color: var(--text-muted);
}

.blog-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.blog-list a {
  display: grid;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--text);
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.blog-list time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.blog-body {
  margin-top: 1.5rem;
}

.blog-body h2,
.blog-body h3 {
  font-family: var(--font-display);
  margin: 1.5rem 0 0.5rem;
}

.blog-crosslinks {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.contact-reveal {
  margin-top: 0.65rem;
}

.contact-reveal-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}

.contact-reveal-sep {
  opacity: 0.5;
}

.contact-reveal-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-reveal-btn {
  margin-top: 0.25rem;
}

.contact-reveal-widget {
  margin-top: 0.75rem;
}

.contact-reveal-error {
  color: #f0a8a0;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.contact-reveal-inline {
  margin-top: 1rem;
}

.contact-reveal--compact .contact-reveal-hint {
  display: none;
}

/* Motion */
.animate-in {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-in {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn:hover,
  .picker-card:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .brand-name {
    max-width: 11rem;
  }

  .hero {
    min-height: 70vh;
    align-items: center;
  }
}
