/* KlarPunkt – Design-System „Der Punkt“.
   Farben kommen ausschließlich aus dem Theme (themes/punkt.yaml) als --color-*.
   Ein Gestaltungselement: der Punkt. Keine Karten, keine Schatten, keine Verläufe. */

/* ---------- Fonts (wie das Logo: Wortmarke Josefin Sans, Tagline Poppins) ---------- */
@font-face { font-family: "Josefin Sans"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/josefin-sans-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Josefin Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/josefin-sans-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/poppins-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/poppins-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/poppins-latin-600-normal.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --font-display: "Josefin Sans", "Futura", "Avenir Next", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.5rem; --space-6: 2rem; --space-8: 3rem; --space-10: 4rem; --space-12: 6rem;

  --container: 80rem;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section-y: clamp(4rem, 10vw, 8rem);
  --header-h: 4.5rem;

  --text-s: 0.9375rem;
  --text-m: 1rem;
  --text-l: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --h3: 1.25rem;
  --h2: clamp(2.25rem, 1.5rem + 3.5vw, 4rem);
  --h1: clamp(3rem, 1rem + 5.6vw, 7.25rem);
  --h1-sub: clamp(2.75rem, 1.75rem + 5vw, 5.5rem);

  --dot: 0.42em;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-m);
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
h1, h2 { margin: 0 0 var(--space-4); font-family: var(--font-display); font-weight: 300; letter-spacing: 0; line-height: 1.02; color: inherit; text-wrap: balance; }
h3 { margin: 0 0 var(--space-3); color: inherit; }
h1 { font-size: var(--h1); line-height: 0.98; }
h2 { font-size: var(--h2); }
h3 { font-family: var(--font-body); font-weight: 500; font-size: var(--h3); line-height: 1.3; }
p, ul, ol { margin: 0 0 var(--space-4); }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--color-cta); outline-offset: 3px; border-radius: 2px; }
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

/* Der Punkt: Satzpunkt in Headlines als gelber Punkt */
.punkt { color: var(--color-accent); }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100%; left: var(--space-4); z-index: 100; padding: 0.5rem 1rem; background: var(--color-text); color: var(--color-bg); border-radius: 999px; }
.skip-link:focus { top: var(--space-4); }

/* ---------- Layout ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 5rem) var(--section-y); }
.section--ink { background: var(--color-primary); color: var(--color-on-primary); }
.section--mist { background: var(--color-surface); }
.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section__head h2 { margin-bottom: var(--space-4); }
.section__foot { margin-top: var(--space-6); }
.section__label { margin: 0 0 var(--space-3); font-weight: 500; font-size: var(--text-s); color: var(--color-muted); display: flex; align-items: center; gap: 0.5rem; }
.section__label::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--color-accent); }
.section--ink .section__label { color: var(--color-footer-text); }
.lead { font-size: var(--text-l); line-height: 1.5; max-width: 56ch; }
.text-muted { color: var(--color-muted); }
.section--ink .text-muted { color: var(--color-footer-text); }
.prose { max-width: 62ch; }
.prose h2 { font-size: var(--h3); font-weight: 500; margin-top: var(--space-8); }
.prose h3 { font-family: var(--font-body); font-weight: 500; font-size: var(--text-m); margin-top: var(--space-6); }
.prose ul { padding-left: 1.25rem; }
.prose a { text-decoration-color: var(--color-accent); text-decoration-thickness: 2px; }
.split { display: grid; gap: var(--space-8); align-items: start; }
.two-col { display: grid; gap: var(--space-8); }
@media (min-width: 52rem) {
  .split { grid-template-columns: minmax(14rem, 1fr) 2fr; }
  .split--wide { grid-template-columns: 1.6fr 1fr; }
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
}

/* ---------- Links & Buttons ---------- */
.link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; text-decoration: none; }
.link::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--color-accent); transition: transform 0.2s var(--ease); }
.link:hover::before { transform: scale(1.6); }
.link:hover { text-decoration: underline; text-decoration-color: var(--color-accent); text-decoration-thickness: 2px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3rem; padding: 0.7rem 1.4rem;
  font-family: var(--font-body); font-weight: 500; font-size: var(--text-m); line-height: 1.2;
  text-decoration: none; text-align: center; white-space: nowrap;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.btn--ink { background: var(--color-primary); color: var(--color-on-primary); }
.btn--ink:hover { background: var(--color-cta); color: var(--color-cta-text); }
.btn--sun { background: var(--color-cta); color: var(--color-cta-text); }
.btn--sun:hover { background: var(--color-cta-hover); color: var(--color-cta-text); }
.btn--line { background: transparent; color: inherit; border-color: currentColor; }
.btn--line:hover { background: var(--color-text); color: var(--color-bg); border-color: var(--color-text); }
.btn--lg { min-height: 3.5rem; padding: 0.9rem 1.9rem; font-size: var(--text-l); }

/* ---------- Header ---------- */
/* Kein backdrop-filter auf Mobil: er würde den Header zum Containing Block für das fixierte Menü machen. */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--color-bg); border-bottom: 1px solid var(--color-border); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 300; font-size: 1.75rem; line-height: 1; color: inherit; text-decoration: none; white-space: nowrap; }
.brand__mark { width: 2.25rem; height: 2.25rem; }
.brand__word { position: relative; top: 0.12em; } /* Josefin sitzt optisch hoch */
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-bg); color: var(--color-text); cursor: pointer; }
.nav-toggle .icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .icon--menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon--close { display: block; }
.nav { display: none; }
body.nav-open { overflow: hidden; }
body.nav-open .nav { display: flex; flex-direction: column; justify-content: space-between; gap: var(--space-6); position: fixed; inset: var(--header-h) 0 0 0; z-index: 60; overflow-y: auto; background: var(--color-primary); color: var(--color-on-primary); padding: var(--space-6) var(--gutter) var(--space-8); }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.nav__list a { display: block; padding: 0.7rem 0; font-family: var(--font-display); font-weight: 300; font-size: 2.25rem; color: inherit; text-decoration: none; border-bottom: 1px solid color-mix(in srgb, currentColor 20%, transparent); }
.nav__list a[aria-current="page"] { color: var(--color-accent); }
.nav__sub { list-style: none; margin: 0 0 var(--space-3); padding: 0 0 0 var(--space-4); }
.nav__sub a { font-family: var(--font-body); font-weight: 400; font-size: var(--text-l); border: 0; padding: 0.4rem 0; }
.nav__cta { margin-top: var(--space-6); background: var(--color-cta); color: var(--color-cta-text); }
@media (min-width: 64rem) {
  .site-header { background: color-mix(in srgb, var(--color-bg) 92%, transparent); backdrop-filter: blur(10px); }
  .nav-toggle { display: none; }
  .nav, body.nav-open .nav { display: flex; flex-direction: row; position: static; inset: auto; padding: 0; background: transparent; color: inherit; align-items: center; gap: var(--space-6); overflow: visible; }
  body.nav-open { overflow: auto; }
  .nav__list { flex-direction: row; align-items: center; gap: var(--space-5); }
  .nav__item { position: relative; }
  .nav__list a { padding: 0.35rem 0; font-family: var(--font-body); font-weight: 500; font-size: var(--text-m); letter-spacing: 0; border: 0; position: relative; }
  .nav__list > li > a::after { content: ""; position: absolute; left: 50%; bottom: -0.35rem; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--color-accent); transform: translateX(-50%) scale(0); transition: transform 0.2s var(--ease); }
  .nav__list > li > a:hover::after, .nav__list > li > a[aria-current="page"]::after { transform: translateX(-50%) scale(1); }
  .nav__list a[aria-current="page"] { color: inherit; }
  .nav__sub { position: absolute; top: 100%; left: -1rem; min-width: 15rem; margin: 0.6rem 0 0; padding: 0.5rem 0; background: var(--color-primary); color: var(--color-on-primary); border-radius: 1rem; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity 0.15s, transform 0.15s, visibility 0.15s; }
  .nav__sub a { display: block; padding: 0.55rem 1.25rem; font-size: var(--text-s); }
  .nav__sub a:hover, .nav__sub a[aria-current="page"] { color: var(--color-accent); }
  .nav__item--has-children:hover .nav__sub, .nav__item--has-children:focus-within .nav__sub { opacity: 1; visibility: visible; transform: none; }
  .nav__cta { margin: 0; background: var(--color-primary); color: var(--color-on-primary); }
  .nav__cta:hover { background: var(--color-cta); color: var(--color-cta-text); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--color-hero-bg); color: var(--color-hero-text); padding-block: clamp(3rem, 9vw, 7rem) clamp(4rem, 12vw, 9rem); --circle: clamp(16rem, 44vw, 39rem); }
.hero__inner { position: relative; z-index: 1; }
.display { margin-bottom: var(--space-6); }
.display .line { display: block; }
.hero__kicker { font-family: var(--font-body); font-weight: 500; font-size: var(--text-l); max-width: 34ch; margin-bottom: var(--space-3); }
.hero__text { max-width: 48ch; color: var(--color-hero-muted); margin-bottom: var(--space-6); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4) var(--space-6); }
/* Der Punkt: Halbkreis am rechten Rand, später Fotomaske */
.hero__circle {
  position: absolute; z-index: 0;
  width: var(--circle); height: auto; max-width: none;
  right: calc(var(--circle) * -0.32); top: 50%; translate: 0 -50%;
  transform-origin: 50% 50%;
}
@media (min-width: 52rem) {
  .hero__inner { padding-right: calc(var(--circle) * 0.68 + 3rem); }
}
@media (max-width: 52rem) {
  .hero { --circle: clamp(12rem, 60vw, 20rem); padding-bottom: clamp(9rem, 42vw, 15rem); }
  .hero__circle { top: auto; bottom: calc(var(--circle) / -3); right: calc(var(--circle) / -4); translate: none; }
}
.hero--sub { padding-block: clamp(2.5rem, 7vw, 5rem) clamp(2rem, 5vw, 3.5rem); border-bottom: 1px solid var(--color-border); }
.display--sub { font-size: var(--h1-sub); margin-bottom: var(--space-4); }
.hero__hook { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.375rem, 1rem + 1.2vw, 2rem); line-height: 1.25; color: var(--color-hero-muted); max-width: 40ch; margin: 0; }

/* Lade-Moment: Kreis wächst, Headline-Zeilen folgen */
@keyframes pop { from { scale: 0; } to { scale: 1; } }
@keyframes rise { from { opacity: 0; translate: 0 12px; } to { opacity: 1; translate: 0 0; } }
.hero__circle { animation: pop 0.8s var(--ease) both; }
.hero .display .line { animation: rise 0.6s var(--ease) both; animation-delay: calc(0.3s + var(--i, 0) * 0.12s); }

/* ---------- Angebote als Zeilen ---------- */
.rows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--color-border); }
.rows li { border-bottom: 1px solid var(--color-border); }
.row {
  display: grid; gap: var(--space-1) var(--space-5); align-items: baseline;
  padding: var(--space-5) var(--space-4); margin-inline: calc(-1 * var(--space-4));
  text-decoration: none; color: inherit;
  transition: background-color 0.15s;
}
.row:hover, .row:focus-visible { background: var(--color-cta); color: var(--color-cta-text); outline: none; }
.row__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.25rem); line-height: 1.05; }
.row__teaser { color: var(--color-muted); max-width: 44ch; }
.row__meta { font-size: var(--text-s); color: var(--color-muted); white-space: nowrap; }
.row__price { font-family: var(--font-body); font-weight: 600; font-size: 1.375rem; white-space: nowrap; }
.row:hover .row__teaser, .row:hover .row__meta { color: inherit; }
@media (min-width: 64rem) {
  .row { grid-template-columns: minmax(21rem, 1.2fr) 2fr auto auto; }
}

/* ---------- Leitsatz & Werte ---------- */
.leitsatz { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.25rem, 1.2rem + 3.8vw, 4.75rem); line-height: 1.05; color: var(--color-accent); max-width: 22ch; margin: 0 0 clamp(2.5rem, 6vw, 4.5rem); text-wrap: balance; }
.leitsatz .punkt { color: var(--color-on-primary); }
.leitsatz--solo { margin-bottom: 0; }
.werte { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-6); }
.werte li { padding-top: var(--space-4); border-top: 1px solid color-mix(in srgb, currentColor 25%, transparent); }
.werte h3 { margin-bottom: var(--space-2); }
.werte p { margin: 0; color: var(--color-footer-text); max-width: 34ch; }
@media (min-width: 52rem) {
  .werte { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}

/* ---------- Porträt-Platzhalter ---------- */
/* Porträt: rund beschnitten, Logo-Pink als schmaler Ring */
.portrait { display: block; width: min(100%, 18rem); height: auto; aspect-ratio: 1; border-radius: 50%; object-fit: cover; object-position: 50% 30%; box-shadow: 0 0 0 4px var(--color-bg), 0 0 0 6px var(--color-accent); }
.portrait--l { width: min(100%, 22rem); }

/* ---------- Ablauf ---------- */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: var(--space-6); position: relative; }
.steps li { counter-increment: step; position: relative; padding-top: var(--space-6); }
.steps li::before {
  content: counter(step);
  position: absolute; top: 0; left: 0; translate: 0 -50%;
  display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--color-accent); color: var(--color-cta-text);
  font-family: var(--font-body); font-weight: 600; font-size: 1.125rem;
}
.steps li::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--color-border); z-index: -1; }
.steps h3 { margin-bottom: var(--space-2); }
.steps p { margin: 0; color: var(--color-muted); max-width: 32ch; }
@media (min-width: 52rem) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
  .steps li::after { right: calc(-1 * var(--space-8)); }
  .steps li:last-child::after { right: 0; }
}

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--color-cta); color: var(--color-cta-text); padding-block: var(--section-y); }
.cta-band__inner { display: grid; gap: var(--space-8); align-items: end; }
.cta-band h2 { font-size: var(--h2); max-width: 16ch; }
.cta-band .punkt { color: var(--color-cta-text); }
.cta-band p { max-width: 40ch; margin: 0; }
.cta-band__actions { display: grid; gap: var(--space-5); justify-items: start; }
.cta-band__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); }
.cta-band__contact a { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; }
@media (min-width: 52rem) {
  .cta-band__inner { grid-template-columns: 1.4fr 1fr; }
}

/* ---------- Preis, Punkt-Listen ---------- */
.preis { display: grid; gap: var(--space-3); padding: var(--space-6); background: var(--color-cta); color: var(--color-cta-text); border-radius: 1.5rem; align-self: start; }
.preis__label { font-weight: 500; margin: 0; }
.preis__amount { font-family: var(--font-display); font-weight: 300; font-size: clamp(3.5rem, 2rem + 4.5vw, 5.5rem); line-height: 1; margin: 0; }
.preis__meta { margin: 0; font-size: var(--text-s); }
.preis .btn { justify-self: start; margin-top: var(--space-2); }
.dots { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.dots li { position: relative; padding-left: 1.5rem; }
.dots li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--color-accent); }
.dots--small { font-size: var(--text-s); gap: var(--space-2); }
.dots--small li::before { background: var(--color-cta-text); width: 0.4rem; height: 0.4rem; top: 0.5em; }
.two-col h2 { font-size: clamp(1.875rem, 1.2rem + 2.2vw, 3rem); margin-bottom: var(--space-5); }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; border-top: 1px solid var(--color-border); }
.faq details { border-bottom: 1px solid var(--color-border); }
.faq summary { list-style: none; cursor: pointer; padding: var(--space-5) 0; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.25rem, 1rem + 0.9vw, 1.75rem); line-height: 1.25; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex-shrink: 0; width: 0.75rem; height: 0.75rem; border-radius: 50%; background: var(--color-accent); transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { transform: scale(1.8); }
.faq details > p { margin: 0; padding: 0 0 var(--space-5); color: var(--color-muted); max-width: 60ch; }

/* ---------- Zeitleiste ---------- */
.timeline { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--color-border); }
.timeline li { position: relative; padding: 0 0 var(--space-6) var(--space-6); }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -0.4rem; top: 0.35rem; width: 0.75rem; height: 0.75rem; border-radius: 50%; background: var(--color-accent); }
.timeline__time { display: block; font-size: var(--text-s); font-weight: 500; color: var(--color-muted); }
.timeline h3 { margin: 0.25rem 0; }
.timeline p { margin: 0; color: var(--color-muted); }

/* ---------- Kontakt, Rechtliches ---------- */
.facts { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--color-border); }
.facts li { display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); font-size: var(--text-l); }
.facts .icon { color: var(--color-accent); margin-top: 0.3rem; }
.facts a { text-decoration-color: var(--color-accent); text-decoration-thickness: 2px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.legal-block { max-width: 66ch; margin-bottom: var(--space-6); }
.legal-block h2 { font-family: var(--font-body); font-weight: 500; font-size: var(--text-l); margin-bottom: var(--space-2); }
.legal-block p { margin: 0 0 var(--space-1); }
.badge { width: 6rem; height: auto; }
.membership { display: grid; gap: var(--space-5); align-items: start; max-width: 60ch; }
.membership p { margin: 0; }
.h2--small { font-size: clamp(1.875rem, 1.2rem + 2.2vw, 3rem); }
@media (min-width: 40rem) { .membership { grid-template-columns: auto 1fr; } }
.placeholder-note { padding: var(--space-3) var(--space-4); margin-bottom: var(--space-6); border-left: 4px solid var(--color-accent); background: var(--color-surface); font-size: var(--text-s); max-width: 66ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-footer-bg); color: var(--color-footer-text); padding-block: var(--space-10) var(--space-6); font-size: var(--text-s); }
.site-footer p { margin: 0 0 var(--space-2); }
.site-footer__grid { display: grid; gap: var(--space-6); }
.site-footer__title { font-family: var(--font-body); font-weight: 500; font-size: var(--text-s); color: var(--color-on-primary); margin-bottom: var(--space-3); }
.site-footer__claim { font-family: var(--font-display); font-weight: 300; font-size: 1.375rem; color: var(--color-on-primary); }
.brand--footer { color: var(--color-on-primary); font-size: 2rem; margin-bottom: var(--space-3); }
.brand--footer .brand__mark { width: 2.75rem; height: 2.75rem; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-8); padding-top: var(--space-5); border-top: 1px solid color-mix(in srgb, var(--color-footer-text) 25%, transparent); }
.site-footer__bottom ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-4); }
.social { display: inline-flex; align-items: center; gap: 0.5rem; }
@media (min-width: 52rem) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ---------- Bewegung reduzieren ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
