/* Base + component styles converted from Lovable styles.css */

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  margin: 0;
  letter-spacing: 0;
}

button,
a,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--secondary);
  color: var(--foreground);
}

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

.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;
}

/* Buttons (shadcn-like) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  height: 2.25rem;
  padding: 0.5rem 1rem;
  line-height: 1.2;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px var(--ring);
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  pointer-events: none;
}

.btn-default {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px color-mix(in oklab, var(--ink) 12%, transparent);
}

.btn-default:hover {
  background: color-mix(in oklab, var(--primary) 90%, var(--ink));
}

.btn-outline {
  border-color: var(--input);
  background: var(--background);
  box-shadow: 0 1px 2px color-mix(in oklab, var(--ink) 8%, transparent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 1px 2px color-mix(in oklab, var(--ink) 8%, transparent);
}

.btn-secondary:hover {
  background: color-mix(in oklab, var(--secondary) 80%, var(--background));
}

.btn-link {
  height: auto;
  padding: 0;
  color: var(--primary);
  text-underline-offset: 4px;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-sm {
  height: 2rem;
  border-radius: var(--radius-md);
  padding: 0 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  height: 2.5rem;
  border-radius: var(--radius-md);
  padding: 0 2rem;
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
}

/* Form controls */
.form-input,
.form-textarea {
  display: flex;
  width: 100%;
  border: 1px solid var(--input);
  background: var(--background);
  color: var(--foreground);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input {
  height: 2.25rem;
}

.form-textarea {
  min-height: 5rem;
  resize: vertical;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px var(--ring);
  border-color: var(--ring);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

/* Dialog / modal */
.dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--ink) 55%, transparent);
}

.registration-dialog {
  position: fixed;
  z-index: 60;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: min(28rem, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  padding: 1.5rem;
  box-shadow: 0 16px 48px color-mix(in oklab, var(--ink) 25%, transparent);
}

.registration-dialog[hidden],
.dialog-overlay[hidden] {
  display: none !important;
}

.registration-dialog::backdrop {
  background: transparent;
}

.registration-dialog:not([hidden]) {
  display: block;
}

.dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.dialog-header {
  padding-right: 2rem;
}

.registration-dialog h2 {
  font-family: var(--font-editorial);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.dialog-description {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-toggle {
  display: none;
}

.form-status {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status.success {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: color-mix(in oklab, var(--primary) 35%, var(--border));
}

.form-status.error {
  background: color-mix(in oklab, var(--destructive) 12%, var(--background));
  color: var(--destructive);
  border-color: color-mix(in oklab, var(--destructive) 35%, var(--border));
}

.form-error-list {
  margin: 0;
  padding-left: 1.1rem;
}

/* Component layer from Lovable */
.site { min-height: 100vh; background: var(--background); color: var(--foreground); }
.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--border); background: color-mix(in oklab, var(--background) 94%, transparent); backdrop-filter: blur(16px); }
.header-inner { max-width: 1440px; height: 76px; margin: auto; padding: 0 3.5rem; display: flex; align-items: center; gap: 2rem; }
.wordmark { display: inline-flex; align-items: center; gap: .65rem; font-size: 1.3rem; font-weight: 700; white-space: nowrap; }
.wordmark img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.wordmark span { color: var(--primary); }
.wordmark-text { display: inline; }

.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 1.5rem; }
.nav-link { position: relative; padding: .5rem 0; display: inline-flex; align-items: center; font-size: .78rem; font-weight: 600; color: var(--muted-foreground); }
.nav-link:hover, .nav-link.active { color: var(--foreground); }
.nav-link.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--primary); }
.nav-cta { border-radius: 999px; padding: .55rem 1.15rem; font-size: .78rem; font-weight: 700; letter-spacing: .01em; background: var(--primary); color: var(--primary-foreground); height: auto; }
.nav-cta:hover { background: color-mix(in oklab, var(--primary) 88%, var(--ink)); }
.mobile-cta { justify-self: stretch; text-align: center; margin-top: .75rem; border-radius: 999px; padding: .75rem 1.25rem; font-size: .85rem; font-weight: 700; background: var(--primary); color: var(--primary-foreground); height: auto; width: 100%; }
.header-tools { display: flex; align-items: center; gap: .75rem; }
.mobile-nav { display: none; }
.section-inner { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.section-inner.narrow { width: min(900px, calc(100% - 3rem)); }
.eyebrow { display: block; margin-bottom: 1.2rem; color: var(--primary); font-size: .72rem; line-height: 1.2; font-weight: 700; text-transform: uppercase; }
.eyebrow.light { color: var(--secondary); }
h1, h2, h3, p { margin-top: 0; }
.editorial h1, .editorial h2, .editorial blockquote, .editorial .footer-wordmark { font-family: var(--font-editorial); font-weight: 400; }
.editorial .site-header { border-bottom-color: color-mix(in oklab, var(--border) 70%, transparent); }
.editorial .wordmark { font-family: var(--font-editorial); font-size: 1.55rem; font-weight: 400; }
.editorial .wordmark img { width: 52px; height: 52px; }
.editorial .nav-link { font-family: var(--font-editorial); font-size: .86rem; font-weight: 400; }
.home-hero { min-height: calc(100vh - 76px); max-height: 850px; position: relative; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.home-hero img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; object-fit: cover; }
.home-hero img { filter: grayscale(1); }
/* Temporary: grayscale photos while brand palette is B/W/gray */
.image-band img,
.news-card img,
.about-lead img,
.featured-news-card img { filter: grayscale(1); }
.hero-overlay { background: linear-gradient(90deg, color-mix(in oklab, var(--ink) 90%, transparent) 0%, color-mix(in oklab, var(--ink) 50%, transparent) 55%, transparent 90%), linear-gradient(0deg, color-mix(in oklab, var(--ink) 65%, transparent), transparent 55%); }
.hero-content { z-index: 1; width: min(1180px, calc(100% - 3rem)); margin: auto auto 6rem; color: var(--primary-foreground); }
.hero-content h1 { max-width: 720px; margin-bottom: 1.5rem; font-size: clamp(4rem, 8.5vw, 8rem); line-height: .86; letter-spacing: 0; }
.hero-content p { max-width: 650px; margin-bottom: 2rem; font-size: 1.15rem; line-height: 1.6; }
.hero-content .btn.primary-cta { height: 52px; padding-top: 0; padding-bottom: 0; padding-right: .45rem; }
.primary-cta { min-height: 52px; padding: 0 .45rem 0 1.25rem; gap: 1rem; box-shadow: 4px 4px 0 var(--ink); height: auto; }
.primary-cta .cta-icon { display: grid; place-items: center; width: 38px; height: 38px; background: color-mix(in oklab, var(--primary-foreground) 18%, transparent); }
.primary-cta .cta-icon svg { width: 18px; height: 18px; transition: transform .2s ease; }
.primary-cta:hover .cta-icon svg { transform: translateX(3px); }
.editorial .primary-cta { border-radius: 999px; box-shadow: none; padding-left: 1.5rem; }
.editorial .primary-cta .cta-icon { border-radius: 50%; }
.statement-section, .teaser-section, .content-section { padding: 7rem 0; }
.statement-grid { display: grid; grid-template-columns: .8fr 1.4fr; gap: 7rem; }
.statement-grid h2, .section-heading h2 { font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.02; }
.statement-list { list-style: none; margin: 0; padding: 0; }
.statement-list li { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid var(--border); align-items: start; }
.statement-list span, .goal-card > span, .about-details article > span, .action-number { color: var(--primary); font-size: .72rem; font-weight: 700; }
.statement-list strong { font-size: 1.35rem; line-height: 1.35; }
.kant-quote { padding: 7rem 0; background: var(--paper); text-align: center; }
.kant-quote blockquote { max-width: 900px; margin: 0 auto 1rem; font-size: clamp(2.8rem, 5.7vw, 5.7rem); line-height: 1.05; }
.kant-quote cite { color: var(--primary); font-style: normal; font-size: .75rem; text-transform: uppercase; font-weight: 700; }
.section-heading { margin-bottom: 3rem; }
.section-heading h2 { max-width: 760px; }
.teaser-grid, .goals-grid, .topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.teaser-card { min-height: 310px; padding: 2rem; border: 1px solid var(--border); margin: 0 -1px -1px 0; display: flex; flex-direction: column; transition: background .2s, color .2s; }
.teaser-card:hover { background: var(--primary); color: var(--primary-foreground); }
.teaser-card > span { color: var(--primary); font-size: .7rem; font-weight: 700; }
.teaser-card:hover > span { color: var(--secondary); }
.teaser-card h3 { margin: auto 0 .6rem; font-size: 2rem; }
.teaser-card p { max-width: 300px; color: var(--muted-foreground); }
.teaser-card:hover p { color: var(--primary-foreground); }
.teaser-card svg { align-self: flex-end; width: 24px; height: 24px; }
.trust-section { padding: 6rem 0; background: var(--primary); color: var(--primary-foreground); }
.trust-grid, .commitment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.trust-grid h2, .commitment h2 { font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1; }
.trust-points p { display: flex; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid color-mix(in oklab, var(--primary-foreground) 30%, transparent); font-size: 1.1rem; }
.trust-points svg { color: var(--secondary); width: 20px; height: 20px; flex-shrink: 0; }
.trust-points .btn.primary-cta { margin-top: 1.5rem; background: var(--primary-foreground); color: var(--primary); }
.trust-points .btn.primary-cta:hover { background: color-mix(in oklab, var(--primary-foreground) 92%, var(--ink)); }
.rebel-quote { padding: 3rem 0; border-top: 1px solid var(--border); }
.rebel-quote .section-inner { display: grid; grid-template-columns: .6fr 1.4fr; gap: 3rem; align-items: baseline; }
.rebel-quote span { color: var(--primary); font-size: .78rem; font-weight: 700; }
.rebel-quote blockquote { margin: 0; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.25; }
.site-footer { padding: 4rem 0 2rem; background: var(--ink); color: var(--primary-foreground); }
.footer-inner { width: min(1180px, calc(100% - 3rem)); margin: auto; display: flex; justify-content: space-between; gap: 3rem; }
.footer-wordmark { display: block; margin-bottom: 1rem; font-size: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-logo img { width: 64px; height: 64px; object-fit: contain; }
.site-footer p { color: color-mix(in oklab, var(--primary-foreground) 65%, transparent); }
.footer-actions { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.socials, .legal-links { display: flex; gap: 1rem; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid color-mix(in oklab, var(--primary-foreground) 30%, transparent); border-radius: 50%; }
.socials svg { width: 16px; height: 16px; }
.legal-links { font-size: .8rem; color: color-mix(in oklab, var(--primary-foreground) 65%, transparent); }
.page-intro { padding: 8rem 0 6rem; border-bottom: 1px solid var(--border); }
.page-intro h1 { margin-bottom: 2rem; font-size: clamp(3.7rem, 8vw, 7.2rem); line-height: .95; }
.page-intro .lead { max-width: 700px; font-size: 1.25rem; line-height: 1.65; color: var(--muted-foreground); }
.goals-grid { gap: 0; }
.goal-card { min-height: 270px; padding: 2rem; border: 1px solid var(--border); margin: 0 -1px -1px 0; }
.goal-card h2 { margin: 1.5rem 0 1rem; font-size: 1.6rem; line-height: 1.15; }
.goal-card p { color: var(--muted-foreground); font-size: .92rem; line-height: 1.55; }
.goal-card:last-child { grid-column: span 2; background: var(--paper); }
.action-list { border-top: 1px solid var(--border); }
.action-row { min-height: 150px; display: grid; grid-template-columns: 50px 50px 1fr 30px; gap: 1.5rem; align-items: center; border-bottom: 1px solid var(--border); }
.action-row > svg { color: var(--primary); width: 28px; height: 28px; }
.action-row > svg:last-child { color: var(--foreground); width: 20px; height: 20px; }
.action-row h2 { margin-bottom: .4rem; font-size: 1.75rem; }
.action-row p { margin: 0; color: var(--muted-foreground); }
.soft-section { padding: 6rem 0; background: var(--paper); }
.action-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.action-tiles article { min-height: 270px; padding: 1.7rem; border: 1px solid var(--border); display: flex; flex-direction: column; background: var(--background); }
.tag { width: fit-content; padding: .25rem .5rem; background: var(--accent); color: var(--primary); border-radius: 2px; font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.action-tiles h3 { margin: 3.5rem 0 2rem; font-size: 1.4rem; }
.action-tiles .btn { margin-top: auto; width: fit-content; }
.commitment { padding: 7rem 0; background: var(--ink); color: var(--primary-foreground); }
.commitment-grid > div:last-child > p { font-size: 1.25rem; line-height: 1.5; }
.commitment .btn-default { background: var(--primary); color: var(--primary-foreground); }
.paypal-placeholder { margin-top: 2.5rem; padding: 1rem 1.2rem; border: 1px dashed color-mix(in oklab, var(--primary-foreground) 35%, transparent); display: grid; grid-template-columns: 1fr auto; gap: .25rem; }
.paypal-placeholder span { font-size: .75rem; text-transform: uppercase; }
.paypal-placeholder strong { font-size: 1.1rem; }
.paypal-placeholder small { grid-column: 1 / -1; color: color-mix(in oklab, var(--primary-foreground) 60%, transparent); }
.image-band { background: var(--ink); color: var(--primary-foreground); }
.image-band-grid { width: min(1440px, 100%); display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; }
.image-band img { width: 100%; height: 520px; object-fit: cover; }
.image-band-grid > div { padding: 5rem; align-self: center; }
.image-band h2 { font-size: 3.3rem; line-height: 1.05; }
.image-band p { color: color-mix(in oklab, var(--primary-foreground) 70%, transparent); line-height: 1.6; }
.topic-card { min-height: 300px; padding: 2rem; border: 1px solid var(--border); margin: 0 -1px -1px 0; }
.topic-card > svg { width: 30px; height: 30px; color: var(--primary); margin-bottom: 3rem; }
.topic-card h2 { margin: 1rem 0 .6rem; font-size: 1.7rem; }
.topic-card p { color: var(--muted-foreground); }
.topic-card .btn { padding: 0; }
.newsletter { padding: 5rem 0; background: var(--primary); color: var(--primary-foreground); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; }
.newsletter h2 { margin: 0; font-size: 3.4rem; line-height: 1; }
.newsletter form { display: grid; grid-template-columns: 1fr auto; gap: .5rem; }
.newsletter .form-input { height: 46px; background: var(--background); color: var(--foreground); }
.newsletter .btn { height: 46px; background: var(--ink); color: var(--primary-foreground); border: 0; }
.newsletter .btn:hover { background: color-mix(in oklab, var(--ink) 88%, var(--primary-foreground)); }
.newsletter small { grid-column: 1 / -1; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card { border-bottom: 1px solid var(--border); }
.news-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.news-card > div { padding: 1.5rem 0; }
.news-card time { float: right; color: var(--muted-foreground); font-size: .72rem; }
.news-card h2 { margin: 1.4rem 0 1rem; font-size: 1.7rem; line-height: 1.15; }
.news-card p { color: var(--muted-foreground); line-height: 1.6; }
.news-card .btn { padding-left: 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; }
.about-lead img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 2rem; }
.about-lead h2 { font-size: 2.8rem; line-height: 1.05; }
.about-lead p, .about-details p { color: var(--muted-foreground); line-height: 1.65; }
.about-details article { padding: 1.6rem 0; border-top: 1px solid var(--border); }
.about-details h3 { margin: .8rem 0 .4rem; font-size: 1.3rem; }
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 6rem; }
.contact-form { display: grid; gap: 1.2rem; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label, .form-stack label { display: grid; gap: .45rem; font-size: .8rem; font-weight: 700; }
.contact-form .form-input, .contact-form .form-textarea, .form-stack .form-input { border-radius: 0; box-shadow: none; }
.contact-form .form-input { height: 46px; }
.contact-form .btn { width: fit-content; }
.contact-form small, .form-stack small { color: var(--muted-foreground); }
.contact-person { padding-left: 2.5rem; border-left: 1px solid var(--border); }
.initials { width: 96px; height: 96px; display: grid; place-items: center; margin: 2rem 0; border-radius: 50%; background: var(--secondary); color: var(--ink); font-family: var(--font-editorial); font-size: 2rem; }
.contact-person h2 { font-size: 2.2rem; }
.contact-person p { color: var(--muted-foreground); line-height: 1.6; }
.contact-person a { display: flex; gap: .75rem; align-items: center; margin: 1.2rem 0; color: var(--primary); font-weight: 700; }
.contact-person svg { width: 18px; height: 18px; }
.legal-copy { max-width: 760px; }
.legal-copy h2 { margin-top: 2.5rem; font-size: 1.8rem; }
.legal-copy p { color: var(--muted-foreground); line-height: 1.7; }
.form-stack { display: grid; gap: 1rem; margin-top: .5rem; }
.form-stack label span { font-weight: 400; color: var(--muted-foreground); }
.form-stack .form-input { height: 44px; margin-top: .25rem; }
.featured-news { padding: 0 0 2rem; }
.featured-news-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.featured-news-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.featured-news-card .tag { margin-bottom: .75rem; }
.featured-news-card h2 { margin: .5rem 0 1rem; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.15; }
.featured-news-card p { color: var(--muted-foreground); line-height: 1.6; }
.charta-lead { max-width: 760px; margin-bottom: 3rem; }
.charta-lead p { color: var(--muted-foreground); font-size: 1.15rem; line-height: 1.7; }
.charta-points { display: grid; gap: 0; max-width: 900px; }
.charta-points article { padding: 1.75rem 0; border-top: 1px solid var(--border); }
.charta-points article:last-child { border-bottom: 1px solid var(--border); }
.charta-points span { color: var(--primary); font-size: .72rem; font-weight: 700; }
.charta-points h2 { margin: .6rem 0 .5rem; font-size: 1.5rem; }
.charta-points p { margin: 0; color: var(--muted-foreground); line-height: 1.6; }

@media (max-width: 1120px) {
  .header-inner { padding-inline: 1.5rem; }
  .desktop-nav { display: none; }
  .header-tools { margin-left: auto; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav { display: grid; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--border); grid-template-columns: 1fr; gap: .25rem; background: var(--background); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: .75rem 0; display: flex; align-items: center; gap: .65rem; font-weight: 600; border-bottom: 1px solid var(--border); }
  .mobile-nav a:last-of-type { border-bottom: none; }
  .mobile-nav a svg { width: 17px; height: 17px; color: var(--primary); }
}

@media (max-width: 720px) {
  .header-inner { height: 66px; padding-inline: 1rem; gap: .5rem; }
  .wordmark { font-size: 1rem; }
  .editorial .wordmark { font-size: 1.15rem; }
  .section-inner, .section-inner.narrow { width: min(100% - 2rem, 1180px); }
  .home-hero { min-height: 720px; max-height: none; }
  .home-hero img { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(0deg, color-mix(in oklab, var(--ink) 92%, transparent) 0%, color-mix(in oklab, var(--ink) 32%, transparent) 95%); }
  .hero-content { width: calc(100% - 2rem); margin-bottom: 3rem; }
  .hero-content h1 { font-size: clamp(3.8rem, 20vw, 5rem); }
  .hero-content p { font-size: 1rem; }
  .statement-section, .teaser-section, .content-section { padding: 4.5rem 0; }
  .statement-grid, .trust-grid, .commitment-grid, .newsletter-grid, .about-grid, .contact-grid, .rebel-quote .section-inner, .image-band-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .statement-grid h2, .section-heading h2 { font-size: 2.8rem; }
  .statement-list strong { font-size: 1.05rem; }
  .kant-quote { padding: 5rem 0; }
  .kant-quote blockquote { font-size: 2.8rem; }
  .teaser-grid, .goals-grid, .topic-grid, .action-tiles, .news-grid { grid-template-columns: 1fr; }
  .teaser-card { min-height: 240px; }
  .goal-card:last-child { grid-column: auto; }
  .trust-section, .commitment { padding: 4.5rem 0; }
  .page-intro { padding: 5rem 0 3.5rem; }
  .page-intro h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .action-row { grid-template-columns: 34px 34px 1fr; padding: 1.5rem 0; }
  .action-row > svg:last-child { display: none; }
  .action-row h2 { font-size: 1.4rem; }
  .image-band-grid { width: 100%; }
  .image-band img { height: 320px; }
  .image-band-grid > div { padding: 3rem 1rem; }
  .image-band h2, .newsletter h2 { font-size: 2.6rem; }
  .newsletter form { grid-template-columns: 1fr; }
  .newsletter small { grid-column: auto; }
  .contact-person { padding: 2rem 0 0; border-left: 0; border-top: 1px solid var(--border); }
  .two-fields { grid-template-columns: 1fr; }
  .footer-inner { width: calc(100% - 2rem); flex-direction: column; }
  .footer-actions { align-items: flex-start; }
  .featured-news-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .wordmark img { width: 40px; height: 40px; }
  .editorial .wordmark img { width: 42px; height: 42px; }
}
