/* ═══════════════════════════════════════════════════════════
   EuropeSwitch — Consumer Layer CSS
   Groene variant van de EUCompany design language
   ═══════════════════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
  --es-green: #1A8940;
  --es-green-dark: #0F6B30;
  --es-green-light: #E8F5EC;
  --es-green-mid: #2EA855;
  --es-navy: #0F2D1A;
  --es-gold: #FFD617;
  --es-white: #FFFFFF;
  --es-off-white: #F4FAF6;
  --es-border: #C8E6D0;
  --es-text: #1A2E1F;
  --es-muted: #4A6652;
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── Reset & base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--es-text);
  background: var(--es-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ── */
.es-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.22, 1, .36, 1), transform 0.6s cubic-bezier(.22, 1, .36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Sections ── */
.es-section {
  padding: 88px 0;
}

.es-section-alt {
  background: var(--es-off-white);
}

.es-section-dark {
  background: var(--es-navy);
}

.es-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.es-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--es-green);
  margin-bottom: 12px;
}

.es-section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--es-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.es-section-subtitle {
  color: var(--es-muted);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   NAVIGATIE — Consumer Nav
   ══════════════════════════════════════════════════ */

.consumer-nav {
  background: var(--es-green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(26, 137, 64, 0.25);
}

.consumer-nav .es-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.es-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--es-white);
  flex-shrink: 0;
}

.es-logo-mark {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.es-logo-mark--footer {
  height: 40px;
  filter: brightness(0.9);
}

.es-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--es-white);
}

.es-logo-sub {
  font-weight: 400;
  opacity: 0.8;
}

/* Nav links */
.es-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.es-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}

.es-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--es-gold);
  width: 0;
  transition: width 0.22s ease;
}

.es-nav-links a:hover {
  color: var(--es-white);
  background: rgba(255, 255, 255, 0.1);
}

.es-nav-links a:hover::after {
  width: calc(100% - 28px);
}

/* Persona-switcher — zelfde stijl als org nav */
.es-persona-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 3px;
}

.es-persona-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.es-persona-pill.active {
  background: var(--es-white);
  color: var(--es-green-dark);
}

.es-persona-pill.inactive {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

.es-persona-pill.inactive:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--es-white);
}

/* Hamburger */
.es-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--es-white);
  padding: 4px;
}

.es-hamburger svg {
  width: 28px;
  height: 28px;
}

/* ── Mobile nav overlay ── */
.es-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--es-navy);
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.es-mobile-overlay.open {
  display: flex;
}

.es-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--es-green);
  flex-shrink: 0;
}

.es-mobile-close {
  background: none;
  border: none;
  color: var(--es-white);
  cursor: pointer;
  padding: 4px;
}

.es-mobile-close svg {
  width: 28px;
  height: 28px;
}

.es-mobile-body {
  padding: 24px;
  flex: 1;
}

.es-mobile-nav-links {
  list-style: none;
}

.es-mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.es-mobile-nav-links a {
  display: block;
  padding: 16px 4px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.15s;
}

.es-mobile-nav-links a:hover {
  color: var(--es-gold);
}

.es-mobile-persona {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.es-mobile-persona-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.es-mobile-persona .es-persona-switcher {
  background: rgba(255, 255, 255, 0.08);
  width: fit-content;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */

.es-hero {
  background: var(--es-green-light);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.es-hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.es-hero-stars svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.es-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.es-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--es-white);
  border: 1px solid var(--es-border);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: 13px;
  color: var(--es-green-dark);
  font-weight: 600;
  margin-bottom: 24px;
}

.es-hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--es-green);
  border-radius: 50%;
  animation: es-pulse 2s ease infinite;
}

@keyframes es-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 137, 64, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(26, 137, 64, 0); }
}

.es-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--es-navy);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.es-hero h1 em {
  font-style: normal;
  color: var(--es-green);
}

.es-hero-sub {
  font-size: 18px;
  color: var(--es-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Zoekbalk ── */
.es-search-wrap {
  max-width: 600px;
  margin-bottom: 20px;
}

.es-search-form {
  display: flex;
  align-items: center;
  background: var(--es-white);
  border: 2px solid var(--es-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 137, 64, 0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.es-search-form:focus-within {
  border-color: var(--es-green);
  box-shadow: 0 4px 24px rgba(26, 137, 64, 0.2);
}

.es-search-icon {
  padding: 0 14px 0 18px;
  color: var(--es-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.es-search-icon svg {
  width: 20px;
  height: 20px;
}

.es-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--es-text);
  padding: 14px 8px;
  background: transparent;
}

.es-search-input::placeholder {
  color: var(--es-muted);
  opacity: 0.7;
}

.es-search-btn {
  background: var(--es-green);
  color: var(--es-white);
  border: none;
  padding: 0 24px;
  height: 52px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.es-search-btn:hover {
  background: var(--es-green-dark);
}

/* ── Snelkoppelingen / chips ── */
.es-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.es-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--es-white);
  border: 1px solid var(--es-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--es-text);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  cursor: pointer;
}

.es-chip:hover {
  border-color: var(--es-green);
  background: var(--es-green-light);
  color: var(--es-green-dark);
}

/* ══════════════════════════════════════════════════
   CATEGORIEEN GRID
   ══════════════════════════════════════════════════ */

.es-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.es-category-card {
  background: var(--es-white);
  border: 1.5px solid var(--es-border);
  border-radius: 14px;
  padding: 28px 20px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--es-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.es-category-card:hover {
  background: var(--es-green-light);
  border-color: var(--es-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 137, 64, 0.12);
}

.es-category-icon {
  font-size: 32px;
  line-height: 1;
}

.es-category-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--es-text);
  line-height: 1.3;
}

.es-category-arrow {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 14px;
  color: var(--es-green);
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
}

.es-category-card:hover .es-category-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* ══════════════════════════════════════════════════
   ALTERNATIEVEN GRID
   ══════════════════════════════════════════════════ */

.es-alts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.es-alt-card {
  background: var(--es-white);
  border: 1.5px solid var(--es-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.es-alt-card:hover {
  border-color: var(--es-green);
  box-shadow: 0 8px 28px rgba(26, 137, 64, 0.12);
  transform: translateY(-3px);
}

.es-alt-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.es-alt-card-meta {
  flex: 1;
  min-width: 0;
}

.es-alt-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--es-text);
  margin-bottom: 2px;
}

.es-alt-category {
  font-size: 13px;
  color: var(--es-muted);
}

.es-alt-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

/* EU-level badge */
.es-eu-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(26, 137, 64, 0.12);
  color: var(--es-green-dark);
  border: 1px solid rgba(26, 137, 64, 0.25);
  position: relative;
  cursor: default;
}

.es-eu-badge[data-level="E?"] {
  background: rgba(74, 102, 82, 0.1);
  color: var(--es-muted);
  border-color: rgba(74, 102, 82, 0.2);
}

/* Tooltip */
.es-eu-badge .es-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  background: var(--es-navy);
  color: var(--es-white);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

.es-eu-badge:hover .es-tooltip {
  display: block;
}

/* Prijs-label */
.es-price-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: var(--es-off-white);
  color: var(--es-muted);
  border: 1px solid var(--es-border);
}

/* Beschrijving */
.es-alt-desc {
  font-size: 14px;
  color: var(--es-muted);
  line-height: 1.6;
}

/* Bullets */
.es-alt-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.es-alt-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--es-text);
  line-height: 1.5;
}

.es-alt-bullets li::before {
  content: '✓';
  color: var(--es-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA-knop */
.es-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--es-green);
  color: var(--es-white);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  align-self: flex-start;
  margin-top: auto;
}

.es-btn-green:hover {
  background: var(--es-green-dark);
  transform: translateY(-1px);
}

.es-btn-green-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--es-green);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--es-green);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.es-btn-green-outline:hover {
  background: var(--es-green-light);
}

/* ══════════════════════════════════════════════════
   HOE WERKT HET — 3 stappen
   ══════════════════════════════════════════════════ */

.es-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.es-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--es-border);
  z-index: 0;
}

.es-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.es-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--es-green);
  color: var(--es-white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(26, 137, 64, 0.25);
}

.es-step-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.es-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--es-text);
  margin-bottom: 8px;
}

.es-step p {
  font-size: 14px;
  color: var(--es-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   CTA-SECTIE — Bewegingsband
   ══════════════════════════════════════════════════ */

.es-cta-band {
  background: var(--es-navy);
  padding: 72px 0;
  text-align: center;
}

.es-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--es-white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.es-cta-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.es-cta-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto 16px;
}

.es-cta-email {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--es-white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.es-cta-email:focus {
  border-color: var(--es-green-mid);
  background: rgba(255, 255, 255, 0.1);
}

.es-cta-email::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.es-cta-submit {
  background: var(--es-gold);
  color: var(--es-navy);
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.es-cta-submit:hover {
  background: #e8c200;
  transform: translateY(-1px);
}

.es-cta-fine {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */

.es-footer {
  background: var(--es-green-light);
  border-top: 1px solid var(--es-border);
  padding: 56px 0 0;
}

.es-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.es-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.es-footer .es-logo-text {
  color: var(--es-text);
}

.es-footer .es-logo-sub {
  color: var(--es-muted);
  opacity: 1;
}

.es-footer-tagline {
  font-size: 14px;
  color: var(--es-muted);
  line-height: 1.65;
}

.es-footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--es-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.es-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.es-footer-links a {
  color: var(--es-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.es-footer-links a:hover {
  color: var(--es-green-dark);
}

.es-footer-org-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--es-green-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--es-green);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s;
}

.es-footer-org-link:hover {
  background: rgba(26, 137, 64, 0.08);
}

.es-footer-bottom {
  border-top: 1px solid var(--es-border);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--es-muted);
}

/* ══════════════════════════════════════════════════
   Grain overlay (dezelfde textuur als de B2B site)
   ══════════════════════════════════════════════════ */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ══════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .es-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .es-alts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .es-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .es-section {
    padding: 64px 0;
  }

  /* Nav */
  .es-nav-links {
    display: none;
  }

  .es-persona-switcher {
    display: none;
  }

  .es-hamburger {
    display: block;
  }

  /* Hero */
  .es-hero {
    padding: 56px 0 52px;
  }

  .es-hero h1 {
    font-size: clamp(28px, 7vw, 38px);
  }

  .es-hero-sub {
    font-size: 16px;
  }

  .es-search-form {
    flex-wrap: wrap;
    border-radius: 10px;
  }

  .es-search-btn {
    width: 100%;
    border-radius: 0 0 8px 8px;
    height: 46px;
  }

  /* Categories */
  .es-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Alternatieven */
  .es-alts-grid {
    grid-template-columns: 1fr;
  }

  /* Stappen */
  .es-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .es-steps::before {
    display: none;
  }

  /* CTA form */
  .es-cta-form {
    flex-direction: column;
    align-items: stretch;
  }

  .es-cta-email {
    min-width: 0;
    width: 100%;
  }

  .es-cta-submit {
    width: 100%;
  }

  /* Footer */
  .es-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .es-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .es-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Helper-modifiers ── */
.es-alts-cta {
  margin-top: 48px;
  margin-bottom: 0;
}

.es-footer-tagline--spaced {
  margin-bottom: 16px;
}

/* ── Accessibility: focus rings ── */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--es-green);
  outline-offset: 2px;
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .es-hero-tag-dot {
    animation: none;
  }
}

/* ══════════════════════════════════════════════════
   NAV — Actief item indicator
   ══════════════════════════════════════════════════ */

.es-nav-links a.active {
  color: var(--es-white);
  background: rgba(255, 255, 255, 0.15);
}

.es-nav-links a.active::after {
  width: calc(100% - 28px);
  background: var(--es-gold);
}

.es-mobile-nav-links a.active {
  color: var(--es-gold);
}

/* ══════════════════════════════════════════════════
   HERO — Kleine variant (about, binnenkomst)
   ══════════════════════════════════════════════════ */

.es-hero-sm {
  background: var(--es-navy);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.es-hero-sm h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--es-white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.es-hero-sm p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   ABOUT — Missie-sectie
   ══════════════════════════════════════════════════ */

.es-mission {
  padding: 72px 0;
  background: var(--es-white);
}

.es-pullquote {
  border-left: 4px solid var(--es-green);
  padding: 20px 28px;
  margin: 0 0 28px;
  background: var(--es-green-light);
  border-radius: 0 12px 12px 0;
}

.es-pullquote p {
  font-size: clamp(17px, 2.2vw, 20px);
  font-style: italic;
  color: var(--es-navy);
  line-height: 1.65;
  font-weight: 500;
}

.es-mission-body {
  font-size: 17px;
  color: var(--es-muted);
  line-height: 1.75;
  max-width: 760px;
}

/* ══════════════════════════════════════════════════
   ABOUT — Wat-we-doen kaartjes
   ══════════════════════════════════════════════════ */

.es-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.es-about-card {
  background: var(--es-off-white);
  border: 1.5px solid var(--es-border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.es-about-card-icon {
  font-size: 28px;
  line-height: 1;
}

.es-about-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--es-text);
}

.es-about-card p {
  font-size: 14px;
  color: var(--es-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   ABOUT — Wie er achter zit
   ══════════════════════════════════════════════════ */

.es-about-org {
  background: var(--es-navy);
  padding: 64px 0;
  text-align: center;
}

.es-about-org h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--es-white);
  margin-bottom: 16px;
}

.es-about-org p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   COMING SOON — Alternatieven
   ══════════════════════════════════════════════════ */

.es-coming-soon {
  min-height: calc(100vh - 64px - 180px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--es-white);
}

.es-coming-soon-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.es-coming-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--es-green);
  background: var(--es-green-light);
  border: 1px solid var(--es-border);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.es-coming-soon-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--es-navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.es-coming-soon-inner p {
  font-size: 16px;
  color: var(--es-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.es-search-disabled {
  display: flex;
  align-items: center;
  background: var(--es-off-white);
  border: 2px solid var(--es-border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.55;
  cursor: not-allowed;
  margin-bottom: 28px;
}

.es-search-disabled .es-search-icon {
  color: var(--es-muted);
}

.es-search-disabled input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--es-muted);
  padding: 14px 8px;
  cursor: not-allowed;
}

.es-chip-dim {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--es-off-white);
  border: 1px solid var(--es-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--es-muted);
  opacity: 0.6;
  cursor: default;
}

.es-notify-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.es-notify-label {
  width: 100%;
  font-size: 14px;
  color: var(--es-muted);
  margin-bottom: 4px;
}

.es-notify-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 2px solid var(--es-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--es-text);
  outline: none;
  transition: border-color 0.2s;
  background: var(--es-white);
}

.es-notify-input:focus {
  border-color: var(--es-green);
}

.es-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--es-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.es-back-link:hover {
  color: var(--es-green-dark);
}

@media (max-width: 768px) {
  .es-about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .es-hero-sm {
    padding: 40px 0 36px;
  }

  .es-mission {
    padding: 48px 0;
  }

  .es-about-org {
    padding: 48px 0;
  }

  .es-coming-soon {
    padding: 56px 0;
  }
}
