/* ============================================================
   BEST-POLITIC.ORG — Design System
   Palette: Forest Green + Gold (Primary)  /  Midnight Blue + Silver (Accent)
   Type:    Cormorant Garamond (display) + Inter (body)
   ============================================================ */

:root {
  /* Primary palette */
  --green-900: #07261a;
  --green-800: #0d2a1f;
  --green-700: #144030;
  --green-600: #1d5642;
  --green-500: #28735a;
  --gold-300: #d9b66c;
  --gold-400: #c89e4f;
  --gold-500: #b48a3c;
  --gold-600: #8d6a26;

  /* Accent (Silver/Blue) */
  --blue-900: #0a1929;
  --blue-700: #14304d;
  --silver-300: #c8d0d8;
  --silver-200: #dde2e8;

  /* Surfaces */
  --bg-cream:  #f6f1e6;
  --bg-paper:  #faf6ec;
  --bg-deep:   var(--green-900);
  --bg-mid:    var(--green-800);
  --line:      rgba(217, 182, 108, 0.18);
  --line-strong: rgba(217, 182, 108, 0.5);

  /* Text */
  --text-on-dark:        #f3ecd6;
  --text-on-dark-muted:  rgba(243, 236, 214, 0.72);
  --text-on-light:       #1a1a17;
  --text-on-light-muted: #555148;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --wrap-max: 1200px;
  --gutter-x: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 7.5rem);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--gold-400); color: var(--green-900); }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-on-light);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold-400); color: var(--green-900);
  padding: 0.6rem 1rem; z-index: 999; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--wrap-max); margin: 0 auto; padding-inline: var(--gutter-x); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(1.95rem, 5.5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-on-light-muted);
  margin: 0 0 1.2rem;
}
.eyebrow-gold { color: var(--gold-500); }
.section-dark .eyebrow,
.section-questions .eyebrow,
.section-author .eyebrow,
.section-mitmachen .eyebrow,
.section-vorbilder .eyebrow,
.section-sister .eyebrow,
.hero .eyebrow {
  color: var(--gold-400);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.pullquote {
  margin: 2rem 0 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold-400);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--text-on-dark);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.pullquote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 38, 26, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  color: var(--text-on-dark);
}
.header-wrap {
  display: flex; align-items: center; gap: 2rem;
  min-height: 76px; padding-block: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--green-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 22px -10px rgba(0, 0, 0, 0.6);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.005em;
}
.brand-tld { color: var(--gold-400); font-style: italic; }
.brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 0.15rem;
}

.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease-out);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold-400);
  transition: width 0.3s var(--ease-out);
}
.nav a:hover { color: var(--gold-300); }
.nav a:hover::after { width: 100%; }

.lang-switch {
  display: flex; gap: 0.15rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.lang-switch a {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  color: var(--text-on-dark-muted);
  font-weight: 600;
  transition: all 0.2s var(--ease-out);
}
.lang-switch a.lang-active,
.lang-switch a:hover {
  background: var(--gold-400);
  color: var(--green-900);
}

.burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  padding: 0;
  flex-direction: column; justify-content: center; gap: 5px;
}
.burger span {
  display: block; height: 1.5px; width: 22px; margin-inline: auto;
  background: var(--text-on-dark);
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg-deep);
  color: var(--text-on-dark);
  padding-block: clamp(5rem, 11vw, 9rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(217, 182, 108, 0.18), transparent 65%),
    radial-gradient(ellipse 70% 60% at 10% 100%, rgba(20, 64, 48, 0.6), transparent 70%),
    linear-gradient(180deg, #07261a 0%, #0d2a1f 100%);
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(217, 182, 108, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(217, 182, 108, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent 80%);
}
.hero-wrap { position: relative; max-width: 1100px; }
.hero-title {
  margin-bottom: 1.6rem;
  letter-spacing: -0.012em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-300);
}
.hero-lead {
  font-size: clamp(1.1rem, 1.45vw, 1.32rem);
  line-height: 1.6;
  max-width: 760px;
  color: var(--text-on-dark-muted);
  margin-bottom: 2.4rem;
}
.hero-lead strong { color: var(--gold-300); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 3rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.03em;
}
.hero-meta .dot { color: var(--gold-500); }

.hero-marquee {
  position: relative;
  margin-top: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1.4rem;
}
.marquee-track {
  display: flex; gap: 2rem; white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-400);
  animation: marquee 36s linear infinite;
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  color: var(--green-900);
  box-shadow: 0 12px 30px -12px rgba(180, 138, 60, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(180, 138, 60, 0.7); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--gold-300);
}
.btn-ghost:hover { background: rgba(217, 182, 108, 0.1); border-color: var(--gold-400); }
.btn-large { padding: 1.1rem 2.2rem; font-size: 1.02rem; }
.btn-gold-outline {
  background: transparent;
  border: 1px solid var(--gold-400);
  color: var(--gold-300);
}
.btn-gold-outline:hover { background: var(--gold-400); color: var(--green-900); }

/* ============================================================
   Sections (generic)
   ============================================================ */
.section { padding-block: var(--section-y); }
.section-dark {
  background: var(--green-800);
  color: var(--text-on-dark);
}
.section-dark p { color: var(--text-on-dark-muted); }
.section-dark p.lead { color: var(--text-on-dark); }

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.section-grid-reverse > .section-text { order: 2; }
.section-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.45);
  position: relative;
}
.section-figure img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: saturate(1.05);
}
.section-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #f3ecd6;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.section-head { max-width: 780px; margin-bottom: 3rem; }
.section-head-center { margin-inline: auto; text-align: center; }
.section-sub { font-size: 1.05rem; color: var(--text-on-light-muted); }
.section-dark .section-sub,
.section-questions .section-sub,
.section-vorbilder .section-sub { color: var(--text-on-dark-muted); }

/* ============================================================
   Questions
   ============================================================ */
.section-questions {
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.section-questions::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 70% 30%, rgba(217, 182, 108, 0.08), transparent 70%);
}

.questions {
  list-style: none; padding: 0; margin: 0 0 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 1.5rem;
  position: relative;
}
.question {
  position: relative;
  background: rgba(7, 38, 26, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem 1.8rem;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.3s var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.question::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, transparent 0%, rgba(217, 182, 108, 0.04) 100%);
  opacity: 0; transition: opacity 0.3s var(--ease-out);
}
.question:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  background: rgba(20, 64, 48, 0.65);
}
.question:hover::before { opacity: 1; }
.q-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold-400);
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.question h3 {
  color: var(--text-on-dark);
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  line-height: 1.25;
}
.question p {
  color: var(--text-on-dark-muted);
  font-size: 0.96rem;
  margin: 0;
}

.questions-cta {
  text-align: center;
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-lg);
}
.questions-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-300);
  margin-bottom: 1.2rem;
}

/* ============================================================
   Vorbilder
   ============================================================ */
.section-vorbilder {
  background: var(--green-900);
  color: var(--text-on-dark);
}
.vorbilder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 1rem;
}
.vorbild {
  text-align: center;
}
.vorbild-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: var(--green-700);
  position: relative;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s var(--ease-out);
}
.vorbild:hover .vorbild-img { transform: translateY(-4px); }
.vorbild-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}
.vorbild-img-mono {
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(217, 182, 108, 0.18), transparent 60%),
    linear-gradient(135deg, var(--green-700), var(--green-800));
}
.mono-initials {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: -0.04em;
  line-height: 1;
}
.vorbild h3 {
  color: var(--text-on-dark);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}
.vorbild-meta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.7rem;
}
.vorbild p:last-child {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   Author / Sister
   ============================================================ */
.section-author { background: var(--bg-paper); }
.achievements {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.achievements li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.96rem;
}
.achievements strong { color: var(--gold-600); margin-right: 0.5rem; }

.source-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-on-light-muted);
  letter-spacing: 0.02em;
}
.source-note a { color: var(--gold-600); border-bottom: 1px dotted var(--gold-500); }

.section-sister {
  background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-cream) 100%);
}
.sister-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.sister-card {
  display: block;
  background: var(--green-800);
  color: var(--text-on-dark);
  padding: 2.2rem 1.8rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-700);
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.sister-card::after {
  content: "";
  position: absolute; inset: -1px; z-index: -1; opacity: 0;
  background: linear-gradient(135deg, var(--gold-300), transparent 60%);
  transition: opacity 0.4s var(--ease-out);
  border-radius: var(--radius-lg);
}
.sister-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -28px rgba(0, 0, 0, 0.45);
  border-color: var(--gold-500);
}
.sister-card:hover::after { opacity: 0.16; }
.sister-card-feature {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-color: var(--gold-600);
}
.sister-tag {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 1rem;
}
.sister-card h3 {
  color: var(--text-on-dark);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.sister-card p { color: var(--text-on-dark-muted); font-size: 0.95rem; }
.sister-arrow {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.04em;
}

/* ============================================================
   Mitmachen / Contact
   ============================================================ */
.section-mitmachen { background: var(--green-800); color: var(--text-on-dark); }
.section-mitmachen p { color: var(--text-on-dark-muted); }
.section-mitmachen p.lead { color: var(--text-on-dark); }
.support-list {
  list-style: none; padding: 0; margin: 1rem 0 0;
}
.support-list li {
  padding: 1rem 0 1rem 2.2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--text-on-dark-muted);
}
.support-list li::before {
  content: "→"; position: absolute; left: 0; top: 1rem;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
}
.support-list li strong { color: var(--text-on-dark); }

.contact-card {
  background: var(--green-900);
  border: 1px solid var(--gold-600);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-card h3 {
  color: var(--gold-300);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contact-dl {
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.7rem 1rem;
  font-size: 0.92rem;
}
.contact-dl dt {
  color: var(--gold-400);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.18rem;
}
.contact-dl dd {
  margin: 0;
  color: var(--text-on-dark);
}
.contact-dl a { color: var(--gold-300); border-bottom: 1px dotted var(--gold-500); }
.contact-dl a:hover { color: var(--gold-400); }

/* ============================================================
   Closing
   ============================================================ */
.section-closing {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(217, 182, 108, 0.12), transparent 70%),
    var(--green-900);
  color: var(--text-on-dark);
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}
.closing-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-300);
  margin-bottom: 1rem;
}
.closing-title {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 500;
  margin-bottom: 2.2rem;
  line-height: 1.05;
  color: var(--text-on-dark);
}
.closing-title em { color: var(--gold-300); font-style: italic; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #06201a;
  color: var(--text-on-dark-muted);
  padding-block: 4rem 1.6rem;
  font-size: 0.92rem;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-mark { margin-bottom: 1rem; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin: 0 0 0.3rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin: 0;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav h4 {
  color: var(--gold-400);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
}
.footer-nav a {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease-out);
}
.footer-nav a:hover { color: var(--gold-300); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold-400); border-bottom: 1px dotted var(--gold-600); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav { display: none; position: fixed; top: 76px; left: 0; right: 0;
    background: var(--green-900); flex-direction: column;
    padding: 1.5rem var(--gutter-x);
    border-bottom: 1px solid var(--line);
    gap: 0.4rem;
    transform: translateY(-110%);
    transition: transform 0.3s var(--ease-out);
  }
  .nav.is-open { display: flex; transform: translateY(0); }
  .nav a { padding: 0.8rem 0; font-size: 1rem; }
  .burger { display: flex; margin-left: auto; }
  .lang-switch { margin-left: 0; order: 4; }
  .header-wrap { gap: 1rem; }

  .section-grid { grid-template-columns: 1fr; }
  .section-grid-reverse > .section-text { order: 0; }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root {
    --gutter-x: 1.1rem;
    --section-y: 3.6rem;
  }
  body { font-size: 16px; line-height: 1.6; }
  .header-wrap { min-height: 64px; gap: 0.75rem; }
  .brand-mark { width: 36px; height: 36px; font-size: 0.95rem; }
  .brand-name { font-size: 1.05rem; }
  .brand-tagline { font-size: 0.66rem; }
  .nav { top: 64px; }

  .hero { padding-block: 3.5rem 2.5rem; }
  .hero-title { line-height: 1.18; }
  .hero-title br { display: none; }
  .hero-lead { font-size: 1rem; margin-bottom: 1.8rem; }
  .hero-cta .btn { width: 100%; }
  .hero-marquee { padding-block: 1rem; }
  .marquee-track { font-size: 1.1rem; gap: 1.2rem; }
  .hero-meta { font-size: 0.78rem; flex-direction: column; gap: 0.2rem; }
  .hero-meta .dot { display: none; }

  .pullquote {
    padding: 1.1rem 1.2rem;
    font-size: 1.05rem;
    margin-top: 1.5rem;
  }

  .question { padding: 1.6rem 1.3rem 1.4rem; }
  .q-num { font-size: 2rem; }
  .question h3 { font-size: 1.18rem; }

  .vorbild-img { aspect-ratio: 1/1; }
  .vorbilder-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .mono-initials { font-size: 4rem; }

  .sister-card { padding: 1.6rem 1.3rem 1.4rem; }
  .contact-card { padding: 1.5rem 1.3rem; }
  .contact-dl { grid-template-columns: 1fr; gap: 0.1rem 0; }
  .contact-dl dt { padding-top: 0.7rem; }

  .closing-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }

  .footer-wrap { grid-template-columns: 1fr; gap: 1.6rem; margin-bottom: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .footer-brand .brand-mark { width: 36px; height: 36px; }
}
@media (max-width: 380px) {
  :root { --gutter-x: 0.95rem; }
  .vorbilder-grid { grid-template-columns: 1fr; }
  .marquee-track { font-size: 1rem; }
  .question { padding: 1.4rem 1.1rem 1.2rem; }
}

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