:root {
  --nz-bg: #f3f1ee;
  --nz-paper: #faf9f7;
  --nz-ink: #1a1a1a;
  --nz-muted: #6b6b6b;
  --nz-line: #e2ddd6;
  --nz-accent: #d62828;
  --nz-accent-dark: #a61c1c;
  --nz-dark: #22262b;
  --nz-serif: "Instrument Serif", Georgia, serif;
  --nz-sans: "Manrope", system-ui, sans-serif;
  --nz-radius: 6px;
  --nz-shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
}

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

body.site-nz {
  margin: 0;
  font-family: var(--nz-sans);
  color: var(--nz-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(214, 40, 40, 0.06), transparent 50%),
    linear-gradient(180deg, #efece7 0%, var(--nz-bg) 40%, #ece9e4 100%);
  min-height: 100vh;
}

body.nz-modal-open { overflow: hidden; }

.nz-utility {
  background: var(--nz-dark);
  color: rgba(255,255,255,0.78);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0;
}
.nz-utility-links { display: flex; gap: 1.25rem; }
.nz-util-btn {
  background: none; border: 0; color: inherit; padding: 0;
  font: inherit; cursor: pointer;
}
.nz-util-btn:hover { color: #fff; }

.nz-brand-bar {
  background: var(--nz-paper);
  border-bottom: 1px solid var(--nz-line);
}
.nz-logo {
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.nz-logo-mark {
  font-family: var(--nz-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--nz-ink);
  letter-spacing: -0.02em;
}
.nz-logo-bang {
  font-family: var(--nz-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--nz-accent);
}
.nz-tagline {
  margin-top: 0.5rem;
  color: var(--nz-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nz-nav {
  background: var(--nz-paper);
  border-bottom: 1px solid var(--nz-line);
  z-index: 1030;
}
.nz-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 1rem;
}
.nz-nav-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}
@media (max-width: 991.98px) {
  .nz-nav-list {
    flex-direction: column;
    gap: 0.35rem;
    padding-bottom: 1rem;
  }
}
.nz-nav-list a {
  text-decoration: none;
  color: var(--nz-ink);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 0.25rem 0;
}
.nz-nav-list a:hover { color: var(--nz-accent); }
.nz-nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--nz-accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nz-nav-list a:hover::after { transform: scaleX(1); }
.nz-nav-toggle, .nz-icon-btn {
  background: none; border: 0; font-size: 1.35rem; color: var(--nz-ink); cursor: pointer;
}
.nz-nav-actions { display: flex; gap: 0.5rem; }

/* Home beauty — mirrors category masthead language */
.nz-home-intro {
  padding: 1.75rem 0 0.25rem;
}
.nz-home-intro-inner {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 1.65rem;
  background: linear-gradient(180deg, #fff 0%, var(--nz-paper) 100%);
  border: 1px solid var(--nz-line);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(26,26,26,0.05);
  overflow: hidden;
}
.nz-home-intro-inner::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--nz-accent);
}
.nz-home-intro-inner::after {
  content: "";
  position: absolute;
  right: -50px; top: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--nz-accent);
  opacity: 0.08;
  pointer-events: none;
}
.nz-home-intro-title {
  font-family: var(--nz-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.55rem;
  max-width: 18ch;
}
.nz-home-intro-lead {
  margin: 0;
  color: var(--nz-muted);
  max-width: 36rem;
  font-size: 1.02rem;
}

.nz-section-panel {
  position: relative;
  padding: 1.5rem 1.35rem 1.6rem;
  background: linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
  border: 1px solid var(--nz-line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(26,26,26,0.05);
  overflow: hidden;
}
.nz-section-panel::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--nz-accent);
}

.nz-home-cat-band {
  position: relative;
  padding: 1.5rem 1.35rem 1.6rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--nz-paper) 100%);
  border: 1px solid var(--nz-line);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(26,26,26,0.045);
  overflow: hidden;
}
.nz-home-cat-band::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--cat-accent, var(--nz-accent));
}
.nz-home-cat-band::after {
  content: "";
  position: absolute;
  right: -40px; top: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--cat-accent, var(--nz-accent));
  opacity: 0.1;
  pointer-events: none;
}
.nz-cat-rail .nz-section-head {
  position: relative;
  z-index: 1;
}
.nz-top-section { padding-top: 2rem; }

.nz-trending {
  padding: 1.5rem 0 0.5rem;
}
.nz-trending-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.nz-trending-head h2 {
  font-family: var(--nz-serif);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  margin: 0.15rem 0 0;
}
.nz-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nz-accent);
}
.nz-kicker-accent { color: var(--cat-accent, var(--nz-accent)); }
.nz-date-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--nz-muted);
  border: 1px solid var(--nz-line);
  background: var(--nz-paper);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.nz-hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 0.85rem;
  min-height: 420px;
}
@media (max-width: 991px) {
  .nz-hero-grid { grid-template-columns: 1fr; }
}
.nz-hero-main, .nz-hero-stack a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--nz-radius);
  text-decoration: none;
  color: #fff;
  background: #2a2a2a;
}
.nz-hero-main { min-height: 420px; }
.nz-hero-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.85rem;
}
.nz-hero-stack a { min-height: 128px; }
.nz-hero-main img, .nz-hero-stack img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.nz-hero-main:hover img, .nz-hero-stack a:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.nz-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.78) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem 1.35rem;
  z-index: 1;
}
.nz-hero-main .nz-hero-overlay { padding: 1.75rem; }
.nz-hero-overlay h3 {
  font-family: var(--nz-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  margin: 0.35rem 0 0.4rem;
  line-height: 1.2;
}
.nz-hero-meta {
  font-size: 0.78rem;
  opacity: 0.85;
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.nz-cat-pill, .nz-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.55rem;
  border-radius: 4px;
  background: var(--nz-accent);
  color: #fff;
  width: fit-content;
}
.nz-badge-ad { background: #111; }

/* Cards — unified */
.nz-card {
  background: var(--nz-paper);
  border: 1px solid var(--nz-line);
  border-radius: var(--nz-radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nz-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--nz-shadow);
}
.nz-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.nz-card-list .nz-card-link {
  flex-direction: row;
  align-items: stretch;
}
.nz-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd;
}
.nz-card-list .nz-card-media {
  width: 132px;
  min-width: 132px;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.nz-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.nz-card:hover .nz-card-media img { transform: scale(1.05); }
.nz-card-media .nz-badge {
  position: absolute; top: 0.65rem; left: 0.65rem; z-index: 1;
}
.nz-card-body { padding: 1rem 1.05rem 1.15rem; flex: 1; display: flex; flex-direction: column; }
.nz-card-title {
  font-family: var(--nz-serif);
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0.45rem 0 0.4rem;
}
.nz-card-list .nz-card-title { font-size: 1rem; margin-top: 0.25rem; }
.nz-card-excerpt {
  color: var(--nz-muted);
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nz-card-list .nz-card-excerpt { -webkit-line-clamp: 2; font-size: 0.82rem; }
.nz-card-meta {
  font-size: 0.78rem;
  color: var(--nz-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nz-section { padding: 2.75rem 0; }
.nz-section-title {
  font-family: var(--nz-serif);
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  margin-bottom: 0.35rem;
}
.nz-section-lead { color: var(--nz-muted); margin-bottom: 1.5rem; max-width: 38rem; }
.nz-section-head { margin-bottom: 1.5rem; }
.nz-section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.nz-text-link {
  color: var(--nz-accent);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nz-text-link:hover { color: var(--nz-accent-dark); }

/* Overlay cards — same language as Uitgelicht */
.nz-overlay-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(3, minmax(140px, 1fr));
  gap: 0.85rem;
  min-height: 440px;
}
.nz-overlay-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: #2a2a2a;
  min-height: 160px;
  box-shadow: 0 8px 24px rgba(26,26,26,0.06);
}
.nz-overlay-card-lg {
  grid-row: 1 / span 3;
  min-height: 440px;
}
.nz-overlay-card img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.nz-overlay-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.06);
}
.nz-overlay-card .nz-hero-overlay h2,
.nz-overlay-card .nz-hero-overlay h3 {
  font-family: var(--nz-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  margin: 0.35rem 0 0.35rem;
  line-height: 1.2;
}
.nz-overlay-card-feed {
  aspect-ratio: 16 / 10;
  min-height: 0;
}
.nz-overlay-card-feed .nz-hero-overlay h2,
.nz-overlay-card-feed .nz-hero-overlay h3 {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .nz-overlay-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .nz-overlay-card-lg {
    grid-row: auto;
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
}

.nz-sidebar-widget {
  background: var(--nz-paper);
  border: 1px solid var(--nz-line);
  border-radius: 12px;
  padding: 1.35rem 1.3rem;
  margin-bottom: 1.15rem;
  box-shadow: 0 10px 28px rgba(26,26,26,0.04);
}
.nz-sidebar-widget h3 {
  font-family: var(--nz-serif);
  font-size: 1.35rem;
  margin: 0.2rem 0 0.65rem;
}
.nz-newsletter-widget {
  background:
    linear-gradient(160deg, rgba(214,40,40,0.06), transparent 55%),
    var(--nz-paper);
  border-color: #e8d2d2;
}
.nz-news-input {
  margin-bottom: 0.65rem;
  border-radius: 8px;
  border-color: var(--nz-line);
  padding: 0.7rem 0.85rem;
}
.nz-news-input.is-invalid {
  border-color: var(--nz-accent);
  box-shadow: 0 0 0 0.15rem rgba(214,40,40,0.15);
}
.nz-news-success {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #eef7f0;
  border: 1px solid #c6e2ce;
  border-radius: 10px;
  padding: 1rem;
  color: #1f4d2e;
}
.nz-news-success i { color: #2f8f4e; font-size: 1.25rem; margin-top: 0.1rem; }
.nz-check-widget {
  background:
    linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
}

.nz-btn-accent {
  background: var(--nz-accent);
  border-color: var(--nz-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.55rem 1rem;
}
.nz-btn-accent:hover {
  background: var(--nz-accent-dark);
  border-color: var(--nz-accent-dark);
  color: #fff;
}

/* Category masthead — unique, light editorial */
.nz-cat-masthead {
  position: relative;
  padding: 2.75rem 0 2.25rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--nz-paper) 100%);
  border-bottom: 1px solid var(--nz-line);
  overflow: hidden;
}
.nz-cat-masthead::after {
  content: "";
  position: absolute;
  right: -40px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--cat-accent);
  opacity: 0.1;
  pointer-events: none;
}
.nz-cat-masthead::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--cat-accent);
}
.nz-cat-masthead-inner { position: relative; }
.nz-crumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.82rem; color: var(--nz-muted); margin-bottom: 1rem;
}
.nz-crumb a { color: var(--nz-ink); text-decoration: none; font-weight: 600; }
.nz-crumb a:hover { color: var(--cat-accent); }
.nz-cat-masthead-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1.5rem;
  align-items: end;
}
.nz-cat-title {
  font-family: var(--nz-serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 0.95;
  margin: 0.25rem 0 0.85rem;
  letter-spacing: -0.03em;
}
.nz-cat-blurb {
  max-width: 34rem;
  color: var(--nz-muted);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.55;
}
.nz-cat-ornament {
  justify-self: end;
  width: min(180px, 40vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}
.nz-cat-ornament-letter {
  font-family: var(--nz-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--cat-accent);
  opacity: 0.85;
}
@media (max-width: 767px) {
  .nz-cat-masthead-grid { grid-template-columns: 1fr; }
  .nz-cat-ornament { display: none; }
}

/* Article shell */
.nz-article-shell {
  padding: 2.5rem 1rem 3rem;
}
.nz-article-elevated {
  max-width: 780px;
  background: var(--nz-paper);
  border: 1px solid var(--nz-line);
  border-radius: 16px;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  box-shadow: 0 18px 50px rgba(26,26,26,0.06);
}
.nz-article-head { margin-bottom: 0.5rem; }
.nz-article-meta {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  font-size: 0.82rem; color: var(--nz-muted); margin-bottom: 0.75rem;
}
.nz-article-meta a {
  color: var(--nz-accent); font-weight: 700; text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 0.72rem;
}
.nz-article-deck {
  font-size: 1.12rem;
  color: #444;
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 40rem;
}
.nz-article-hero-wrap {
  margin: 1.25rem -0.35rem 1.75rem;
}
.nz-article-elevated .article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 0;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.article-page h1 {
  font-family: var(--nz-serif);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  margin: 0.35rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.longread-body { font-size: 1.06rem; line-height: 1.8; color: #242424; }
.longread-body h2 {
  font-family: var(--nz-serif);
  font-size: 1.65rem;
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.01em;
}
.longread-body h3 { font-size: 1.12rem; margin: 1.5rem 0 0.5rem; font-weight: 700; }
.longread-body p { margin-bottom: 1.05rem; }
.article-lede {
  font-size: 1.2rem;
  color: #2a2a2a;
  line-height: 1.65;
  border-left: 3px solid var(--nz-accent);
  padding-left: 1rem;
  margin-bottom: 1.35rem;
}
.article-list { padding-left: 1.2rem; margin-bottom: 1.25rem; }
.article-list li { margin-bottom: 0.45rem; }
.article-box {
  background: linear-gradient(135deg, #fff8f6, #f7f3ee);
  border: 1px solid #eadfd8;
  border-left: 3px solid var(--nz-accent);
  border-radius: 0 12px 12px 0;
  padding: 1.1rem 1.2rem;
  margin: 1.6rem 0;
}
.article-table-wrap {
  overflow-x: auto;
  margin: 1.6rem 0;
  border-radius: 12px;
  border: 1px solid var(--nz-line);
  background: #fff;
}
.article-table {
  width: 100%; border-collapse: collapse; font-size: 0.92rem; margin: 0;
}
.article-table th, .article-table td {
  border-bottom: 1px solid var(--nz-line);
  border-right: 1px solid var(--nz-line);
  padding: 0.75rem 0.85rem;
  text-align: left;
}
.article-table th { background: #f3efe9; font-weight: 700; }
.article-table tr:last-child td { border-bottom: 0; }
.article-cta-lead {
  background: linear-gradient(135deg, #fff, #f8f4ef);
  border: 1px solid var(--nz-line);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  margin-top: 2rem;
  box-shadow: 0 8px 24px rgba(26,26,26,0.04);
}
.promo-ribbon {
  background: linear-gradient(90deg, #111, #2a2a2a);
  color: #fff;
  text-align: center;
  padding: 0.6rem;
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.badge-sponsored {
  display: inline-block;
  background: var(--nz-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}
.disclaimer-block {
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  background: #f3efe9;
  border-radius: 12px;
  font-size: 0.88rem;
  color: #444;
  border: 1px solid var(--nz-line);
}

.quiz-wrap {
  margin: 2.5rem 0;
  padding: 1.6rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #faf7f3 100%);
  border: 1px solid var(--nz-line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(26,26,26,0.04);
}
.quiz-wrap h2 { font-family: var(--nz-serif); margin-bottom: 0.5rem; }
.quiz-progress {
  height: 6px; background: #e5e0d8; border-radius: 99px; overflow: hidden; margin: 1rem 0 0.5rem;
}
.quiz-fill {
  height: 100%; width: 0; background: var(--nz-accent); transition: width 0.3s ease;
}
.quiz-answers { display: grid; gap: 0.65rem; margin-top: 1rem; }
.quiz-ans-btn {
  text-align: left;
  border: 1px solid var(--nz-line);
  background: #fff;
  border-radius: var(--nz-radius);
  padding: 0.85rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-ans-btn:hover {
  border-color: var(--nz-accent);
  background: #fff5f5;
}
.hidden { display: none !important; }
.quiz-proc-nz { text-align: center; padding: 1.5rem 0; }
.quiz-spinner {
  width: 40px; height: 40px; margin: 0 auto 1rem;
  border: 3px solid #e5e0d8; border-top-color: var(--nz-accent);
  border-radius: 50%; animation: nzspin 0.8s linear infinite;
}
@keyframes nzspin { to { transform: rotate(360deg); } }
.quiz-proc-steps { list-style: none; padding: 0; margin: 1rem 0 0; }
.quiz-proc-steps li { color: var(--nz-muted); margin: 0.35rem 0; }
.quiz-proc-steps li.active { color: var(--nz-ink); font-weight: 600; }
.quiz-res-title { font-family: var(--nz-serif); font-size: 1.5rem; }
.quiz-res-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin: 1.25rem 0;
}
@media (max-width: 767px) { .quiz-res-grid { grid-template-columns: 1fr; } }
.quiz-res-card {
  background: #fff; border: 1px solid var(--nz-line); border-radius: var(--nz-radius); padding: 1rem;
}
.quiz-res-card strong { display: block; margin-bottom: 0.35rem; }
.quiz-res-card p { margin: 0; font-size: 0.88rem; color: var(--nz-muted); }
.quiz-cta-nz {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--nz-accent); color: #fff !important; text-decoration: none;
  font-weight: 700; padding: 0.9rem 1.35rem; border-radius: var(--nz-radius);
}
.quiz-cta-nz:hover { background: var(--nz-accent-dark); color: #fff; }
.quiz-res-note { font-size: 0.8rem; color: var(--nz-muted); margin-top: 0.75rem; }

/* Footer */
.nz-footer {
  background: var(--nz-dark);
  color: rgba(255,255,255,0.78);
}
.nz-footer-brand {
  font-family: var(--nz-serif);
  font-size: 1.75rem;
  color: #fff;
}
.nz-footer-brand span { color: var(--nz-accent); }
.nz-footer-h {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.nz-footer-text { font-size: 0.88rem; line-height: 1.55; }
.nz-footer a { color: #fff; }
.nz-footer-hr { border-color: rgba(255,255,255,0.12); margin: 1.75rem 0 1rem; }
.nz-footer-copy { font-size: 0.8rem; opacity: 0.65; }
.nz-legal-btn {
  background: none; border: 0; color: rgba(255,255,255,0.85);
  padding: 0; font: inherit; cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px;
}
.nz-cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  pointer-events: none;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.nz-cookie-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nz-cookie-inner {
  margin: 0 0 1rem;
  background: var(--nz-paper);
  border: 1px solid var(--nz-line);
  border-radius: 14px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
  padding: 1rem 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nz-cookie-copy {
  flex: 1 1 240px;
  font-size: 0.9rem;
  color: #333;
}
.nz-cookie-copy strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nz-accent);
  margin-bottom: 0.25rem;
}
.nz-cookie-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--nz-ink);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.nz-cookie-actions { flex: 0 0 auto; }

/* Modals — animated */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(20,20,20,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.modal-overlay[hidden] { display: none !important; }
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-panel {
  background: var(--nz-paper);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  max-height: min(85vh, 720px);
  overflow: auto;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.modal-overlay.is-open .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-panel h2 {
  font-family: var(--nz-serif);
  font-size: 1.55rem;
  margin: 0 2rem 1rem 0;
}
.modal-close-btn {
  position: absolute; top: 0.75rem; right: 0.85rem;
  border: 0; background: none; font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.legal-body { font-size: 0.92rem; line-height: 1.6; }
.legal-body h3 { font-size: 1rem; margin-top: 1.25rem; font-weight: 700; }
.legal-body ul { padding-left: 1.15rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .modal-overlay,
  .modal-panel,
  .nz-cookie-bar {
    transition: none !important;
  }
}
