/* Joden Zeggen Nee — visual system from approved mockup:
   dark chalkboard hero with the real logo lockup, purple #752873 accent,
   light content surface with lavender icon circles. */

:root {
  --purple: #752873;
  --purple-deep: #5c1e5a;
  --hero-bg: #101113;
  --footer-bg: #141618;
  --bg: #fafafa;
  --ink: #2b2d2e;
  --body: #3f4142;
  --lilac: #ece3ed;
  --lilac-card: #f2ecf5;
  --on-dark: #ffffff;
  --on-dark-soft: #e9e4ea;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Nunito Sans', 'Trebuchet MS', sans-serif;

  --content-max: 71rem;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 6px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
}

img, svg { max-width: 100%; height: auto; }

a { color: var(--purple); text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--purple);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 6;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  cursor: pointer;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  transition: background-color 0.2s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover { background: var(--purple-deep); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline-offset: 2px; }
.btn .arrow { font-family: var(--font-body); font-weight: 700; line-height: 1; }

.btn--lg { font-size: 1.0625rem; padding: 0.8rem 2rem; }

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

.site-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 17, 19, 0.08);
  position: relative;
  z-index: 2;
}

.site-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.8rem var(--pad-x);
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2.2rem);
  flex-wrap: wrap;
}

.site-header__logo { display: block; line-height: 0; }
.site-header__logo img { width: auto; height: 3.4rem; }

.site-nav { display: flex; gap: clamp(1rem, 2.5vw, 1.9rem); flex-wrap: wrap; }
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-header .btn { margin-left: auto; }

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

.hero {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E"),
    var(--hero-bg);
  color: var(--on-dark);
}

.hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: wrap;
}

.hero__logo {
  flex: 1 1 24rem;
  max-width: 30rem;
  position: relative;
}
.hero__logo img { width: 100%; display: block; }

/* thin purple diagonal divider, as in the mockup */
.hero__divider {
  align-self: stretch;
  width: 2px;
  min-height: 18rem;
  background: linear-gradient(180deg, transparent, var(--purple) 12%, var(--purple) 88%, transparent);
  transform: skewX(-14deg);
}

.hero__voice {
  flex: 1 1 22rem;
  max-width: 26rem;
  text-align: center;
}

.hero__mission {
  margin: 0 0 2.25rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--on-dark);
  text-align: left;
  text-wrap: pretty;
}

.counter { margin: 0 0 2.25rem; }
.counter__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.counter__number {
  display: block;
  margin: 0.35rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.75rem, 2.3rem + 1.5vw, 3.5rem);
  line-height: 1.1;
  color: #a94ba6; /* purple, lifted for contrast on near-black */
  font-variant-numeric: tabular-nums;
}

.hero__cta-lead {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Content sections ---------- */

.content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) var(--pad-x) clamp(2.5rem, 5vw, 4rem);
}

.section {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}
.section + .section { border-top: 1px solid rgba(43, 45, 46, 0.12); }

.section__icon {
  flex: 0 0 auto;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--lilac);
  display: grid;
  place-items: center;
  color: var(--purple);
}
.section__icon svg { width: 2.4rem; height: 2.4rem; }

.section__body { flex: 1; min-width: 16rem; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 1.5rem + 0.9vw, 2.125rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0.4rem 0 0.6rem;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.rule {
  width: 2.6rem;
  height: 0.25rem;
  border: 0;
  border-radius: 2px;
  background: var(--purple);
  margin: 0 0 1.4rem;
}

.section p, .section ul { max-width: 70ch; margin: 0 0 1.05rem; text-wrap: pretty; }
.section > .section__body > :last-child { margin-bottom: 0; }

/* petition demands with check markers */
.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.05rem;
}
.checks li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 0.7rem;
}
.checks svg {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--purple);
}

.names {
  font-style: italic;
  font-weight: 700;
  color: var(--purple);
}

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

.contact-card {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--lilac-card);
  border-radius: 16px;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 4vw, 2.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}

.contact-card__id {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-card__mail {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.contact-card__mail svg { width: 1.4rem; height: 1.4rem; }

.contact-card__label {
  display: block;
  font-weight: 700;
  color: var(--ink);
}

.contact-card__wa { background: #1da851; }

.contact-card__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.social-handle {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #55585a;
}

.contact-card__sep {
  align-self: stretch;
  width: 1px;
  background: rgba(43, 45, 46, 0.15);
}

.social-row {
  display: flex;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-row a { display: inline-flex; line-height: 0; border-radius: 50%; }
.social-row svg { width: 2.6rem; height: 2.6rem; }

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

.site-footer {
  background: var(--footer-bg);
  color: var(--on-dark-soft);
  margin-top: clamp(1rem, 3vw, 2rem);
}

.site-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--pad-x) 1rem;
  display: flex;
  align-items: center;
  gap: 1.75rem clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.site-footer__logo { line-height: 0; }
.site-footer__logo img { height: 4rem; width: auto; }

.site-footer .site-nav a { color: var(--on-dark); }
.site-footer .site-nav a:hover,
.site-footer .site-nav a[aria-current="page"] { color: #d8a5d5; }

.site-footer__contact {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.site-footer__contact > a { color: #d8a5d5; }

.social-row--outline svg { width: 2.4rem; height: 2.4rem; }

.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.25rem;
  padding: 1rem var(--pad-x) 1.25rem;
  text-align: center;
  font-size: 0.875rem;
}

/* ---------- Subpages ---------- */

.page-title h1 { font-size: clamp(2rem, 1.7rem + 1vw, 2.5rem); }

.org-list ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}
.org-list li {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

/* ---------- Example-content components (agenda, publiciteit, nieuwsbrief) ---------- */

.badge {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d6062;
  border: 1px solid rgba(43, 45, 46, 0.35);
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  margin-left: 0.6rem;
}

.event {
  display: flex;
  gap: clamp(1rem, 3vw, 1.75rem);
  padding: 1.4rem 0;
  max-width: 70ch;
}
.event + .event { border-top: 1px solid rgba(43, 45, 46, 0.12); }

.event__date {
  flex: 0 0 auto;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 10px;
  background: var(--lilac);
  color: var(--purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  line-height: 1.05;
}
.event__day { font-size: 1.75rem; font-weight: 600; }
.event__month {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ink);
}
.event__meta {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  color: #55585a;
}
.event p:last-child { margin-bottom: 0; }

.media-item {
  padding: 1.3rem 0;
  max-width: 70ch;
}
.media-item + .media-item { border-top: 1px solid rgba(43, 45, 46, 0.12); }

.media-item__source {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
}
.media-item__source .badge { text-transform: none; letter-spacing: 0.08em; }
.media-item__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ink);
}
.media-item p:last-child { margin-bottom: 0; }

.nl-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 34rem;
  margin: 1.5rem 0 0.75rem;
}

.nl-form label {
  flex-basis: 100%;
  font-weight: 700;
  color: var(--ink);
}

.nl-form input[type="email"] {
  flex: 1 1 14rem;
  font: inherit;
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(43, 45, 46, 0.4);
  border-radius: var(--radius);
  background: #fff;
}
.nl-form input[type="email"]::placeholder { color: #5d6062; }
.nl-form input[type="email"]:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 1px;
  border-color: var(--purple);
}

.form-note { font-size: 0.9375rem; color: #55585a; }

.form-success {
  display: none;
  max-width: 34rem;
  margin: 1.5rem 0 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  background: var(--lilac);
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Newsletter article pages ---------- */

.article {
  max-width: 46rem;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}

.article__back {
  display: inline-block;
  margin-bottom: 1.75rem;
  font-weight: 700;
  text-decoration: none;
}
.article__back:hover { text-decoration: underline; }

.article__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
}

.article h1 { margin-top: 0; }

.article__meta {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: #55585a;
}

.article h2 {
  font-size: 1.375rem;
  margin: 2.25rem 0 0.6rem;
}

.article p, .article ul { max-width: 70ch; margin: 0 0 1.05rem; text-wrap: pretty; }
.article ul { padding-left: 1.4rem; }
.article li { margin-bottom: 0.35rem; }

.article__cta {
  margin-top: 2.5rem;
  padding: 1.4rem 1.75rem;
  background: var(--lilac-card);
  border-radius: 16px;
}
.article__cta p { margin: 0 0 1rem; }
.article__cta p:last-child { margin: 0; }

.article__nav {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(43, 45, 46, 0.12);
  font-weight: 700;
}
.article__nav a { text-decoration: none; }
.article__nav a:hover { text-decoration: underline; }

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

@media (max-width: 52rem) {
  .hero__divider { display: none; }
  .hero__logo { max-width: 24rem; }
  .contact-card__sep { display: none; }
  .contact-card { justify-content: center; text-align: center; }
  .contact-card__id { flex-direction: column; }
  .site-footer__inner { flex-direction: column; }
  .site-footer__contact { margin-left: 0; align-items: center; }
}

@media (max-width: 44rem) {
  .site-header .btn { margin-left: 0; }
  .section { flex-direction: column; gap: 1.25rem; }
  .section__icon { width: 4rem; height: 4rem; }
  .section__icon svg { width: 1.9rem; height: 1.9rem; }
}

/* ---------- Motion ---------- */

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